2012-08-12 18:52:36 +04:00
|
|
|
<?php
|
|
|
|
/**
|
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>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Georg Ehrke <georg@ownCloud.com>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* @author Victor Dubiniuk <dubiniuk@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, 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/>
|
|
|
|
*
|
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'],
|
|
|
|
]
|
|
|
|
]);
|
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-02 23:57:51 +04:00
|
|
|
// AppConfig
|
|
|
|
$this->create('core_ajax_appconfig', '/core/ajax/appconfig.php')
|
|
|
|
->actionInclude('core/ajax/appconfig.php');
|
|
|
|
// Share
|
|
|
|
$this->create('core_ajax_share', '/core/ajax/share.php')
|
|
|
|
->actionInclude('core/ajax/share.php');
|
2013-10-04 19:21:52 +04:00
|
|
|
// Tags
|
|
|
|
$this->create('core_tags_tags', '/tags/{type}')
|
|
|
|
->get()
|
|
|
|
->action('OC\Core\Tags\Controller', 'getTags')
|
|
|
|
->requirements(array('type'));
|
|
|
|
$this->create('core_tags_favorites', '/tags/{type}/favorites')
|
|
|
|
->get()
|
|
|
|
->action('OC\Core\Tags\Controller', 'getFavorites')
|
|
|
|
->requirements(array('type'));
|
|
|
|
$this->create('core_tags_ids_for_tag', '/tags/{type}/ids')
|
|
|
|
->get()
|
|
|
|
->action('OC\Core\Tags\Controller', 'getIdsForTag')
|
|
|
|
->requirements(array('type'));
|
|
|
|
$this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/')
|
|
|
|
->post()
|
|
|
|
->action('OC\Core\Tags\Controller', 'favorite')
|
|
|
|
->requirements(array('type', 'id'));
|
2013-10-04 21:55:03 +04:00
|
|
|
$this->create('core_tags_unfavorite', '/tags/{type}/unfavorite/{id}/')
|
2013-10-04 19:21:52 +04:00
|
|
|
->post()
|
|
|
|
->action('OC\Core\Tags\Controller', 'unFavorite')
|
|
|
|
->requirements(array('type', 'id'));
|
|
|
|
$this->create('core_tags_tag', '/tags/{type}/tag/{id}/')
|
|
|
|
->post()
|
|
|
|
->action('OC\Core\Tags\Controller', 'tagAs')
|
|
|
|
->requirements(array('type', 'id'));
|
|
|
|
$this->create('core_tags_untag', '/tags/{type}/untag/{id}/')
|
|
|
|
->post()
|
|
|
|
->action('OC\Core\Tags\Controller', 'unTag')
|
|
|
|
->requirements(array('type', 'id'));
|
|
|
|
$this->create('core_tags_add', '/tags/{type}/add')
|
|
|
|
->post()
|
|
|
|
->action('OC\Core\Tags\Controller', 'addTag')
|
|
|
|
->requirements(array('type'));
|
|
|
|
$this->create('core_tags_delete', '/tags/{type}/delete')
|
|
|
|
->post()
|
|
|
|
->action('OC\Core\Tags\Controller', 'deleteTags')
|
|
|
|
->requirements(array('type'));
|
2013-01-21 02:46:46 +04:00
|
|
|
// oC JS config
|
2013-12-31 17:34:28 +04:00
|
|
|
$this->create('js_config', '/core/js/oc.js')
|
2013-01-21 02:46:46 +04:00
|
|
|
->actionInclude('core/js/config.php');
|
2012-10-05 11:42:36 +04:00
|
|
|
// Routing
|
2014-04-29 19:07:10 +04:00
|
|
|
$this->create('core_ajax_preview', '/core/preview')
|
|
|
|
->actionInclude('core/ajax/preview.php');
|
2013-04-25 13:42:40 +04:00
|
|
|
$this->create('core_ajax_preview', '/core/preview.png')
|
2013-07-30 14:29:12 +04:00
|
|
|
->actionInclude('core/ajax/preview.php');
|
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
|
|
|
|
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) {
|
2015-04-28 15:41:14 +03:00
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
2014-10-15 13:58:44 +04:00
|
|
|
$app->dispatch('ShareController', 'showShare');
|
|
|
|
});
|
|
|
|
$this->create('files_sharing.sharecontroller.authenticate', '/s/{token}/authenticate')->post()->action(function($urlParams) {
|
2015-04-28 15:41:14 +03:00
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
2014-10-15 13:58:44 +04:00
|
|
|
$app->dispatch('ShareController', 'authenticate');
|
|
|
|
});
|
|
|
|
$this->create('files_sharing.sharecontroller.showAuthenticate', '/s/{token}/authenticate')->get()->action(function($urlParams) {
|
2015-04-28 15:41:14 +03:00
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
2014-10-15 13:58:44 +04:00
|
|
|
$app->dispatch('ShareController', 'showAuthenticate');
|
|
|
|
});
|
|
|
|
$this->create('files_sharing.sharecontroller.downloadShare', '/s/{token}/download')->get()->action(function($urlParams) {
|
2015-04-28 15:41:14 +03:00
|
|
|
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);
|
2014-10-15 13:58:44 +04:00
|
|
|
$app->dispatch('ShareController', 'downloadShare');
|
|
|
|
});
|
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
|
|
|
});
|