2012-08-12 18:52:36 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Christoph Wurst <christoph@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
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 Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @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-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
|
|
|
|
|
|
|
$application = new Application();
|
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'],
|
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'],
|
2017-04-24 22:11:48 +03:00
|
|
|
['name' => 'ClientFlowLogin#showAuthPickerPage', 'url' => '/login/flow', 'verb' => 'GET'],
|
|
|
|
['name' => 'ClientFlowLogin#redirectPage', 'url' => '/login/flow/redirect', 'verb' => 'GET'],
|
|
|
|
['name' => 'ClientFlowLogin#generateAppPassword', 'url' => '/login/flow', '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'],
|
2016-10-25 21:49:48 +03:00
|
|
|
['name' => 'OCJS#getConfig', 'url' => '/core/js/oc.js', 'verb' => 'GET'],
|
2016-10-14 20:27:14 +03:00
|
|
|
['name' => 'Preview#getPreview', 'url' => '/core/preview', 'verb' => 'GET'],
|
|
|
|
['name' => 'Preview#getPreview', 'url' => '/core/preview.png', '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'],
|
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'],
|
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-28 22:28:44 +04:00
|
|
|
// Search
|
2015-01-13 18:42:04 +03:00
|
|
|
$this->create('search_ajax_search', '/core/search')
|
|
|
|
->actionInclude('core/search/ajax/search.php');
|
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');
|
2013-08-26 18:46:55 +04:00
|
|
|
|
2016-05-04 11:28:06 +03:00
|
|
|
// File routes
|
2016-08-19 09:15:30 +03:00
|
|
|
$this->create('files.viewcontroller.showFile', '/f/{fileid}')->action(function($urlParams) {
|
2016-05-04 11:28:06 +03:00
|
|
|
$app = new \OCA\Files\AppInfo\Application($urlParams);
|
2016-08-19 09:15:30 +03:00
|
|
|
$app->dispatch('ViewController', 'index');
|
2016-05-04 11:28:06 +03:00
|
|
|
});
|
|
|
|
|
2017-03-24 13:52:42 +03:00
|
|
|
// Call routes
|
|
|
|
$this->create('spreed.pagecontroller.showCall', '/call/{token}')->action(function($urlParams) {
|
2017-03-24 17:02:49 +03:00
|
|
|
if (class_exists(\OCA\Spreed\AppInfo\Application::class, false)) {
|
|
|
|
$app = new \OCA\Spreed\AppInfo\Application($urlParams);
|
|
|
|
$app->dispatch('PageController', 'index');
|
|
|
|
} else {
|
|
|
|
throw new \OC\HintException('App spreed is not enabled');
|
|
|
|
}
|
2017-03-24 13:52:42 +03:00
|
|
|
});
|
|
|
|
|
2014-08-03 13:31:28 +04:00
|
|
|
// Sharing routes
|
2014-10-15 13:58:44 +04:00
|
|
|
$this->create('files_sharing.sharecontroller.showShare', '/s/{token}')->action(function($urlParams) {
|
2017-03-24 17:02:49 +03:00
|
|
|
if (class_exists(\OCA\Files_Sharing\AppInfo\Application::class, false)) {
|
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
|
|
|
$app->dispatch('ShareController', 'showShare');
|
|
|
|
} else {
|
|
|
|
throw new \OC\HintException('App file sharing is not enabled');
|
|
|
|
}
|
2014-10-15 13:58:44 +04:00
|
|
|
});
|
|
|
|
$this->create('files_sharing.sharecontroller.authenticate', '/s/{token}/authenticate')->post()->action(function($urlParams) {
|
2017-03-24 17:02:49 +03:00
|
|
|
if (class_exists(\OCA\Files_Sharing\AppInfo\Application::class, false)) {
|
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
|
|
|
$app->dispatch('ShareController', 'authenticate');
|
|
|
|
} else {
|
|
|
|
throw new \OC\HintException('App file sharing is not enabled');
|
|
|
|
}
|
2014-10-15 13:58:44 +04:00
|
|
|
});
|
|
|
|
$this->create('files_sharing.sharecontroller.showAuthenticate', '/s/{token}/authenticate')->get()->action(function($urlParams) {
|
2017-03-24 17:02:49 +03:00
|
|
|
if (class_exists(\OCA\Files_Sharing\AppInfo\Application::class, false)) {
|
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
|
|
|
$app->dispatch('ShareController', 'showAuthenticate');
|
|
|
|
} else {
|
|
|
|
throw new \OC\HintException('App file sharing is not enabled');
|
|
|
|
}
|
2014-10-15 13:58:44 +04:00
|
|
|
});
|
|
|
|
$this->create('files_sharing.sharecontroller.downloadShare', '/s/{token}/download')->get()->action(function($urlParams) {
|
2017-03-24 17:02:49 +03:00
|
|
|
if (class_exists(\OCA\Files_Sharing\AppInfo\Application::class, false)) {
|
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
|
|
|
$app->dispatch('ShareController', 'downloadShare');
|
|
|
|
} else {
|
|
|
|
throw new \OC\HintException('App file sharing is not enabled');
|
|
|
|
}
|
2014-10-15 13:58:44 +04:00
|
|
|
});
|
2014-08-03 13:31:28 +04:00
|
|
|
|
2013-02-26 22:34:46 +04:00
|
|
|
// used for heartbeat
|
|
|
|
$this->create('heartbeat', '/heartbeat')->action(function(){
|
|
|
|
// do nothing
|
2013-08-18 13:02:08 +04:00
|
|
|
});
|