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