2011-03-04 01:08:54 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 17:58:11 +04:00
|
|
|
OCP\JSON::callCheck();
|
2011-03-04 01:08:54 +03:00
|
|
|
|
|
|
|
// Get data
|
2012-01-15 23:48:38 +04:00
|
|
|
$dir = stripslashes($_GET["dir"]);
|
|
|
|
$file = stripslashes($_GET["file"]);
|
|
|
|
$newname = stripslashes($_GET["newname"]);
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2013-02-08 15:03:28 +04:00
|
|
|
$l = OC_L10N::get('files');
|
|
|
|
|
2013-04-09 15:54:01 +04:00
|
|
|
if ( $newname !== '.' and ($dir !== '/' || $file !== 'Shared') and ($dir !== '/' || $newname !== 'Shared') ) {
|
2012-11-09 00:35:30 +04:00
|
|
|
$targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname);
|
|
|
|
$sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);
|
2012-10-24 17:52:30 +04:00
|
|
|
if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) {
|
|
|
|
OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname )));
|
|
|
|
} else {
|
2013-02-08 02:57:18 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") )));
|
2012-10-24 17:52:30 +04:00
|
|
|
}
|
2013-04-09 15:44:54 +04:00
|
|
|
} elseif( $dir === '/' and $newname === 'Shared' ) {
|
2013-04-09 15:31:12 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Invalid folder name. Usage of 'Shared' is reserved by Owncloud") )));
|
|
|
|
} else {
|
2013-02-08 02:57:18 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") )));
|
2011-03-04 01:08:54 +03:00
|
|
|
}
|