Welcome to mirror list, hosted at ThFree Co, Russian Federation.

routes.php « appinfo - github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 579d61bf9ec510a721e4cd495e4c2421ac40055b (plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
/**
 * ownCloud - galleryplus
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Olivier Paroz <owncloud@interfasys.ch>
 *
 * @copyright Olivier Paroz 2014-2015
 */

namespace OCA\GalleryPlus\AppInfo;

/**
 * Application routes
 *
 * 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()
 */
return [
	'routes' => [
		/**
		 * Main routes
		 */
		[
			'name' => 'page#index',
			'url'  => '/',
			'verb' => 'GET'
		],
		// Landing page for public galleries
		[
			'name' => 'page#public_index',
			'url'  => '/s/{token}',
			'verb' => 'GET'
		],
		// Landing page after password entry, for public galleries
		[
			'name'    => 'page#public_index',
			'url'     => '/s/{token}',
			'verb'    => 'POST',
			'postfix' => 'post'
		],
		// An error page which can handle different error codes
		[
			'name' => 'page#error_page',
			'url'  => '/error',
			'verb' => 'GET'
		],
		// The same page, but for POST
		[
			'name'    => 'page#error_page',
			'url'     => '/error',
			'verb'    => 'POST',
			'postfix' => 'post'
		],
		/**
		 * Services
		 */
		// Supported media types. Only called by the slideshow
		[
			'name' => 'preview#get_media_types',
			'url'  => '/mediatypes',
			'verb' => 'GET'
		],
		// All the images of which a preview can be generated
		[
			'name' => 'files#get_files',
			'url'  => '/files',
			'verb' => 'GET'
		],
		// Batch creation of thumbnails
		[
			'name' => 'preview#get_thumbnails',
			'url'  => '/thumbnails',
			'verb' => 'GET'
		],
		// Large preview of a file
		[
			'name' => 'preview#show_preview',
			'url'  => '/preview',
			'verb' => 'GET'
		],
		// Download the file
		[
			'name' => 'preview#download_preview',
			'url'  => '/download',
			'verb' => 'GET'
		],
		/**
		 * Public services
		 */
		[
			'name' => 'public_preview#get_media_types',
			'url'  => '/mediatypes.public',
			'verb' => 'GET'
		],
		[
			'name' => 'public_files#get_files',
			'url'  => '/files.public',
			'verb' => 'GET'
		],
		[
			'name' => 'public_preview#get_thumbnails',
			'url'  => '/thumbnails.public',
			'verb' => 'GET'
		],
		[
			'name' => 'public_preview#show_preview',
			'url'  => '/preview.public',
			'verb' => 'GET'
		],
		[
			'name' => 'public_preview#download_preview',
			'url'  => '/download.public',
			'verb' => 'GET'
		],
		// API, for later
		/*[
			 'name' => 'api#get_types',
			 'url'  => '/api/1.0/types',
			 'verb' => 'GET'
		 ],*/
	]
];