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