nextcloud/apps/files_trashbin/ajax/undelete.php

49 lines
1.2 KiB
PHP
Raw Normal View History

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-11-29 19:43:50 +04:00
$file = ltrim($file, '/');
$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;
OC_Log::write('trashbin','can\'t restore ' . $filename, OC_Log::ERROR);
2013-01-18 20:50:44 +04:00
} else {
$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.', ';
}
$l = OC_L10N::get('files_trashbin');
$message = $l->t("Couldn't restore %s", array(rtrim($filelist, ', ')));
OCP\JSON::error(array("data" => array("message" => $message,
"success" => $success, "error" => $error)));
} else {
2013-01-18 20:50:44 +04:00
OCP\JSON::success(array("data" => array("success" => $success)));
}