Exemplo n.º 1
0
<?php

OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();
\OC::$server->getSession()->close();
if (\OCA\Files\Helper::isDeletingDisabledForUser()) {
    $storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir);
    OCP\JSON::error(array("data" => array_merge(array("message" => "You don't have the permission to delete files"), $storageStats)));
    exit;
}
// Get data
$dir = isset($_POST['dir']) ? (string) $_POST['dir'] : '';
$allFiles = isset($_POST["allfiles"]) ? (string) $_POST["allfiles"] : false;
// delete all files in dir ?
if ($allFiles === 'true') {
    $files = array();
    $fileList = \OC\Files\Filesystem::getDirectoryContent($dir);
    foreach ($fileList as $fileInfo) {
        $files[] = $fileInfo['name'];
    }
} else {
    $files = isset($_POST["file"]) ? (string) $_POST["file"] : (string) $_POST["files"];
    $files = json_decode($files);
}
$filesWithError = '';
$success = true;
//Now delete
foreach ($files as $file) {
    if (\OC\Files\Filesystem::file_exists($dir . '/' . $file) && !(\OC\Files\Filesystem::isDeletable($dir . '/' . $file) && \OC\Files\Filesystem::unlink($dir . '/' . $file))) {
        $filesWithError .= $file . "\n";
        $success = false;