aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/appinfo
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r--apps/files/appinfo/info.xml19
-rw-r--r--apps/files/appinfo/routes.php340
2 files changed, 182 insertions, 177 deletions
diff --git a/apps/files/appinfo/info.xml b/apps/files/appinfo/info.xml
index 4a920b499ce..fb53cef79b8 100644
--- a/apps/files/appinfo/info.xml
+++ b/apps/files/appinfo/info.xml
@@ -10,7 +10,7 @@
<name>Files</name>
<summary>File Management</summary>
<description>File Management</description>
- <version>2.2.0</version>
+ <version>2.4.0</version>
<licence>agpl</licence>
<author>John Molakvoæ</author>
<author>Robin Appelman</author>
@@ -24,7 +24,7 @@
<category>files</category>
<bugs>https://github.com/nextcloud/server/issues</bugs>
<dependencies>
- <nextcloud min-version="30" max-version="30"/>
+ <nextcloud min-version="32" max-version="32"/>
</dependencies>
<background-jobs>
@@ -46,11 +46,22 @@
<command>OCA\Files\Command\Delete</command>
<command>OCA\Files\Command\Copy</command>
<command>OCA\Files\Command\Move</command>
+ <command>OCA\Files\Command\SanitizeFilenames</command>
<command>OCA\Files\Command\Object\Delete</command>
<command>OCA\Files\Command\Object\Get</command>
<command>OCA\Files\Command\Object\Put</command>
+ <command>OCA\Files\Command\Object\Info</command>
+ <command>OCA\Files\Command\Object\ListObject</command>
+ <command>OCA\Files\Command\Object\Orphans</command>
+ <command>OCA\Files\Command\Object\Multi\Users</command>
+ <command>OCA\Files\Command\Object\Multi\Rename</command>
+ <command>OCA\Files\Command\WindowsCompatibleFilenames</command>
</commands>
+ <settings>
+ <personal>OCA\Files\Settings\PersonalSettings</personal>
+ </settings>
+
<activity>
<settings>
<setting>OCA\Files\Activity\Settings\FavoriteAction</setting>
@@ -77,8 +88,4 @@
</navigation>
</navigations>
- <settings>
- <personal>OCA\Files\Settings\PersonalSettings</personal>
- </settings>
-
</info>
diff --git a/apps/files/appinfo/routes.php b/apps/files/appinfo/routes.php
index 8d1a33d6b4c..04afe578c47 100644
--- a/apps/files/appinfo/routes.php
+++ b/apps/files/appinfo/routes.php
@@ -9,176 +9,174 @@ declare(strict_types=1);
*/
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#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' => 'DirectEditingView#edit',
- 'url' => '/directEditing/{token}',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'Api#serviceWorker',
- 'url' => '/preview-service-worker.js',
- 'verb' => 'GET'
- ],
- [
- 'name' => 'view#indexView',
- 'url' => '/{view}',
- 'verb' => 'GET',
- ],
- [
- 'name' => 'view#indexViewFileid',
- 'url' => '/{view}/{fileid}',
- 'verb' => 'GET',
- ],
- ],
- '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',
- ],
+return [
+ '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#setViewConfig',
+ 'url' => '/api/v1/views',
+ 'verb' => 'PUT'
+ ],
+ [
+ 'name' => 'Api#getViewConfigs',
+ 'url' => '/api/v1/views',
+ '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' => 'DirectEditingView#edit',
+ 'url' => '/directEditing/{token}',
+ 'verb' => 'GET'
+ ],
+ [
+ 'name' => 'Api#serviceWorker',
+ 'url' => '/preview-service-worker.js',
+ 'verb' => 'GET'
+ ],
+ [
+ 'name' => 'view#indexView',
+ 'url' => '/{view}',
+ 'verb' => 'GET',
+ ],
+ [
+ 'name' => 'view#indexViewFileid',
+ 'url' => '/{view}/{fileid}',
+ 'verb' => 'GET',
+ ],
+ ],
+ '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#listTemplateFields',
+ 'url' => '/api/v1/templates/fields/{fileId}',
+ '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',
],
]
-);
+];