summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/rename.php
blob: 470ee635a2a7d6a120eb72d5ff16d0b10ecbf9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

// Init owncloud


OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();

// Get data
$dir = stripslashes($_GET["dir"]);
$file = stripslashes($_GET["file"]);
$newname = stripslashes($_GET["newname"]);

if (($dir != '' || $file != 'Shared')) {
	$targetFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $newname);
	$sourceFile = \OC\Files\Filesystem::normalizePath($dir . '/' . $file);
	if(\OC\Files\Filesystem::rename($sourceFile, $targetFile)) {
		OCP\JSON::success(array("data" => array( "dir" => $dir, "file" => $file, "newname" => $newname )));
	} else {
		OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" )));
	}
}else{
	OCP\JSON::error(array("data" => array( "message" => "Unable to rename file" )));
}