2011-03-03 22:08:54 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 17:31:29 +00:00
|
|
|
|
2011-03-03 22:08:54 +00:00
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 13:58:11 +00:00
|
|
|
OCP\JSON::callCheck();
|
2011-03-03 22:08:54 +00:00
|
|
|
|
|
|
|
// Get data
|
2012-01-15 19:48:38 +00:00
|
|
|
$dir = stripslashes($_GET["dir"]);
|
|
|
|
$file = stripslashes($_GET["file"]);
|
|
|
|
$newname = stripslashes($_GET["newname"]);
|
2011-03-03 22:08:54 +00:00
|
|
|
|
2013-02-08 11:03:28 +00:00
|
|
|
$l = OC_L10N::get('files');
|
|
|
|
|
2013-01-15 13:57:23 +00:00
|
|
|
if ( $newname !== '.' and ($dir != '' || $file != 'Shared') and $newname !== '.') {
|
2012-11-08 20:35:30 +00:00
|
|
|
$targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname);
|
|
|
|
$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, "file" => $file, "newname" => $newname )));
|
|
|
|
} else {
|
2013-02-07 22:57:18 +00:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") )));
|
2012-10-24 13:52:30 +00:00
|
|
|
}
|
|
|
|
}else{
|
2013-02-07 22:57:18 +00:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Unable to rename file") )));
|
2011-03-03 22:08:54 +00:00
|
|
|
}
|