34 lines
868 B
PHP
34 lines
868 B
PHP
<?php
|
|
|
|
// Init owncloud
|
|
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
OCP\JSON::callCheck();
|
|
|
|
// Get data
|
|
$dir = stripslashes($_POST["dir"]);
|
|
$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"];
|
|
|
|
$files = json_decode($files);
|
|
$filesWithError = '';
|
|
|
|
$success = true;
|
|
|
|
//Now delete
|
|
foreach ($files as $file) {
|
|
if (($dir === '' && $file === 'Shared') || !\OC\Files\Filesystem::unlink($dir . '/' . $file)) {
|
|
$filesWithError .= $file . "\n";
|
|
$success = false;
|
|
}
|
|
}
|
|
|
|
// get array with updated storage stats (e.g. max file size) after upload
|
|
$storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir);
|
|
|
|
if ($success) {
|
|
OCP\JSON::success(array("data" => array_merge(array("dir" => $dir, "files" => $files), $storageStats)));
|
|
} else {
|
|
OCP\JSON::error(array("data" => array_merge(array("message" => "Could not delete:\n" . $filesWithError), $storageStats)));
|
|
}
|