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-07-16 21:40:22 +04:00
|
|
|
\OC::$server->getSession()->close();
|
2011-07-22 08:21:53 +04:00
|
|
|
|
|
|
|
// Get data
|
2015-01-13 19:40:28 +03:00
|
|
|
$dir = isset($_POST['dir']) ? $_POST['dir'] : '';
|
|
|
|
$file = isset($_POST['file']) ? $_POST['file'] : '';
|
|
|
|
$target = isset($_POST['target']) ? rawurldecode($_POST['target']) : '';
|
2011-07-22 08:21:53 +04:00
|
|
|
|
2014-08-31 12:05:59 +04:00
|
|
|
$l = \OC::$server->getL10N('files');
|
2013-02-08 15:03:28 +04:00
|
|
|
|
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);
|
2014-09-05 16:54:06 +04:00
|
|
|
try {
|
|
|
|
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)) )));
|
|
|
|
}
|
|
|
|
} catch (\OCP\Files\NotPermittedException $e) {
|
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Permission denied") )));
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
OCP\JSON::error(array("data" => array( "message" => $e->getMessage())));
|
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
|
|
|
}
|