2013-08-19 11:24:07 +00:00
|
|
|
<?php
|
2014-10-15 09:58:44 +00:00
|
|
|
|
2014-12-04 18:51:04 +00: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 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');
|
|
|
|
$this->create('sharing_external_test_remote', '/testremote')
|
|
|
|
->actionInclude('files_sharing/ajax/testremote.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
|
|
|
|
2014-12-04 18:51:04 +00:00
|
|
|
\OC_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
|
|
|
|
2014-12-04 18:51:04 +00:00
|
|
|
\OC_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
|
|
|
|
2014-12-04 18:51:04 +00:00
|
|
|
\OC_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
|
|
|
|
2014-12-04 18:51:04 +00:00
|
|
|
\OC_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
|
|
|
|
2014-12-04 18:51:04 +00:00
|
|
|
\OC_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');
|