2012-09-28 20:19:37 +00:00
|
|
|
<?php
|
2018-03-13 11:09:46 +00:00
|
|
|
declare(strict_types=1);
|
2012-09-28 20:19:37 +00:00
|
|
|
/**
|
2016-07-21 14:49:16 +00:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-05-26 17:56:05 +00:00
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2017-11-06 14:56:42 +00:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-07-21 14:49:16 +00:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Tobias Kaminsky <tobias@kaminsky.me>
|
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
|
|
|
* @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/>
|
|
|
|
*
|
2012-09-28 20:19:37 +00:00
|
|
|
*/
|
2015-03-21 19:12:55 +00:00
|
|
|
namespace OCA\Files\AppInfo;
|
2014-08-09 08:39:12 +00:00
|
|
|
|
2019-10-11 06:33:09 +00:00
|
|
|
/** @var Application $application */
|
|
|
|
$application = \OC::$server->query(Application::class);
|
2014-11-18 17:53:45 +00:00
|
|
|
$application->registerRoutes(
|
|
|
|
$this,
|
2018-03-13 11:09:46 +00:00
|
|
|
[
|
|
|
|
'routes' => [
|
|
|
|
[
|
2014-11-18 17:53:45 +00:00
|
|
|
'name' => 'API#getThumbnail',
|
|
|
|
'url' => '/api/v1/thumbnail/{x}/{y}/{file}',
|
|
|
|
'verb' => 'GET',
|
2018-03-13 11:09:46 +00:00
|
|
|
'requirements' => ['file' => '.+']
|
|
|
|
],
|
|
|
|
[
|
2014-11-18 17:53:45 +00:00
|
|
|
'name' => 'API#updateFileTags',
|
|
|
|
'url' => '/api/v1/files/{path}',
|
|
|
|
'verb' => 'POST',
|
2018-03-13 11:09:46 +00:00
|
|
|
'requirements' => ['path' => '.+'],
|
|
|
|
],
|
|
|
|
[
|
2016-07-22 12:48:51 +00:00
|
|
|
'name' => 'API#getRecentFiles',
|
|
|
|
'url' => '/api/v1/recent/',
|
|
|
|
'verb' => 'GET'
|
2018-03-13 11:09:46 +00:00
|
|
|
],
|
|
|
|
[
|
2016-04-12 09:08:26 +00:00
|
|
|
'name' => 'API#updateFileSorting',
|
|
|
|
'url' => '/api/v1/sorting',
|
|
|
|
'verb' => 'POST'
|
2018-03-13 11:09:46 +00:00
|
|
|
],
|
|
|
|
[
|
2016-04-12 15:10:09 +00:00
|
|
|
'name' => 'API#showHiddenFiles',
|
|
|
|
'url' => '/api/v1/showhidden',
|
|
|
|
'verb' => 'POST'
|
2018-03-13 11:09:46 +00:00
|
|
|
],
|
2018-10-04 13:14:15 +00:00
|
|
|
[
|
|
|
|
'name' => 'API#showGridView',
|
|
|
|
'url' => '/api/v1/showgridview',
|
|
|
|
'verb' => 'POST'
|
|
|
|
],
|
2018-10-23 08:38:00 +00:00
|
|
|
[
|
|
|
|
'name' => 'API#getGridView',
|
|
|
|
'url' => '/api/v1/showgridview',
|
|
|
|
'verb' => 'GET'
|
|
|
|
],
|
2015-11-16 19:57:41 +00:00
|
|
|
[
|
|
|
|
'name' => 'view#index',
|
|
|
|
'url' => '/',
|
|
|
|
'verb' => 'GET',
|
|
|
|
],
|
2018-03-13 11:09:46 +00:00
|
|
|
[
|
|
|
|
'name' => 'ajax#getStorageStats',
|
|
|
|
'url' => '/ajax/getstoragestats.php',
|
|
|
|
'verb' => 'GET',
|
|
|
|
],
|
2018-06-01 18:29:43 +00:00
|
|
|
[
|
2018-07-13 07:33:57 +00:00
|
|
|
'name' => 'API#toggleShowFolder',
|
|
|
|
'url' => '/api/v1/toggleShowFolder/{key}',
|
|
|
|
'verb' => 'POST'
|
2018-06-20 20:40:10 +00:00
|
|
|
],
|
2018-08-27 15:39:39 +00:00
|
|
|
[
|
|
|
|
'name' => 'API#getNodeType',
|
|
|
|
'url' => '/api/v1/quickaccess/get/NodeType',
|
|
|
|
'verb' => 'GET',
|
|
|
|
],
|
2018-03-13 11:09:46 +00:00
|
|
|
]
|
|
|
|
]
|
2014-11-18 17:53:45 +00:00
|
|
|
);
|
2014-08-09 08:39:12 +00:00
|
|
|
|
|
|
|
/** @var $this \OC\Route\Router */
|
2014-08-19 13:19:18 +00:00
|
|
|
|
|
|
|
$this->create('files_ajax_download', 'ajax/download.php')
|
|
|
|
->actionInclude('files/ajax/download.php');
|
|
|
|
$this->create('files_ajax_list', 'ajax/list.php')
|
|
|
|
->actionInclude('files/ajax/list.php');
|