2014-06-06 15:16:47 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-06-25 12:43:55 +03:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-10-06 10:52:19 +03:00
|
|
|
* @author Robin McCorkell <rmccorkell@karoshi.org.uk>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Ross Nicoll <jrn@jrn.me.uk>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2014-06-06 15:16:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
2014-06-06 15:16:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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.
|
2014-06-06 15:16:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2014-06-06 15:16:47 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2014-06-06 15:16:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* 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/>
|
2014-06-06 15:16:47 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
namespace OCA\Files_External\AppInfo;
|
2014-12-19 20:23:24 +03:00
|
|
|
|
2014-10-31 13:41:07 +03:00
|
|
|
/**
|
2015-08-19 00:49:29 +03:00
|
|
|
* @var $this \OCP\Route\IRouter
|
2014-10-31 13:41:07 +03:00
|
|
|
**/
|
2015-08-12 23:43:29 +03:00
|
|
|
\OC_Mount_Config::$app->registerRoutes(
|
2014-10-31 13:41:07 +03:00
|
|
|
$this,
|
|
|
|
array(
|
|
|
|
'resources' => array(
|
|
|
|
'global_storages' => array('url' => '/globalstorages'),
|
|
|
|
'user_storages' => array('url' => '/userstorages'),
|
|
|
|
),
|
|
|
|
'routes' => array(
|
|
|
|
array(
|
|
|
|
'name' => 'Ajax#getSshKeys',
|
2015-08-13 00:20:08 +03:00
|
|
|
'url' => '/ajax/public_key.php',
|
2014-10-31 13:41:07 +03:00
|
|
|
'verb' => 'POST',
|
|
|
|
'requirements' => array()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2014-12-19 20:23:24 +03:00
|
|
|
);
|
|
|
|
|
2015-08-13 00:03:41 +03:00
|
|
|
$this->create('files_external_oauth1', 'ajax/oauth1.php')
|
|
|
|
->actionInclude('files_external/ajax/oauth1.php');
|
2015-08-13 00:09:20 +03:00
|
|
|
$this->create('files_external_oauth2', 'ajax/oauth2.php')
|
|
|
|
->actionInclude('files_external/ajax/oauth2.php');
|
2014-08-22 13:51:39 +04:00
|
|
|
|
2014-12-19 20:23:24 +03:00
|
|
|
|
2014-05-08 17:25:46 +04:00
|
|
|
$this->create('files_external_list_applicable', '/applicable')
|
|
|
|
->actionInclude('files_external/ajax/applicable.php');
|
|
|
|
|
2015-04-18 11:30:02 +03:00
|
|
|
\OCP\API::register('get',
|
2014-06-06 15:16:47 +04:00
|
|
|
'/apps/files_external/api/v1/mounts',
|
|
|
|
array('\OCA\Files\External\Api', 'getUserMounts'),
|
|
|
|
'files_external');
|
|
|
|
|