2011-03-04 01:08:54 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 17:58:11 +04:00
|
|
|
OCP\JSON::callCheck();
|
2011-03-04 01:08:54 +03:00
|
|
|
|
|
|
|
// Get data
|
2012-06-14 19:43:21 +04:00
|
|
|
$dir = stripslashes($_POST["dir"]);
|
|
|
|
$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]);
|
2011-03-04 01:08:54 +03:00
|
|
|
|
2012-12-13 21:11:00 +04:00
|
|
|
$files = json_decode($files);
|
2011-04-18 18:48:35 +04:00
|
|
|
$filesWithError = '';
|
2011-09-24 00:22:59 +04:00
|
|
|
$success = true;
|
2011-04-18 18:48:35 +04:00
|
|
|
//Now delete
|
|
|
|
foreach($files as $file) {
|
2012-06-14 19:43:21 +04:00
|
|
|
if( !OC_Files::delete( $dir, $file )) {
|
2011-04-18 18:48:35 +04:00
|
|
|
$filesWithError .= $file . "\n";
|
2011-09-24 00:22:59 +04:00
|
|
|
$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
|
|
|
|
2012-12-20 20:16:01 +04:00
|
|
|
// updated max file size after upload
|
|
|
|
$l=new OC_L10N('files');
|
|
|
|
$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir);
|
|
|
|
$maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize);
|
|
|
|
$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize;
|
|
|
|
|
2011-09-29 17:53:31 +04:00
|
|
|
if($success) {
|
2012-12-20 20:16:01 +04:00
|
|
|
OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $files,
|
2013-01-18 23:09:03 +04:00
|
|
|
'uploadMaxFilesize'=>$maxUploadFilesize,
|
|
|
|
'maxHumanFilesize'=>$maxHumanFilesize
|
|
|
|
)));
|
2011-04-18 18:48:35 +04:00
|
|
|
} else {
|
2012-12-20 20:16:01 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => "Could not delete:\n" . $filesWithError,
|
2013-01-18 23:09:03 +04:00
|
|
|
'uploadMaxFilesize'=>$maxUploadFilesize,
|
|
|
|
'maxHumanFilesize'=>$maxHumanFilesize
|
|
|
|
)));
|
2011-03-04 01:08:54 +03:00
|
|
|
}
|