2013-08-17 15:07:18 +04:00
|
|
|
<?php
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-08-17 15:07:18 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2014-10-30 00:53:59 +03:00
|
|
|
\OC::$server->getSession()->close();
|
2013-08-17 15:07:18 +04:00
|
|
|
|
|
|
|
// Load the files
|
2015-02-13 15:33:20 +03:00
|
|
|
$dir = isset($_GET['dir']) ? (string)$_GET['dir'] : '';
|
|
|
|
$sortAttribute = isset($_GET['sort']) ? (string)$_GET['sort'] : 'name';
|
|
|
|
$sortDirection = isset($_GET['sortdirection']) ? ($_GET['sortdirection'] === 'desc') : false;
|
2013-08-17 15:07:18 +04:00
|
|
|
$data = array();
|
|
|
|
|
|
|
|
// make filelist
|
2014-02-25 23:46:41 +04:00
|
|
|
try {
|
2014-06-17 22:08:40 +04:00
|
|
|
$files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir, \OCP\User::getUser(), $sortAttribute, $sortDirection);
|
2014-02-25 23:46:41 +04:00
|
|
|
} catch (Exception $e) {
|
2013-08-17 15:07:18 +04:00
|
|
|
header("HTTP/1.0 404 Not Found");
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
$encodedDir = \OCP\Util::encodePath($dir);
|
2013-10-28 23:22:06 +04:00
|
|
|
|
|
|
|
$data['permissions'] = 0;
|
|
|
|
$data['directory'] = $dir;
|
|
|
|
$data['files'] = \OCA\Files_Trashbin\Helper::formatFileInfos($files);
|
2013-08-17 15:07:18 +04:00
|
|
|
|
|
|
|
OCP\JSON::success(array('data' => $data));
|
|
|
|
|