2012-08-12 18:52:36 +04:00
|
|
|
<?php
|
2021-04-26 13:44:37 +03:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2012-08-12 18:52:36 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Michael Weimann <mail@michael-weimann.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Victor Dubiniuk <dubiniuk@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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2012-08-12 18:52:36 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-08-22 20:16:55 +04:00
|
|
|
use OC\Core\Application;
|
2014-05-28 01:09:08 +04:00
|
|
|
|
2019-10-11 09:33:09 +03:00
|
|
|
/** @var Application $application */
|
|
|
|
$application = \OC::$server->query(Application::class);
|
2015-03-03 14:52:27 +03:00
|
|
|
$application->registerRoutes($this, [
|
|
|
|
'routes' => [
|
|
|
|
['name' => 'lost#email', 'url' => '/lostpassword/email', 'verb' => 'POST'],
|
|
|
|
['name' => 'lost#resetform', 'url' => '/lostpassword/reset/form/{token}/{userId}', 'verb' => 'GET'],
|
|
|
|
['name' => 'lost#setPassword', 'url' => '/lostpassword/set/{token}/{userId}', 'verb' => 'POST'],
|
|
|
|
['name' => 'user#getDisplayNames', 'url' => '/displaynames', 'verb' => 'POST'],
|
|
|
|
['name' => 'avatar#getAvatar', 'url' => '/avatar/{userId}/{size}', 'verb' => 'GET'],
|
|
|
|
['name' => 'avatar#deleteAvatar', 'url' => '/avatar/', 'verb' => 'DELETE'],
|
|
|
|
['name' => 'avatar#postCroppedAvatar', 'url' => '/avatar/cropped', 'verb' => 'POST'],
|
|
|
|
['name' => 'avatar#getTmpAvatar', 'url' => '/avatar/tmp', 'verb' => 'GET'],
|
|
|
|
['name' => 'avatar#postAvatar', 'url' => '/avatar/', 'verb' => 'POST'],
|
2019-01-20 13:13:41 +03:00
|
|
|
['name' => 'GuestAvatar#getAvatar', 'url' => '/avatar/guest/{guestName}/{size}', 'verb' => 'GET'],
|
2018-02-26 19:13:23 +03:00
|
|
|
['name' => 'CSRFToken#index', 'url' => '/csrftoken', 'verb' => 'GET'],
|
2016-04-25 15:10:55 +03:00
|
|
|
['name' => 'login#tryLogin', 'url' => '/login', 'verb' => 'POST'],
|
2016-09-19 16:33:30 +03:00
|
|
|
['name' => 'login#confirmPassword', 'url' => '/login/confirm', 'verb' => 'POST'],
|
2016-04-11 13:08:00 +03:00
|
|
|
['name' => 'login#showLoginForm', 'url' => '/login', 'verb' => 'GET'],
|
2016-04-18 13:14:07 +03:00
|
|
|
['name' => 'login#logout', 'url' => '/logout', 'verb' => 'GET'],
|
2019-02-12 11:26:46 +03:00
|
|
|
// Original login flow used by all clients
|
2017-04-24 22:11:48 +03:00
|
|
|
['name' => 'ClientFlowLogin#showAuthPickerPage', 'url' => '/login/flow', 'verb' => 'GET'],
|
|
|
|
['name' => 'ClientFlowLogin#generateAppPassword', 'url' => '/login/flow', 'verb' => 'POST'],
|
2018-04-06 23:09:20 +03:00
|
|
|
['name' => 'ClientFlowLogin#grantPage', 'url' => '/login/flow/grant', 'verb' => 'GET'],
|
2019-01-04 22:30:37 +03:00
|
|
|
['name' => 'ClientFlowLogin#apptokenRedirect', 'url' => '/login/flow/apptoken', 'verb' => 'POST'],
|
2019-02-12 11:26:46 +03:00
|
|
|
// NG login flow used by desktop client in case of Kerberos/fancy 2fa (smart cards for example)
|
|
|
|
['name' => 'ClientFlowLoginV2#poll', 'url' => '/login/v2/poll', 'verb' => 'POST'],
|
|
|
|
['name' => 'ClientFlowLoginV2#showAuthPickerPage', 'url' => '/login/v2/flow', 'verb' => 'GET'],
|
|
|
|
['name' => 'ClientFlowLoginV2#landing', 'url' => '/login/v2/flow/{token}', 'verb' => 'GET'],
|
|
|
|
['name' => 'ClientFlowLoginV2#grantPage', 'url' => '/login/v2/grant', 'verb' => 'GET'],
|
|
|
|
['name' => 'ClientFlowLoginV2#generateAppPassword', 'url' => '/login/v2/grant', 'verb' => 'POST'],
|
|
|
|
['name' => 'ClientFlowLoginV2#init', 'url' => '/login/v2', 'verb' => 'POST'],
|
2016-05-11 12:23:25 +03:00
|
|
|
['name' => 'TwoFactorChallenge#selectChallenge', 'url' => '/login/selectchallenge', 'verb' => 'GET'],
|
|
|
|
['name' => 'TwoFactorChallenge#showChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'GET'],
|
|
|
|
['name' => 'TwoFactorChallenge#solveChallenge', 'url' => '/login/challenge/{challengeProviderId}', 'verb' => 'POST'],
|
2019-04-05 19:21:08 +03:00
|
|
|
['name' => 'TwoFactorChallenge#setupProviders', 'url' => 'login/setupchallenge', 'verb' => 'GET'],
|
|
|
|
['name' => 'TwoFactorChallenge#setupProvider', 'url' => 'login/setupchallenge/{providerId}', 'verb' => 'GET'],
|
|
|
|
['name' => 'TwoFactorChallenge#confirmProviderSetup', 'url' => 'login/setupchallenge/{providerId}', 'verb' => 'POST'],
|
2016-10-25 21:49:48 +03:00
|
|
|
['name' => 'OCJS#getConfig', 'url' => '/core/js/oc.js', 'verb' => 'GET'],
|
2018-01-16 23:19:35 +03:00
|
|
|
['name' => 'Preview#getPreviewByFileId', 'url' => '/core/preview', 'verb' => 'GET'],
|
2016-10-14 20:27:14 +03:00
|
|
|
['name' => 'Preview#getPreview', 'url' => '/core/preview.png', 'verb' => 'GET'],
|
2019-12-04 22:18:58 +03:00
|
|
|
['name' => 'RecommendedApps#index', 'url' => '/core/apps/recommended', 'verb' => 'GET'],
|
2018-10-24 15:47:08 +03:00
|
|
|
['name' => 'Svg#getSvgFromCore', 'url' => '/svg/core/{folder}/{fileName}', 'verb' => 'GET'],
|
|
|
|
['name' => 'Svg#getSvgFromApp', 'url' => '/svg/{app}/{fileName}', 'verb' => 'GET'],
|
2016-11-10 18:36:58 +03:00
|
|
|
['name' => 'Css#getCss', 'url' => '/css/{appName}/{fileName}', 'verb' => 'GET'],
|
2017-03-22 16:47:07 +03:00
|
|
|
['name' => 'Js#getJs', 'url' => '/js/{appName}/{fileName}', 'verb' => 'GET'],
|
2017-04-24 12:02:07 +03:00
|
|
|
['name' => 'contactsMenu#index', 'url' => '/contactsmenu/contacts', 'verb' => 'POST'],
|
2017-04-24 12:39:03 +03:00
|
|
|
['name' => 'contactsMenu#findOne', 'url' => '/contactsmenu/findOne', 'verb' => 'POST'],
|
2017-11-01 23:58:55 +03:00
|
|
|
['name' => 'WalledGarden#get', 'url' => '/204', 'verb' => 'GET'],
|
2018-03-09 15:53:28 +03:00
|
|
|
['name' => 'Search#search', 'url' => '/core/search', 'verb' => 'GET'],
|
2019-04-03 17:00:46 +03:00
|
|
|
['name' => 'Wipe#checkWipe', 'url' => '/core/wipe/check', 'verb' => 'POST'],
|
|
|
|
['name' => 'Wipe#wipeDone', 'url' => '/core/wipe/success', 'verb' => 'POST'],
|
2019-03-11 14:30:44 +03:00
|
|
|
|
2020-02-09 22:06:08 +03:00
|
|
|
// Logins for passwordless auth
|
|
|
|
['name' => 'WebAuthn#startAuthentication', 'url' => 'login/webauthn/start', 'verb' => 'POST'],
|
|
|
|
['name' => 'WebAuthn#finishAuthentication', 'url' => 'login/webauthn/finish', 'verb' => 'POST'],
|
2020-12-14 17:56:07 +03:00
|
|
|
|
|
|
|
// Well known requests https://tools.ietf.org/html/rfc5785
|
|
|
|
['name' => 'WellKnown#handle', 'url' => '.well-known/{service}'],
|
2016-04-25 15:10:55 +03:00
|
|
|
],
|
2016-08-09 11:21:51 +03:00
|
|
|
'ocs' => [
|
|
|
|
['root' => '/cloud', 'name' => 'OCS#getCapabilities', 'url' => '/capabilities', 'verb' => 'GET'],
|
2016-08-14 21:46:33 +03:00
|
|
|
['root' => '', 'name' => 'OCS#getConfig', 'url' => '/config', 'verb' => 'GET'],
|
2016-11-16 21:21:00 +03:00
|
|
|
['root' => '/person', 'name' => 'OCS#personCheck', 'url' => '/check', 'verb' => 'POST'],
|
2016-11-17 19:35:14 +03:00
|
|
|
['root' => '/identityproof', 'name' => 'OCS#getIdentityProof', 'url' => '/key/{cloudId}', 'verb' => 'GET'],
|
2018-02-01 14:18:24 +03:00
|
|
|
['root' => '/core', 'name' => 'Navigation#getAppsNavigation', 'url' => '/navigation/apps', 'verb' => 'GET'],
|
|
|
|
['root' => '/core', 'name' => 'Navigation#getSettingsNavigation', 'url' => '/navigation/settings', 'verb' => 'GET'],
|
2018-03-21 11:46:52 +03:00
|
|
|
['root' => '/core', 'name' => 'AutoComplete#get', 'url' => '/autocomplete/get', 'verb' => 'GET'],
|
2018-07-05 01:41:59 +03:00
|
|
|
['root' => '/core', 'name' => 'WhatsNew#get', 'url' => '/whatsnew', 'verb' => 'GET'],
|
|
|
|
['root' => '/core', 'name' => 'WhatsNew#dismiss', 'url' => '/whatsnew', 'verb' => 'POST'],
|
2018-10-03 12:48:02 +03:00
|
|
|
['root' => '/core', 'name' => 'AppPassword#getAppPassword', 'url' => '/getapppassword', 'verb' => 'GET'],
|
2019-08-27 14:46:06 +03:00
|
|
|
['root' => '/core', 'name' => 'AppPassword#rotateAppPassword', 'url' => '/apppassword/rotate', 'verb' => 'POST'],
|
2019-05-17 10:51:47 +03:00
|
|
|
['root' => '/core', 'name' => 'AppPassword#deleteAppPassword', 'url' => '/apppassword', 'verb' => 'DELETE'],
|
2018-10-16 18:48:16 +03:00
|
|
|
|
2019-01-29 14:23:14 +03:00
|
|
|
['root' => '/collaboration', 'name' => 'CollaborationResources#searchCollections', 'url' => '/resources/collections/search/{filter}', 'verb' => 'GET'],
|
2018-10-16 18:48:16 +03:00
|
|
|
['root' => '/collaboration', 'name' => 'CollaborationResources#listCollection', 'url' => '/resources/collections/{collectionId}', 'verb' => 'GET'],
|
2019-01-29 14:23:14 +03:00
|
|
|
['root' => '/collaboration', 'name' => 'CollaborationResources#renameCollection', 'url' => '/resources/collections/{collectionId}', 'verb' => 'PUT'],
|
2018-10-16 18:48:16 +03:00
|
|
|
['root' => '/collaboration', 'name' => 'CollaborationResources#addResource', 'url' => '/resources/collections/{collectionId}', 'verb' => 'POST'],
|
2019-01-29 14:23:14 +03:00
|
|
|
|
2018-10-16 18:48:16 +03:00
|
|
|
['root' => '/collaboration', 'name' => 'CollaborationResources#removeResource', 'url' => '/resources/collections/{collectionId}', 'verb' => 'DELETE'],
|
|
|
|
['root' => '/collaboration', 'name' => 'CollaborationResources#getCollectionsByResource', 'url' => '/resources/{resourceType}/{resourceId}', 'verb' => 'GET'],
|
2020-09-07 11:47:10 +03:00
|
|
|
['root' => '/collaboration', 'name' => 'CollaborationResources#createCollectionOnResource', 'url' => '/resources/{baseResourceType}/{baseResourceId}', 'verb' => 'POST'],
|
|
|
|
|
|
|
|
// Unified search
|
|
|
|
['root' => '/search', 'name' => 'UnifiedSearch#getProviders', 'url' => '/providers', 'verb' => 'GET'],
|
|
|
|
['root' => '/search', 'name' => 'UnifiedSearch#search', 'url' => '/providers/{providerId}/search', 'verb' => 'GET'],
|
2019-10-14 17:55:39 +03:00
|
|
|
|
2016-08-09 11:21:51 +03:00
|
|
|
],
|
2015-03-03 14:52:27 +03:00
|
|
|
]);
|
2014-05-28 01:09:08 +04:00
|
|
|
|
2013-02-06 20:54:20 +04:00
|
|
|
// Post installation check
|
2014-03-26 01:59:42 +04:00
|
|
|
|
|
|
|
/** @var $this OCP\Route\IRouter */
|
2012-10-02 23:57:51 +04:00
|
|
|
// Core ajax actions
|
2012-10-05 11:42:36 +04:00
|
|
|
// Routing
|
2014-08-19 17:40:08 +04:00
|
|
|
$this->create('core_ajax_update', '/core/ajax/update.php')
|
|
|
|
->actionInclude('core/ajax/update.php');
|