2011-03-03 17:08:54 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 13:31:29 -04:00
|
|
|
|
2011-03-03 17:08:54 -05:00
|
|
|
|
2012-05-03 06:23:29 -04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 09:58:11 -04:00
|
|
|
OCP\JSON::callCheck();
|
2011-03-03 17:08:54 -05:00
|
|
|
|
|
|
|
|
// Get data
|
2012-06-14 11:43:21 -04:00
|
|
|
$dir = stripslashes($_POST["dir"]);
|
2013-04-19 07:45:40 -04:00
|
|
|
$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"];
|
2011-03-03 17:08:54 -05:00
|
|
|
|
2012-12-13 12:11:00 -05:00
|
|
|
$files = json_decode($files);
|
2011-04-18 10:48:35 -04:00
|
|
|
$filesWithError = '';
|
2012-10-27 06:18:01 -04:00
|
|
|
|
|
|
|
|
$success = true;
|
|
|
|
|
|
|
|
|
|
//Now delete
|
|
|
|
|
foreach ($files as $file) {
|
|
|
|
|
if (($dir === '' && $file === 'Shared') || !\OC\Files\Filesystem::unlink($dir . '/' . $file)) {
|
|
|
|
|
$filesWithError .= $file . "\n";
|
|
|
|
|
$success = false;
|
2011-04-18 10:48:35 -04:00
|
|
|
}
|
2011-03-03 17:08:54 -05:00
|
|
|
}
|
2011-04-18 10:48:35 -04:00
|
|
|
|
2013-01-18 18:31:09 -05:00
|
|
|
// get array with updated storage stats (e.g. max file size) after upload
|
2013-09-20 10:46:33 -04:00
|
|
|
$storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir);
|
2012-12-20 11:16:01 -05:00
|
|
|
|
2013-01-18 18:31:09 -05:00
|
|
|
if ($success) {
|
|
|
|
|
OCP\JSON::success(array("data" => array_merge(array("dir" => $dir, "files" => $files), $storageStats)));
|
2011-04-18 10:48:35 -04:00
|
|
|
} else {
|
2013-01-18 18:31:09 -05:00
|
|
|
OCP\JSON::error(array("data" => array_merge(array("message" => "Could not delete:\n" . $filesWithError), $storageStats)));
|
2011-03-03 17:08:54 -05:00
|
|
|
}
|