25 lines
754 B
PHP
25 lines
754 B
PHP
<?php
|
|
|
|
// Init owncloud
|
|
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
OCP\JSON::callCheck();
|
|
|
|
// Get data
|
|
$dir = stripslashes($_GET["dir"]);
|
|
$file = stripslashes($_GET["file"]);
|
|
$target = stripslashes(urldecode($_GET["target"]));
|
|
|
|
if (OC_User::isLoggedIn() && ($dir != '' || $file != 'Shared')) {
|
|
$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{
|
|
OCP\JSON::error(array("data" => array( "message" => "Could not move $file" )));
|
|
}
|