nextcloud/apps/files/ajax/delete.php

44 lines
1.2 KiB
PHP
Raw Normal View History

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