2013-08-19 15:24:07 +04:00
|
|
|
<?php
|
2014-10-15 13:58:44 +04:00
|
|
|
|
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');
|