2013-08-19 11:24:07 +00:00
|
|
|
<?php
|
2015-03-26 10:44:34 +00:00
|
|
|
/**
|
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Georg Ehrke <georg@owncloud.com>
|
2015-06-25 09:43:55 +00:00
|
|
|
* @author Joas Schilling <nickvergessen@owncloud.com>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
2015-06-25 09:43:55 +00:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 10:44:34 +00:00
|
|
|
* @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 18:51:04 +00:00
|
|
|
namespace OCA\Files_Sharing\AppInfo;
|
|
|
|
|
2015-04-20 14:59:20 +00:00
|
|
|
use OCP\API;
|
|
|
|
|
2014-12-04 18:51:04 +00:00
|
|
|
$application = new Application();
|
|
|
|
$application->registerRoutes($this, [
|
|
|
|
'resources' => [
|
|
|
|
'ExternalShares' => ['url' => '/api/externalShares'],
|
2015-08-22 12:36:01 +00:00
|
|
|
],
|
|
|
|
'routes' => [
|
|
|
|
[
|
|
|
|
'name' => 'externalShares#testRemote',
|
|
|
|
'url' => '/testremote',
|
|
|
|
'verb' => 'GET'
|
|
|
|
],
|
|
|
|
],
|
2014-12-04 18:51:04 +00:00
|
|
|
]);
|
|
|
|
|
2014-03-10 13:04:58 +00:00
|
|
|
/** @var $this \OCP\Route\IRouter */
|
2014-04-29 15:07:10 +00:00
|
|
|
$this->create('core_ajax_public_preview', '/publicpreview')->action(
|
|
|
|
function() {
|
|
|
|
require_once __DIR__ . '/../ajax/publicpreview.php';
|
|
|
|
});
|
2013-09-04 12:32:05 +00:00
|
|
|
|
2014-08-19 13:22:54 +00:00
|
|
|
$this->create('files_sharing_ajax_list', 'ajax/list.php')
|
|
|
|
->actionInclude('files_sharing/ajax/list.php');
|
2014-09-21 16:21:42 +00:00
|
|
|
$this->create('files_sharing_ajax_publicpreview', 'ajax/publicpreview.php')
|
|
|
|
->actionInclude('files_sharing/ajax/publicpreview.php');
|
2014-08-19 13:22:54 +00: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');
|
2014-12-04 18:51:04 +00:00
|
|
|
|
2013-09-16 15:04:49 +00:00
|
|
|
// OCS API
|
|
|
|
|
|
|
|
//TODO: SET: mail notification, waiting for PR #4689 to be accepted
|
2013-09-04 12:32:05 +00:00
|
|
|
|
2015-04-18 08:30:02 +00:00
|
|
|
API::register('get',
|
2013-09-17 13:27:10 +00:00
|
|
|
'/apps/files_sharing/api/v1/shares',
|
2014-11-24 14:31:52 +00:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'getAllShares'),
|
2013-09-17 09:53:06 +00:00
|
|
|
'files_sharing');
|
2013-09-06 08:49:21 +00:00
|
|
|
|
2015-04-18 08:30:02 +00:00
|
|
|
API::register('post',
|
2013-09-17 13:27:10 +00:00
|
|
|
'/apps/files_sharing/api/v1/shares',
|
2014-11-24 14:31:52 +00:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'createShare'),
|
2013-09-17 09:53:06 +00:00
|
|
|
'files_sharing');
|
2013-09-06 08:49:21 +00:00
|
|
|
|
2015-04-18 08:30:02 +00:00
|
|
|
API::register('get',
|
2013-09-17 13:27:10 +00:00
|
|
|
'/apps/files_sharing/api/v1/shares/{id}',
|
2014-11-24 14:31:52 +00:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'getShare'),
|
2013-09-17 13:27:10 +00:00
|
|
|
'files_sharing');
|
2013-09-06 08:49:21 +00:00
|
|
|
|
2015-04-18 08:30:02 +00:00
|
|
|
API::register('put',
|
2013-09-17 13:27:10 +00:00
|
|
|
'/apps/files_sharing/api/v1/shares/{id}',
|
2014-11-24 14:31:52 +00:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'updateShare'),
|
2013-09-17 13:27:10 +00:00
|
|
|
'files_sharing');
|
2013-09-06 14:00:01 +00:00
|
|
|
|
2015-04-18 08:30:02 +00:00
|
|
|
API::register('delete',
|
2013-09-17 13:27:10 +00:00
|
|
|
'/apps/files_sharing/api/v1/shares/{id}',
|
2014-11-24 14:31:52 +00:00
|
|
|
array('\OCA\Files_Sharing\API\Local', 'deleteShare'),
|
2013-09-17 13:27:10 +00:00
|
|
|
'files_sharing');
|
2015-02-09 13:23:18 +00:00
|
|
|
|
2015-06-01 13:05:04 +00:00
|
|
|
API::register('get',
|
|
|
|
'/apps/files_sharing/api/v1/remote_shares',
|
|
|
|
array('\OCA\Files_Sharing\API\Remote', 'getOpenShares'),
|
|
|
|
'files_sharing');
|
|
|
|
|
|
|
|
API::register('post',
|
|
|
|
'/apps/files_sharing/api/v1/remote_shares/{id}',
|
|
|
|
array('\OCA\Files_Sharing\API\Remote', 'acceptShare'),
|
|
|
|
'files_sharing');
|
|
|
|
|
|
|
|
API::register('delete',
|
|
|
|
'/apps/files_sharing/api/v1/remote_shares/{id}',
|
|
|
|
array('\OCA\Files_Sharing\API\Remote', 'declineShare'),
|
|
|
|
'files_sharing');
|
|
|
|
|
2015-08-08 20:15:12 +00:00
|
|
|
$sharees = new \OCA\Files_Sharing\API\Sharees(\OC::$server->getGroupManager(),
|
|
|
|
\OC::$server->getUserManager(),
|
|
|
|
\OC::$server->getContactsManager(),
|
2015-08-12 12:23:48 +00:00
|
|
|
\OC::$server->getConfig(),
|
2015-08-08 20:15:12 +00:00
|
|
|
\OC::$server->getUserSession(),
|
2015-08-13 09:06:03 +00:00
|
|
|
\OC::$server->getURLGenerator(),
|
2015-08-26 07:40:20 +00:00
|
|
|
\OC::$server->getRequest(),
|
|
|
|
\OC::$server->getLogger());
|
2015-08-08 20:15:12 +00:00
|
|
|
|
|
|
|
API::register('get',
|
|
|
|
'/apps/files_sharing/api/v1/sharees',
|
|
|
|
[$sharees, 'search'],
|
|
|
|
'files_sharing', API::USER_AUTH);
|