server/apps/files/ajax/move.php

30 lines
924 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-01-15 13:57:23 +00:00
if(\OC\Files\Filesystem::file_exists($target . '/' . $file)) {
OCP\JSON::error(array("data" => array( "message" => "Could not move $file - File with this name already exists" )));
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" => "Could not move $file" )));
}
}else{
2012-05-03 10:23:29 +00:00
OCP\JSON::error(array("data" => array( "message" => "Could not move $file" )));
}