]> Raphaƫl G. Git Repositories - airbundle/blob - Resources/config/routes/rapsys_air.yaml
ec209fdcdd09d2e97164ce3cf5e39775539193dc
[airbundle] / Resources / config / routes / rapsys_air.yaml
1 #https://symfony.com/doc/current/controller.html#controller-request-argument
2 #CRUD: edit, index, new, show, _delete_form, _form
3 #https://symfony.com/doc/current/routing.html#localized-routes-i18n
4 #SCRUD: index, add, edit, delete, view
5
6 #TODO: rename view in show ???
7 rapsys_air:
8 path:
9 en_gb: '/en'
10 fr_fr: '/'
11 controller: Rapsys\AirBundle\Controller\DefaultController::index
12 methods: GET
13
14 rapsys_air_about:
15 path:
16 en_gb: '/en/about'
17 fr_fr: '/a-propos'
18 controller: Rapsys\AirBundle\Controller\DefaultController::about
19 methods: GET
20
21 rapsys_air_contact:
22 path:
23 en_gb: '/en/contact/{id<\d*>?}/{user<[\w-]*>?}'
24 fr_fr: '/contacter/{id<\d*>?}/{user<[\w-]*>?}'
25 controller: Rapsys\AirBundle\Controller\DefaultController::contact
26 methods: GET|POST
27
28 rapsys_air_calendar:
29 path:
30 en_gb: '/en/calendar'
31 fr_fr: '/calendrier'
32 controller: Rapsys\AirBundle\Controller\CalendarController::index
33 methods: GET|POST
34
35 rapsys_air_calendar_callback:
36 path: '/calendar/callback'
37 controller: Rapsys\AirBundle\Controller\CalendarController::callback
38 methods: GET
39
40 rapsys_air_city:
41 path:
42 'en_gb': '/en/city'
43 'fr_fr': '/ville'
44 controller: Rapsys\AirBundle\Controller\LocationController::cities
45 methods: GET|POST
46
47 rapsys_air_city_view:
48 path:
49 'en_gb': '/en/city/{latitude<-?(?:\d*\.)?\d+>}/{longitude<-?(?:\d*\.)?\d+>}/{city<[\w-]+>}'
50 'fr_fr': '/ville/{latitude<-?(?:\d*\.)?\d+>}/{longitude<-?(?:\d*\.)?\d+>}/{city<[\w-]+>}'
51 controller: Rapsys\AirBundle\Controller\LocationController::city
52 methods: GET|POST
53
54 rapsys_air_dance:
55 path:
56 'en_gb': '/en/dance'
57 'fr_fr': '/danse'
58 controller: Rapsys\AirBundle\Controller\DanceController::index
59 methods: GET|POST
60
61 rapsys_air_dance_view:
62 path:
63 'en_gb': '/en/dance/{id<[0-9]+>}/{name<[\w-]+>}/{type<[\w-]+>}'
64 'fr_fr': '/danse/{id<[0-9]+>}/{name<[\w-]+>}/{type<[\w-]+>}'
65 controller: Rapsys\AirBundle\Controller\DanceController::view
66 methods: GET|POST
67
68 rapsys_air_dance_name:
69 path:
70 'en_gb': '/en/dance/{name<[a-zA-Z0-9=_-]+>}/{dance<[\w-]+>}'
71 'fr_fr': '/danse/{name<[a-zA-Z0-9=_-]+>}/{dance<[\w-]+>}'
72 controller: Rapsys\AirBundle\Controller\DanceController::name
73 methods: GET|POST
74
75 rapsys_air_frequently_asked_questions:
76 path:
77 en_gb: '/en/frequently-asked-questions'
78 fr_fr: '/foire-aux-questions'
79 controller: Rapsys\AirBundle\Controller\DefaultController::frequentlyAskedQuestions
80 methods: GET
81
82 rapsys_air_organizer_regulation:
83 path:
84 en_gb: '/en/organizer-regulation'
85 fr_fr: '/reglement-organisateur'
86 controller: Rapsys\AirBundle\Controller\DefaultController::organizerRegulation
87 methods: GET
88
89 rapsys_air_terms_of_service:
90 path:
91 en_gb: '/en/terms-of-service'
92 fr_fr: '/conditions-generales-d-utilisation'
93 controller: Rapsys\AirBundle\Controller\DefaultController::termsOfService
94 methods: GET
95
96 rapsys_air_location:
97 path:
98 en_gb: '/en/location'
99 fr_fr: '/emplacement'
100 controller: Rapsys\AirBundle\Controller\LocationController::index
101 methods: GET|POST
102
103 rapsys_air_location_view:
104 path:
105 en_gb: '/en/location/{id<\d+>}/{location<[\w-]+>?}'
106 fr_fr: '/emplacement/{id<\d+>}/{location<[\w-]+>?}'
107 controller: Rapsys\AirBundle\Controller\LocationController::view
108 methods: GET
109
110 rapsys_air_application_add:
111 path:
112 en_gb: '/en/application'
113 fr_fr: '/reservation'
114 controller: Rapsys\AirBundle\Controller\ApplicationController::add
115 methods: GET|POST
116
117 rapsys_air_session:
118 path:
119 en_gb: '/en/session'
120 fr_fr: '/seance'
121 controller: Rapsys\AirBundle\Controller\SessionController::index
122 methods: GET
123
124 rapsys_air_session_tangoargentin:
125 path:
126 en_gb: '/en/session/tangoargentin.{!_format?json}'
127 fr_fr: '/seance/tangoargentin.{!_format?json}'
128 controller: Rapsys\AirBundle\Controller\SessionController::tangoargentin
129 methods: GET
130
131 rapsys_air_session_view:
132 path:
133 en_gb: '/en/session/{id<\d+>}/{location<[\w-]+>?}/{dance<[\w-]*>?}/{user<[\w-]*>?}'
134 fr_fr: '/seance/{id<\d+>}/{location<[\w-]+>?}/{dance<[\w-]*>?}/{user<[\w-]*>?}'
135 controller: Rapsys\AirBundle\Controller\SessionController::view
136 methods: GET|POST
137
138 rapsys_air_snippet_add:
139 path:
140 en_gb: '/en/snippet'
141 fr_fr: '/extrait'
142 controller: Rapsys\AirBundle\Controller\SnippetController::add
143 methods: POST
144
145 rapsys_air_snippet_edit:
146 path:
147 en_gb: '/en/snippet/{id<\d+>}'
148 fr_fr: '/extrait/{id<\d+>}'
149 controller: Rapsys\AirBundle\Controller\SnippetController::edit
150 methods: POST
151
152 rapsys_air_user:
153 path:
154 en_gb: '/en/user'
155 fr_fr: '/utilisateur'
156 controller: Rapsys\AirBundle\Controller\DefaultController::userIndex
157 methods: GET
158
159 rapsys_air_user_view:
160 path:
161 en_gb: '/en/user/{id<\d+>}/{user<[\w-]+>?}'
162 fr_fr: '/utilisateur/{id<\d+>}/{user<[\w-]+>?}'
163 controller: Rapsys\AirBundle\Controller\DefaultController::userView
164 methods: GET|POST
165
166 rapsys_air_user_milongaraphael:
167 path:
168 en_gb: '/en/milonga-raphael'
169 fr_fr: '/milonga-raphael'
170 controller: Rapsys\AirBundle\Controller\DefaultController::userView
171 defaults:
172 # default parameters
173 id: 1
174 user: 'milonga-raphael'
175
176 rapsys_user_confirm:
177 path:
178 en_gb: '/en/confirm/{hash}/{mail}'
179 fr_fr: '/confirmer/{hash}/{mail}'
180 controller: Rapsys\UserBundle\Controller\DefaultController::confirm
181 requirements:
182 mail: '[a-zA-Z0-9=_-]+'
183 hash: '[a-zA-Z0-9=_-]+'
184 methods: GET|POST
185
186 rapsys_user_edit:
187 path:
188 en_gb: '/en/user/{hash}/{mail}'
189 fr_fr: '/utilisateur/{hash}/{mail}'
190 controller: Rapsys\AirBundle\Controller\UserController::edit
191 requirements:
192 mail: '[a-zA-Z0-9=_-]+'
193 hash: '[a-zA-Z0-9=_-]+'
194 methods: GET|POST
195
196 rapsys_user_login:
197 path:
198 en_gb: '/en/login/{hash}/{mail}'
199 fr_fr: '/connecter/{hash}/{mail}'
200 controller: Rapsys\UserBundle\Controller\DefaultController::login
201 defaults:
202 mail: ~
203 hash: ~
204 requirements:
205 mail: '[a-zA-Z0-9=_-]+'
206 hash: '[a-zA-Z0-9=_-]+'
207 methods: GET|POST
208
209 rapsys_user_logout:
210 path:
211 en_gb: '/en/logout'
212 fr_fr: '/deconnecter'
213 methods: GET
214
215 rapsys_user_recover:
216 path:
217 en_gb: '/en/recover/{hash}/{pass}/{mail}'
218 fr_fr: '/recuperer/{hash}/{pass}/{mail}'
219 controller: Rapsys\UserBundle\Controller\DefaultController::recover
220 defaults:
221 mail: ~
222 pass: ~
223 hash: ~
224 requirements:
225 mail: '[a-zA-Z0-9=_-]+'
226 pass: '[a-zA-Z0-9=_-]+'
227 hash: '[a-zA-Z0-9=_-]+'
228 methods: GET|POST
229
230 rapsys_user_register:
231 path:
232 en_gb: '/en/register/{hash}/{field}/{mail}'
233 fr_fr: '/enregistrer/{hash}/{field}/{mail}'
234 controller: Rapsys\UserBundle\Controller\DefaultController::register
235 defaults:
236 mail: ~
237 field: ~
238 hash: ~
239 requirements:
240 mail: '[a-zA-Z0-9=_-]+'
241 field: '[a-zA-Z0-9=_-]+'
242 hash: '[a-zA-Z0-9=_-]+'
243 methods: GET|POST