summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin/ajax/delete.php
blob: 7b41eb1ea8051a9fdcf39ae39deca39c419a1490 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php

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

// "empty trash" command
if (isset($_POST['allfiles']) and $_POST['allfiles'] === 'true'){
	$deleteAll = true;
	$folder = isset($_POST['dir']) ? $_POST['dir'] : '/';
	if ($folder === '/') {
		OCA\Files_Trashbin\Trashbin::deleteAll();
		$list = array();
	} else {
		if ( strlen(dirname($folder)) > 1 ) {
			$dirlisting = '1';
		} else {
			$dirlisting = '0';
		}
		$list[] = $folder;
	}
}
else {
	$deleteAll = false;
	$files = $_POST['files'];
	$dirlisting = $_POST['dirlisting'];
	$list = json_decode($files);
}
$error = array();
$success = array();

$i = 0;
foreach ($list as $file) {
	if ( $dirlisting === '0') {
		$file = ltrim($file, '/');
		$delimiter = strrpos($file, '.d');
		$filename = substr($file, 0, $delimiter);
		$timestamp =  substr($file, $delimiter+2);
	} else {
		$filename = $file;
		$timestamp = null;
	}

	OCA\Files_Trashbin\Trashbin::delete($filename, $timestamp);
	if (OCA\Files_Trashbin\Trashbin::file_exists($filename, $timestamp)) {
		$error[] = $filename;
		OC_Log::write('trashbin','can\'t delete ' . $filename . ' permanently.', OC_Log::ERROR);
	}
	// only list deleted files if not deleting everything
	else if (!$deleteAll) {
		$success[$i]['filename'] = $file;
		$success[$i]['timestamp'] = $timestamp;
		$i++;
	}
}

if ( $error ) {
	$filelist = '';
	foreach ( $error as $e ) {
		$filelist .= $e.', ';
	}
	$l = OC_L10N::get('files_trashbin');
	$message = $l->t("Couldn't delete %s permanently", array(rtrim($filelist, ', ')));
	OCP\JSON::error(array("data" => array("message" => $message,
			                               "success" => $success, "error" => $error)));
} else {
	OCP\JSON::success(array("data" => array("success" => $success)));
}