123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- <?php
- declare(strict_types=1);
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Felix Nüsse <Felix.nuesse@t-online.de>
- * @author fnuesse <felix.nuesse@t-online.de>
- * @author fnuesse <fnuesse@techfak.uni-bielefeld.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- * @author Julius Härtl <jus@bitgrid.net>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Nina Pypchenko <22447785+nina-py@users.noreply.github.com>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Tobias Kaminsky <tobias@kaminsky.me>
- * @author Vincent Petry <vincent@nextcloud.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/>
- *
- */
- namespace OCA\Files\AppInfo;
- use OCA\Files\Controller\OpenLocalEditorController;
- // Legacy routes above
- /** @var \OC\Route\Router $this */
- $this->create('files_ajax_download', 'apps/files/ajax/download.php')
- ->actionInclude('files/ajax/download.php');
- /** @var Application $application */
- $application = \OC::$server->get(Application::class);
- $application->registerRoutes(
- $this,
- [
- 'routes' => [
- [
- 'name' => 'view#index',
- 'url' => '/',
- 'verb' => 'GET',
- ],
- [
- 'name' => 'View#showFile',
- 'url' => '/f/{fileid}',
- 'verb' => 'GET',
- 'root' => '',
- ],
- [
- 'name' => 'API#getThumbnail',
- 'url' => '/api/v1/thumbnail/{x}/{y}/{file}',
- 'verb' => 'GET',
- 'requirements' => ['file' => '.+']
- ],
- [
- 'name' => 'API#updateFileTags',
- 'url' => '/api/v1/files/{path}',
- 'verb' => 'POST',
- 'requirements' => ['path' => '.+'],
- ],
- [
- 'name' => 'API#getRecentFiles',
- 'url' => '/api/v1/recent/',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'API#getStorageStats',
- 'url' => '/api/v1/stats',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'API#setViewConfig',
- 'url' => '/api/v1/views/{view}/{key}',
- 'verb' => 'PUT'
- ],
- [
- 'name' => 'API#getViewConfigs',
- 'url' => '/api/v1/views',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'API#getViewConfig',
- 'url' => '/api/v1/views/{view}',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'API#setConfig',
- 'url' => '/api/v1/config/{key}',
- 'verb' => 'PUT'
- ],
- [
- 'name' => 'API#getConfigs',
- 'url' => '/api/v1/configs',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'API#showHiddenFiles',
- 'url' => '/api/v1/showhidden',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'API#cropImagePreviews',
- 'url' => '/api/v1/cropimagepreviews',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'API#showGridView',
- 'url' => '/api/v1/showgridview',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'API#getGridView',
- 'url' => '/api/v1/showgridview',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'API#getNodeType',
- 'url' => '/api/v1/quickaccess/get/NodeType',
- 'verb' => 'GET',
- ],
- [
- 'name' => 'DirectEditingView#edit',
- 'url' => '/directEditing/{token}',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'api#serviceWorker',
- 'url' => '/preview-service-worker.js',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'view#index',
- 'url' => '/{view}',
- 'verb' => 'GET',
- 'postfix' => 'view',
- ],
- [
- 'name' => 'view#index',
- 'url' => '/{view}/{fileid}',
- 'verb' => 'GET',
- 'postfix' => 'fileid',
- ],
- ],
- 'ocs' => [
- [
- 'name' => 'DirectEditing#info',
- 'url' => '/api/v1/directEditing',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'DirectEditing#templates',
- 'url' => '/api/v1/directEditing/templates/{editorId}/{creatorId}',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'DirectEditing#open',
- 'url' => '/api/v1/directEditing/open',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'DirectEditing#create',
- 'url' => '/api/v1/directEditing/create',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'Template#list',
- 'url' => '/api/v1/templates',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'Template#create',
- 'url' => '/api/v1/templates/create',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'Template#path',
- 'url' => '/api/v1/templates/path',
- 'verb' => 'POST'
- ],
- [
- 'name' => 'TransferOwnership#transfer',
- 'url' => '/api/v1/transferownership',
- 'verb' => 'POST',
- ],
- [
- 'name' => 'TransferOwnership#accept',
- 'url' => '/api/v1/transferownership/{id}',
- 'verb' => 'POST',
- ],
- [
- 'name' => 'TransferOwnership#reject',
- 'url' => '/api/v1/transferownership/{id}',
- 'verb' => 'DELETE',
- ],
- [
- /** @see OpenLocalEditorController::create() */
- 'name' => 'OpenLocalEditor#create',
- 'url' => '/api/v1/openlocaleditor',
- 'verb' => 'POST',
- ],
- [
- /** @see OpenLocalEditorController::validate() */
- 'name' => 'OpenLocalEditor#validate',
- 'url' => '/api/v1/openlocaleditor/{token}',
- 'verb' => 'POST',
- ],
- ],
- ]
- );
|