2013-02-22 20:21:57 +04:00
|
|
|
<?php
|
2013-01-18 16:11:29 +04:00
|
|
|
|
2013-02-04 12:15:11 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2013-02-04 01:49:12 +04:00
|
|
|
OCP\JSON::callCheck();
|
2013-01-18 16:11:29 +04:00
|
|
|
|
2013-02-19 14:49:41 +04:00
|
|
|
$files = $_POST['files'];
|
|
|
|
$dirlisting = $_POST['dirlisting'];
|
2013-02-20 19:33:45 +04:00
|
|
|
$list = json_decode($files);
|
2013-01-18 16:11:29 +04:00
|
|
|
|
2013-01-18 20:50:44 +04:00
|
|
|
$error = array();
|
2013-01-30 16:01:53 +04:00
|
|
|
$success = array();
|
2013-01-18 20:50:44 +04:00
|
|
|
|
|
|
|
$i = 0;
|
|
|
|
foreach ($list as $file) {
|
2013-04-18 20:28:03 +04:00
|
|
|
if ( $dirlisting === '0') {
|
2013-01-22 15:00:04 +04:00
|
|
|
$delimiter = strrpos($file, '.d');
|
|
|
|
$filename = substr($file, 0, $delimiter);
|
|
|
|
$timestamp = substr($file, $delimiter+2);
|
|
|
|
} else {
|
|
|
|
$path_parts = pathinfo($file);
|
|
|
|
$filename = $path_parts['basename'];
|
|
|
|
$timestamp = null;
|
|
|
|
}
|
2013-02-22 20:21:57 +04:00
|
|
|
|
2013-02-07 16:14:45 +04:00
|
|
|
if ( !OCA\Files_Trashbin\Trashbin::restore($file, $filename, $timestamp) ) {
|
2013-01-18 20:50:44 +04:00
|
|
|
$error[] = $filename;
|
2013-03-18 15:08:34 +04:00
|
|
|
OC_Log::write('trashbin','can\'t restore ' . $filename, OC_Log::ERROR);
|
2013-01-18 20:50:44 +04:00
|
|
|
} else {
|
2013-01-22 15:13:50 +04:00
|
|
|
$success[$i]['filename'] = $file;
|
2013-01-18 20:50:44 +04:00
|
|
|
$success[$i]['timestamp'] = $timestamp;
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $error ) {
|
|
|
|
$filelist = '';
|
|
|
|
foreach ( $error as $e ) {
|
|
|
|
$filelist .= $e.', ';
|
|
|
|
}
|
2013-02-07 19:31:04 +04:00
|
|
|
$l = OC_L10N::get('files_trashbin');
|
2013-02-09 20:35:47 +04:00
|
|
|
$message = $l->t("Couldn't restore %s", array(rtrim($filelist, ', ')));
|
2013-02-07 19:31:04 +04:00
|
|
|
OCP\JSON::error(array("data" => array("message" => $message,
|
|
|
|
"success" => $success, "error" => $error)));
|
2013-01-18 17:09:22 +04:00
|
|
|
} else {
|
2013-01-18 20:50:44 +04:00
|
|
|
OCP\JSON::success(array("data" => array("success" => $success)));
|
2013-01-18 17:09:22 +04:00
|
|
|
}
|