2011-07-22 04:21:53 +00:00
|
|
|
<?php
|
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 13:58:11 +00:00
|
|
|
OCP\JSON::callCheck();
|
2014-07-16 17:40:22 +00:00
|
|
|
\OC::$server->getSession()->close();
|
2011-07-22 04:21:53 +00:00
|
|
|
|
|
|
|
// Get data
|
2015-01-13 16:40:28 +00:00
|
|
|
$dir = isset($_POST['dir']) ? $_POST['dir'] : '';
|
|
|
|
$file = isset($_POST['file']) ? $_POST['file'] : '';
|
|
|
|
$target = isset($_POST['target']) ? rawurldecode($_POST['target']) : '';
|
2011-07-22 04:21:53 +00:00
|
|
|
|
2014-08-31 08:05:59 +00:00
|
|
|
$l = \OC::$server->getL10N('files');
|
2013-02-08 11:03:28 +00:00
|
|
|
|
2013-01-15 13:57:23 +00:00
|
|
|
if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) {
|
2013-02-07 22:57:18 +00: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 14:20:20 +00:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2014-03-04 15:42:40 +00:00
|
|
|
if ($target != '' || strtolower($file) != 'shared') {
|
2013-01-31 16:56:44 +00:00
|
|
|
$targetFile = \OC\Files\Filesystem::normalizePath($target . '/' . $file);
|
|
|
|
$sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);
|
2014-09-05 12:54:06 +00: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 13:52:30 +00:00
|
|
|
}
|
|
|
|
}else{
|
2013-02-07 22:57:18 +00:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) )));
|
2011-07-22 04:21:53 +00:00
|
|
|
}
|