2013-08-19 15:24:07 +04:00
|
|
|
<?php
|
2015-03-26 13:44:34 +03:00
|
|
|
/**
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
*
|
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2014-12-04 21:51:04 +03:00
|
|
|
namespace OCA\Files_Sharing\AppInfo;
|
|
|
|
|
|
|
|
use OCA\Files_Sharing\Application;
|
|
|
|
|
|
|
|
$application = new Application();
|
|
|
|
$application->registerRoutes($this, [
|
|
|
|
'resources' => [
|
|
|
|
'ExternalShares' => ['url' => '/api/externalShares'],
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
|
2014-03-10 17:04:58 +04:00
|
|
|
/** @var $this \OCP\Route\IRouter */
|
2014-04-29 19:07:10 +04:00
|
|
|
$this->create('core_ajax_public_preview', '/publicpreview')->action(
|
|
|
|
function() {
|
|
|
|
require_once __DIR__ . '/../ajax/publicpreview.php';
|
|
|
|
});
|
2013-09-04 16:32:05 +04:00
|
|
|
|
2014-08-19 17:22:54 +04:00
|
|
|
$this->create('files_sharing_ajax_list', 'ajax/list.php')
|
|
|
|
->actionInclude('files_sharing/ajax/list.php');
|
2014-09-21 20:21:42 +04:00
|
|
|
$this->create('files_sharing_ajax_publicpreview', 'ajax/publicpreview.php')
|
|
|
|
->actionInclude('files_sharing/ajax/publicpreview.php');
|
2014-08-19 17:22:54 +04:00
|
|
|
$this->create('sharing_external_shareinfo', '/shareinfo')
|
|
|
|
->actionInclude('files_sharing/ajax/shareinfo.php');
|
|
|
|
$this->create('sharing_external_add', '/external')
|
|
|
|
->actionInclude('files_sharing/ajax/external.php');
|
|
|
|
$this->create('sharing_external_test_remote', '/testremote')
|
|
|
|
->actionInclude('files_sharing/ajax/testremote.php');
|
2014-12-04 21:51:04 +03:00
|
|
|
|
2013-09-16 19:04:49 +04:00
|
|
|
// OCS API
|
|
|
|
|
|
|
|
//TODO: SET: mail notification, waiting for PR #4689 to be accepted
|
2013-09-04 16:32:05 +04:00
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
\OC_API::register('get',
|
2013-09-17 17:27:10 +04:00
|
|
|
'/apps/files_sharing/api/v1/shares',
|
2014-11-24 17:31:52 +03:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'getAllShares'),
|
2013-09-17 13:53:06 +04:00
|
|
|
'files_sharing');
|
2013-09-06 12:49:21 +04:00
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
\OC_API::register('post',
|
2013-09-17 17:27:10 +04:00
|
|
|
'/apps/files_sharing/api/v1/shares',
|
2014-11-24 17:31:52 +03:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'createShare'),
|
2013-09-17 13:53:06 +04:00
|
|
|
'files_sharing');
|
2013-09-06 12:49:21 +04:00
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
\OC_API::register('get',
|
2013-09-17 17:27:10 +04:00
|
|
|
'/apps/files_sharing/api/v1/shares/{id}',
|
2014-11-24 17:31:52 +03:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'getShare'),
|
2013-09-17 17:27:10 +04:00
|
|
|
'files_sharing');
|
2013-09-06 12:49:21 +04:00
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
\OC_API::register('put',
|
2013-09-17 17:27:10 +04:00
|
|
|
'/apps/files_sharing/api/v1/shares/{id}',
|
2014-11-24 17:31:52 +03:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'updateShare'),
|
2013-09-17 17:27:10 +04:00
|
|
|
'files_sharing');
|
2013-09-06 18:00:01 +04:00
|
|
|
|
2014-12-04 21:51:04 +03:00
|
|
|
\OC_API::register('delete',
|
2013-09-17 17:27:10 +04:00
|
|
|
'/apps/files_sharing/api/v1/shares/{id}',
|
2014-11-24 17:31:52 +03:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'deleteShare'),
|
2013-09-17 17:27:10 +04:00
|
|
|
'files_sharing');
|
2015-02-09 16:23:18 +03:00
|
|
|
|
|
|
|
// Register with the capabilities API
|
|
|
|
\OC_API::register('get',
|
|
|
|
'/cloud/capabilities',
|
|
|
|
array('OCA\Files_Sharing\Capabilities', 'getCapabilities'),
|
|
|
|
'files_sharing', \OC_API::USER_AUTH);
|