nextcloud/apps/files_trashbin/ajax/undelete.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2013-01-18 16:11:29 +04:00
<?php
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-01-18 20:50:44 +04:00
$files = $_REQUEST['files'];
$dirlisting = $_REQUEST['dirlisting'];
2013-01-18 20:50:44 +04:00
$list = explode(';', $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) {
if ( $dirlisting=='0') {
$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-01-18 20:50:44 +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;
} 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)));
}