forked from brantje/nextnote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.php
73 lines (60 loc) · 3.23 KB
/
routes.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* Nextcloud - NextNote
*
*
* @copyright Copyright (c) 2017, Sander Brand ([email protected])
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\NextNote\AppInfo;
/**
* Create your routes in here. The name is the lowercase name of the controller
* without the controller part, the stuff after the hash is the method.
* e.g. page#index -> PageController->index()
*
* The controller class has to be registered in the application.php file since
* it's instantiated in there
*/
$application = new Application();
$application->registerRoutes($this, array('routes' => array(
array('name' => 'page#index', 'url' => '/', 'verb' => 'GET'),
// V2 API
array('name' => 'note_api#preflighted_cors', 'url' => '/api/v2/{path}', 'verb' => 'OPTIONS', 'requirements' => array('path' => '.+')),
//Notes
array('name' => 'note_api#index', 'url' => '/api/v2/note', 'verb' => 'GET'),
array('name' => 'note_api#create', 'url' => '/api/v2/note', 'verb' => 'POST'),
array('name' => 'note_api#get', 'url' => '/api/v2/note/{id}', 'verb' => 'GET'),
array('name' => 'note_api#update', 'url' => '/api/v2/note/{id}', 'verb' => 'PUT'),
array('name' => 'note_api#delete', 'url' => '/api/v2/note/{id}', 'verb' => 'DELETE'),
//Groups
array('name' => 'notebook_api#index', 'url' => '/api/v2/notebook', 'verb' => 'GET'),
array('name' => 'notebook_api#create', 'url' => '/api/v2/notebook', 'verb' => 'POST'),
array('name' => 'notebook_api#get', 'url' => '/api/v2/notebook/{id}', 'verb' => 'GET'),
array('name' => 'notebook_api#update', 'url' => '/api/v2/notebook/{id}', 'verb' => 'PUT'),
array('name' => 'notebook_api#delete', 'url' => '/api/v2/notebook/{id}', 'verb' => 'DELETE'),
//Translations
array('name' => 'translation#getLanguageStrings', 'url' => '/api/v2/language', 'verb' => 'GET'),
//Settings
array('name' => 'settings#saveAdminSetting', 'url' => '/api/v2/settings', 'verb' => 'POST'),
array('name' => 'settings#saveUserSetting', 'url' => '/api/v2/settings-user', 'verb' => 'POST'),
array('name' => 'settings#getSettings', 'url' => '/api/v2/settings', 'verb' => 'GET'),
//Sharing
array('name' => 'share_api#getshares', 'url' => '/api/v2/sharing/shares', 'verb' => 'GET'),
array('name' => 'share_api#share', 'url' => '/api/v2/sharing/shares', 'verb' => 'POST'),
array('name' => 'share_api#unshare', 'url' => '/api/v2/sharing/shares/{itemSource}', 'verb' => 'DELETE', 'requirements' => array('itemSource' => '.+')),
array('name' => 'share_api#setpermissions', 'url' => '/api/v2/sharing/shares/{itemSource}/permissions', 'verb' => 'PUT', 'requirements' => array('itemSource' => '.+')),
)));