server/apps/files/ajax/move.php

32 lines
1,007 B
PHP
Raw Normal View History

<?php
// Init owncloud
2012-05-03 10:23:29 +00:00
OCP\JSON::checkLoggedIn();
2012-07-07 13:58:11 +00:00
OCP\JSON::callCheck();
// Get data
2013-01-18 21:16:04 +00:00
$dir = stripslashes($_POST["dir"]);
$file = stripslashes($_POST["file"]);
$target = stripslashes(rawurldecode($_POST["target"]));
2013-02-08 11:03:28 +00:00
$l = OC_L10N::get('files');
2013-01-15 13:57:23 +00:00
if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) {
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) )));
exit;
}
2012-10-30 21:59:55 +00:00
if ($dir != '' || $file != 'Shared') {
2013-01-31 16:56:44 +00:00
$targetFile = \OC\Files\Filesystem::normalizePath($target . '/' . $file);
$sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);
2012-10-24 13:52:30 +00:00
if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) {
OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
} else {
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) )));
2012-10-24 13:52:30 +00:00
}
}else{
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) )));
}