remove old trashbin endpoint
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
b4e452ad60
commit
a623e09868
|
@ -1,48 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
||||
*
|
||||
* @author Björn Schießle <bjoern@schiessle.org>
|
||||
* @author Lukas Reschke <lukas@statuscode.ch>
|
||||
* @author Vincent Petry <pvince81@owncloud.com>
|
||||
*
|
||||
* @license AGPL-3.0
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
\OC_JSON::checkLoggedIn();
|
||||
\OC::$server->getSession()->close();
|
||||
|
||||
// Load the files
|
||||
$dir = isset($_GET['dir']) ? (string)$_GET['dir'] : '';
|
||||
$sortAttribute = isset($_GET['sort']) ? (string)$_GET['sort'] : 'name';
|
||||
$sortDirection = isset($_GET['sortdirection']) ? ($_GET['sortdirection'] === 'desc') : false;
|
||||
$data = array();
|
||||
|
||||
// make filelist
|
||||
try {
|
||||
$files = \OCA\Files_Trashbin\Helper::getTrashFiles($dir, \OCP\User::getUser(), $sortAttribute, $sortDirection);
|
||||
} catch (Exception $e) {
|
||||
http_response_code(404);
|
||||
exit();
|
||||
}
|
||||
|
||||
$encodedDir = \OCP\Util::encodePath($dir);
|
||||
|
||||
$data['permissions'] = 0;
|
||||
$data['directory'] = $dir;
|
||||
$data['files'] = \OCA\Files_Trashbin\Helper::formatFileInfos($files);
|
||||
|
||||
\OC_JSON::success(array('data' => $data));
|
||||
|
|
@ -39,8 +39,6 @@ $this->create('files_trashbin_ajax_delete', 'ajax/delete.php')
|
|||
->actionInclude('files_trashbin/ajax/delete.php');
|
||||
$this->create('files_trashbin_ajax_isEmpty', 'ajax/isEmpty.php')
|
||||
->actionInclude('files_trashbin/ajax/isEmpty.php');
|
||||
$this->create('files_trashbin_ajax_list', 'ajax/list.php')
|
||||
->actionInclude('files_trashbin/ajax/list.php');
|
||||
$this->create('files_trashbin_ajax_undelete', 'ajax/undelete.php')
|
||||
->actionInclude('files_trashbin/ajax/undelete.php');
|
||||
|
||||
|
|
|
@ -51,13 +51,17 @@ trait Trashbin {
|
|||
*/
|
||||
public function listTrashbinFolder($user, $path){
|
||||
$this->asAn($user);
|
||||
$params = '?dir=' . rawurlencode('/' . trim($path, '/'));
|
||||
$this->sendingToWithDirectUrl('GET', '/index.php/apps/files_trashbin/ajax/list.php' . $params, null);
|
||||
$this->sendingToWithDirectUrl('PROPFIND', "/remote.php/dav/trashbin/$user/$path", null);
|
||||
$this->theHTTPStatusCodeShouldBe('200');
|
||||
|
||||
$response = json_decode($this->response->getBody(), true);
|
||||
|
||||
return $response['data']['files'];
|
||||
$body = $this->response->getBody();
|
||||
if($body && substr($body, 0, 1) === '<') {
|
||||
$reader = new Sabre\Xml\Reader();
|
||||
$reader->xml($body);
|
||||
return $reader->parse();
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue