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
|
|
|
|
2013-01-09 15:48:57 +04:00
|
|
|
$l=OC_L10N::get('files');
|
2011-07-22 08:21:53 +04:00
|
|
|
|
2012-11-04 13:46:32 +04:00
|
|
|
if(OC_Filesystem::file_exists($target . '/' . $file)) {
|
2013-01-09 15:48:57 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s - File with this name already exists", array($file)) )));
|
2012-10-28 18:20:20 +04:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2012-08-29 02:50:12 +04:00
|
|
|
if(OC_Files::move($dir, $file, $target, $file)) {
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $file )));
|
2012-08-29 02:50:12 +04:00
|
|
|
} else {
|
2013-01-09 15:48:57 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => $l->t("Could not move %s", array($file)) )));
|
2011-07-22 08:21:53 +04:00
|
|
|
}
|