6c5696d3a8
add checkbox to toggle show/hide hidden files persist show hidden setting fix settings menu layout test ApiController::showHiddenFiles don't show hidden files by default Store config in Backbone model and inject it into FileList Filter files only temporarily when rending the file list Fix file rename validation
95 lines
3 KiB
PHP
95 lines
3 KiB
PHP
<?php
|
|
/**
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
|
* @author Tobias Kaminsky <tobias@kaminsky.me>
|
|
* @author Tom Needham <tom@owncloud.com>
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
|
*
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
* @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;
|
|
|
|
$application = new Application();
|
|
$application->registerRoutes(
|
|
$this,
|
|
array(
|
|
'routes' => array(
|
|
array(
|
|
'name' => 'API#getThumbnail',
|
|
'url' => '/api/v1/thumbnail/{x}/{y}/{file}',
|
|
'verb' => 'GET',
|
|
'requirements' => array('file' => '.+')
|
|
),
|
|
array(
|
|
'name' => 'API#updateFileTags',
|
|
'url' => '/api/v1/files/{path}',
|
|
'verb' => 'POST',
|
|
'requirements' => array('path' => '.+'),
|
|
),
|
|
array(
|
|
'name' => 'API#getFilesByTag',
|
|
'url' => '/api/v1/tags/{tagName}/files',
|
|
'verb' => 'GET',
|
|
'requirements' => array('tagName' => '.+'),
|
|
),
|
|
array(
|
|
'name' => 'API#updateFileSorting',
|
|
'url' => '/api/v1/sorting',
|
|
'verb' => 'POST'
|
|
),
|
|
array(
|
|
'name' => 'API#showHiddenFiles',
|
|
'url' => '/api/v1/showhidden',
|
|
'verb' => 'POST'
|
|
),
|
|
[
|
|
'name' => 'view#index',
|
|
'url' => '/',
|
|
'verb' => 'GET',
|
|
],
|
|
)
|
|
)
|
|
);
|
|
|
|
/** @var $this \OC\Route\Router */
|
|
|
|
$this->create('files_ajax_delete', 'ajax/delete.php')
|
|
->actionInclude('files/ajax/delete.php');
|
|
$this->create('files_ajax_download', 'ajax/download.php')
|
|
->actionInclude('files/ajax/download.php');
|
|
$this->create('files_ajax_getstoragestats', 'ajax/getstoragestats.php')
|
|
->actionInclude('files/ajax/getstoragestats.php');
|
|
$this->create('files_ajax_list', 'ajax/list.php')
|
|
->actionInclude('files/ajax/list.php');
|
|
$this->create('files_ajax_move', 'ajax/move.php')
|
|
->actionInclude('files/ajax/move.php');
|
|
$this->create('files_ajax_newfile', 'ajax/newfile.php')
|
|
->actionInclude('files/ajax/newfile.php');
|
|
$this->create('files_ajax_newfolder', 'ajax/newfolder.php')
|
|
->actionInclude('files/ajax/newfolder.php');
|
|
$this->create('files_ajax_rename', 'ajax/rename.php')
|
|
->actionInclude('files/ajax/rename.php');
|
|
$this->create('files_ajax_upload', 'ajax/upload.php')
|
|
->actionInclude('files/ajax/upload.php');
|
|
|
|
$this->create('download', 'download{file}')
|
|
->requirements(array('file' => '.*'))
|
|
->actionInclude('files/download.php');
|
|
|