2011-07-22 08:21:53 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-07-22 08:21:53 +04:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 17:58:11 +04:00
|
|
|
OCP\JSON::callCheck();
|
2011-07-22 08:21:53 +04:00
|
|
|
|
|
|
|
// Get data
|
2012-01-15 23:48:38 +04:00
|
|
|
$dir = stripslashes($_GET["dir"]);
|
|
|
|
$file = stripslashes($_GET["file"]);
|
2012-10-29 19:46:22 +04:00
|
|
|
$target = stripslashes(rawurldecode($_GET["target"]));
|
2011-07-22 08:21:53 +04:00
|
|
|
|
2012-10-31 01:59:55 +04:00
|
|
|
if ($dir != '' || $file != 'Shared') {
|
2012-10-24 17:52:30 +04:00
|
|
|
$targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);
|
|
|
|
$sourceFile = \OC\Files\Filesystem::normalizePath($target . '/' . $file);
|
|
|
|
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 14:23:29 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => "Could not move $file" )));
|
2011-07-22 08:21:53 +04:00
|
|
|
}
|