2011-03-04 01:08:54 +03:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
|
|
|
* @author Arthur Schiwon <blizzz@owncloud.com>
|
|
|
|
* @author Frank Karlitschek <frank@owncloud.org>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 17:58:11 +04:00
|
|
|
OCP\JSON::callCheck();
|
2014-07-16 21:40:22 +04:00
|
|
|
\OC::$server->getSession()->close();
|
2014-03-10 17:39:27 +04:00
|
|
|
|
2011-03-04 01:08:54 +03:00
|
|
|
|
|
|
|
// Get data
|
2015-02-13 15:33:20 +03:00
|
|
|
$dir = isset($_POST['dir']) ? (string)$_POST['dir'] : '';
|
2015-02-13 17:18:07 +03:00
|
|
|
$allFiles = isset($_POST["allfiles"]) ? (string)$_POST["allfiles"] : false;
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2014-02-13 23:20:00 +04:00
|
|
|
// delete all files in dir ?
|
2015-02-13 17:18:07 +03:00
|
|
|
if ($allFiles === 'true') {
|
2014-02-13 23:20:00 +04:00
|
|
|
$files = array();
|
|
|
|
$fileList = \OC\Files\Filesystem::getDirectoryContent($dir);
|
|
|
|
foreach ($fileList as $fileInfo) {
|
|
|
|
$files[] = $fileInfo['name'];
|
|
|
|
}
|
|
|
|
} else {
|
2015-02-13 15:33:20 +03:00
|
|
|
$files = isset($_POST["file"]) ? (string)$_POST["file"] : (string)$_POST["files"];
|
2014-02-13 23:20:00 +04:00
|
|
|
$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) {
|
2015-06-03 15:31:58 +03:00
|
|
|
try {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
} catch (\Exception $e) {
|
2012-10-27 14:18:01 +04:00
|
|
|
$filesWithError .= $file . "\n";
|
|
|
|
$success = false;
|
2011-04-18 18:48:35 +04:00
|
|
|
}
|
2011-03-04 01:08:54 +03:00
|
|
|
}
|
2011-04-18 18:48:35 +04:00
|
|
|
|
2013-01-19 03:31:09 +04:00
|
|
|
// get array with updated storage stats (e.g. max file size) after upload
|
2015-02-04 17:58:16 +03:00
|
|
|
try {
|
|
|
|
$storageStats = \OCA\Files\Helper::buildFileStorageStatistics($dir);
|
|
|
|
} catch(\OCP\Files\NotFoundException $e) {
|
|
|
|
OCP\JSON::error(['data' => ['message' => 'File not found']]);
|
|
|
|
return;
|
|
|
|
}
|
2012-12-20 20:16:01 +04:00
|
|
|
|
2013-01-19 03:31:09 +04:00
|
|
|
if ($success) {
|
|
|
|
OCP\JSON::success(array("data" => array_merge(array("dir" => $dir, "files" => $files), $storageStats)));
|
2011-04-18 18:48:35 +04:00
|
|
|
} else {
|
2013-01-19 03:31:09 +04:00
|
|
|
OCP\JSON::error(array("data" => array_merge(array("message" => "Could not delete:\n" . $filesWithError), $storageStats)));
|
2011-03-04 01:08:54 +03:00
|
|
|
}
|