nextcloud/apps/files/ajax/move.php

36 lines
1.3 KiB
PHP
Raw Normal View History

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