nextcloud/apps/files_sharing/appinfo/routes.php

59 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace OCA\Files_Sharing\AppInfo;
use OCA\Files_Sharing\Application;
$application = new Application();
$application->registerRoutes($this, [
'resources' => [
'ExternalShares' => ['url' => '/api/externalShares'],
]
]);
/** @var $this \OCP\Route\IRouter */
$this->create('core_ajax_public_preview', '/publicpreview')->action(
function() {
require_once __DIR__ . '/../ajax/publicpreview.php';
});
2014-08-19 17:22:54 +04:00
$this->create('files_sharing_ajax_list', 'ajax/list.php')
->actionInclude('files_sharing/ajax/list.php');
$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');
2013-09-16 19:04:49 +04:00
// OCS API
//TODO: SET: mail notification, waiting for PR #4689 to be accepted
\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
\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
\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
\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
\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');