nextcloud/apps/files/ajax/delete.php

34 lines
755 B
PHP
Raw Normal View History

<?php
// Init owncloud
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
2012-07-07 17:58:11 +04:00
OCP\JSON::callCheck();
// Get data
$dir = stripslashes($_POST["dir"]);
$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]);
2011-04-18 18:48:35 +04:00
$files = explode(';', $files);
$filesWithError = '';
2012-10-24 17:52:30 +04:00
if (OC_User::isLoggedIn()) {
$success = true;
//Now delete
foreach ($files as $file) {
if ($dir != '' || $file != 'Shared' && !\OC\Files\Filesystem::unlink($dir . '/' . $file)) {
$filesWithError .= $file . "\n";
$success = false;
}
2011-04-18 18:48:35 +04:00
}
2012-10-24 17:52:30 +04:00
} else {
$success = false;
}
2011-04-18 18:48:35 +04:00
2012-10-24 17:52:30 +04:00
if ($success) {
OCP\JSON::success(array("data" => array("dir" => $dir, "files" => $files)));
2011-04-18 18:48:35 +04:00
} else {
2012-10-24 17:52:30 +04:00
OCP\JSON::error(array("data" => array("message" => "Could not delete:\n" . $filesWithError)));
}