summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/delete.php
blob: 293543c547f4429f69b960e95eb5e0d2a4347c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php

// Init owncloud


OCP\JSON::checkLoggedIn();
OCP\JSON::callCheck();

// Get data
$dir = stripslashes($_POST["dir"]);
$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]);

$files = json_decode($files);
$filesWithError = '';
$success = true;
//Now delete
foreach($files as $file) {
	if( !OC_Files::delete( $dir, $file )) {
		$filesWithError .= $file . "\n";
		$success = false;
	}
}

// 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;

if($success) {
	OCP\JSON::success(array("data" => array( "dir" => $dir, "files" => $files,
		'uploadMaxFilesize'=>$maxUploadFilesize,
		'maxHumanFilesize'=>$maxHumanFilesize
	)));
} else {
	OCP\JSON::error(array("data" => array( "message" => "Could not delete:\n" . $filesWithError,
		'uploadMaxFilesize'=>$maxUploadFilesize,
		'maxHumanFilesize'=>$maxHumanFilesize
	)));
}