@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * @var array |
62 | 62 | */ |
63 | 63 | |
64 | - protected $statics = []; |
|
64 | + protected $statics = []; |
|
65 | 65 | |
66 | 66 | /** |
67 | 67 | * The dynamic routes have parameters and are stored in a hashtable that every cell have |
@@ -123,10 +123,10 @@ discard block |
||
123 | 123 | return new Group($group); |
124 | 124 | } |
125 | 125 | |
126 | - public function get ($pattern, $action) { return $this->set("get" , $pattern, $action); } |
|
127 | - public function post ($pattern, $action) { return $this->set("post" , $pattern, $action); } |
|
128 | - public function put ($pattern, $action) { return $this->set("put" , $pattern, $action); } |
|
129 | - public function patch ($pattern, $action) { return $this->set("patch" , $pattern, $action); } |
|
126 | + public function get($pattern, $action) { return $this->set("get", $pattern, $action); } |
|
127 | + public function post($pattern, $action) { return $this->set("post", $pattern, $action); } |
|
128 | + public function put($pattern, $action) { return $this->set("put", $pattern, $action); } |
|
129 | + public function patch($pattern, $action) { return $this->set("patch", $pattern, $action); } |
|
130 | 130 | public function delete($pattern, $action) { return $this->set("delete", $pattern, $action); } |
131 | 131 | |
132 | 132 | /** |
@@ -33,338 +33,338 @@ |
||
33 | 33 | class Collector |
34 | 34 | { |
35 | 35 | |
36 | - use Collectors\ControllerCollectorTrait; |
|
37 | - use Collectors\ResourceCollectorTrait; |
|
38 | - |
|
39 | - /** |
|
40 | - * These regex define the structure of a dynamic segment in a pattern. |
|
41 | - * |
|
42 | - * @var string |
|
43 | - */ |
|
44 | - |
|
45 | - const DYNAMIC_REGEX = "{\s*(\w*)\s*(?::\s*([^{}]*(?:{(?-1)}*)*))?\s*}"; |
|
46 | - |
|
47 | - |
|
48 | - /** |
|
49 | - * All the supported http methods separated by spaces. |
|
50 | - * |
|
51 | - * @var string |
|
52 | - */ |
|
53 | - |
|
54 | - const HTTP_METHODS = "get post put patch delete"; |
|
55 | - |
|
56 | - /** |
|
57 | - * The static routes are simple stored in a multidimensional array, the first |
|
58 | - * dimension is indexed by an http method and hold an array indexed with the patterns |
|
59 | - * and holding the route. ex. [METHOD => [PATTERN => ROUTE]] |
|
60 | - * |
|
61 | - * @var array |
|
62 | - */ |
|
63 | - |
|
64 | - protected $statics = []; |
|
65 | - |
|
66 | - /** |
|
67 | - * The dynamic routes have parameters and are stored in a hashtable that every cell have |
|
68 | - * an array with route patterns as indexes and routes as values. ex. [INDEX => [PATTERN => ROUTE]] |
|
69 | - * |
|
70 | - * @var array |
|
71 | - */ |
|
72 | - |
|
73 | - protected $dynamics = []; |
|
74 | - |
|
75 | - /** |
|
76 | - * Some regex wildcards for easily definition of dynamic routes. ps. all keys and values must start with : |
|
77 | - * |
|
78 | - * @var array |
|
79 | - */ |
|
80 | - |
|
81 | - protected $wildcards = [ |
|
82 | - ":uid" => ":uid-[a-zA-Z0-9]", |
|
83 | - ":slug" => ":[a-z0-9-]", |
|
84 | - ":string" => ":\w", |
|
85 | - ":int" => ":\d", |
|
86 | - ":integer" => ":\d", |
|
87 | - ":float" => ":[-+]?\d*?[.]?\d", |
|
88 | - ":double" => ":[-+]?\d*?[.]?\d", |
|
89 | - ":hex" => ":0[xX][0-9a-fA-F]", |
|
90 | - ":octal" => ":0[1-7][0-7]", |
|
91 | - ":bool" => ":1|0|true|false|yes|no", |
|
92 | - ":boolean" => ":1|0|true|false|yes|no", |
|
93 | - ]; |
|
94 | - |
|
95 | - /** |
|
96 | - * @param string $method |
|
97 | - * @param string $pattern |
|
98 | - * @param string|array|\Closure $action |
|
99 | - * |
|
100 | - * @throws BadRouteException |
|
101 | - * @throws MethodNotSupportedException |
|
102 | - * |
|
103 | - * @return Group |
|
104 | - */ |
|
105 | - |
|
106 | - public function set($method, $pattern, $action) |
|
107 | - { |
|
108 | - $method = $this->parseMethod($method); |
|
109 | - $patterns = $this->parsePattern($pattern); |
|
110 | - $group = new Group; |
|
111 | - |
|
112 | - foreach ($patterns as $pattern) |
|
113 | - { |
|
114 | - $route = new Route($this, $method, $pattern, $action); |
|
115 | - $group->setRoute($route); |
|
116 | - |
|
117 | - if (strpos($pattern, "{") !== false) { |
|
118 | - $index = $this->getDynamicIndex($method, $pattern); |
|
119 | - $this->dynamics[$index][$pattern] = $route; |
|
120 | - } else $this->statics[$method][$pattern] = $route; |
|
121 | - } |
|
122 | - |
|
123 | - return $group; |
|
124 | - } |
|
125 | - |
|
126 | - public function get ($pattern, $action) { return $this->set("get" , $pattern, $action); } |
|
127 | - public function post ($pattern, $action) { return $this->set("post" , $pattern, $action); } |
|
128 | - public function put ($pattern, $action) { return $this->set("put" , $pattern, $action); } |
|
129 | - public function patch ($pattern, $action) { return $this->set("patch" , $pattern, $action); } |
|
130 | - public function delete($pattern, $action) { return $this->set("delete", $pattern, $action); } |
|
131 | - |
|
132 | - /** |
|
133 | - * Insert a route into several http methods. |
|
134 | - * |
|
135 | - * @param string[] $methods |
|
136 | - * @param string $pattern |
|
137 | - * @param string|array|\Closure $action |
|
138 | - * |
|
139 | - * @return Group |
|
140 | - */ |
|
141 | - |
|
142 | - public function match(array $methods, $pattern, $action) |
|
143 | - { |
|
144 | - $group = new Group; |
|
145 | - foreach ($methods as $method) |
|
146 | - $group->set($this->set($method, $pattern, $action)); |
|
147 | - return $group; |
|
148 | - } |
|
149 | - |
|
150 | - /** |
|
151 | - * Insert a route into every http method supported. |
|
152 | - * |
|
153 | - * @param string $pattern |
|
154 | - * @param string|array|\Closure $action |
|
155 | - * |
|
156 | - * @return Group |
|
157 | - */ |
|
158 | - |
|
159 | - public function any($pattern, $action) |
|
160 | - { |
|
161 | - return $this->match(explode(" ", self::HTTP_METHODS), $pattern, $action); |
|
162 | - } |
|
163 | - |
|
164 | - /** |
|
165 | - * Insert a route into every http method supported but the given ones. |
|
166 | - * |
|
167 | - * @param string[] $methods |
|
168 | - * @param string $pattern |
|
169 | - * @param string|array|\Closure $action |
|
170 | - * |
|
171 | - * @return Group |
|
172 | - */ |
|
173 | - |
|
174 | - public function except(array $methods, $pattern, $action) |
|
175 | - { |
|
176 | - return $this->match(array_diff(explode(" ", self::HTTP_METHODS), $methods), $pattern, $action); |
|
177 | - } |
|
178 | - |
|
179 | - /** |
|
180 | - * Group all given routes. |
|
181 | - * |
|
182 | - * @param Route[] $routes |
|
183 | - * @return Group |
|
184 | - */ |
|
185 | - |
|
186 | - public function group(array $routes) |
|
187 | - { |
|
188 | - $group = new Group; |
|
189 | - foreach ($routes as $route) |
|
190 | - $group->set($route); |
|
191 | - return $group; |
|
192 | - } |
|
193 | - |
|
194 | - /** |
|
195 | - * Remove a route from collector. |
|
196 | - * |
|
197 | - * @param string $method |
|
198 | - * @param string $pattern |
|
199 | - */ |
|
200 | - |
|
201 | - public function forget($method, $pattern) |
|
202 | - { |
|
203 | - if (strpos($pattern, "{") === false) { |
|
204 | - unset($this->statics[$method][$pattern]); |
|
205 | - } else unset($this->dynamics[$this->getDynamicIndex($method, $pattern)][$pattern]); |
|
206 | - } |
|
207 | - |
|
208 | - /** |
|
209 | - * Determine if the http method is valid. |
|
210 | - * |
|
211 | - * @param string $method |
|
212 | - * @throws MethodNotSupportedException |
|
213 | - * @return string |
|
214 | - */ |
|
215 | - |
|
216 | - protected function parseMethod($method) |
|
217 | - { |
|
218 | - $method = strtolower($method); |
|
219 | - |
|
220 | - if (strpos(self::HTTP_METHODS, $method) === false) { |
|
221 | - throw new MethodNotSupportedException($method); |
|
222 | - } |
|
223 | - |
|
224 | - return $method; |
|
225 | - } |
|
226 | - |
|
227 | - /** |
|
228 | - * Separate routes pattern with optional parts into n new patterns. |
|
229 | - * |
|
230 | - * @param string $pattern |
|
231 | - * @return array |
|
232 | - */ |
|
233 | - |
|
234 | - protected function parsePattern($pattern) |
|
235 | - { |
|
236 | - $withoutClosing = rtrim($pattern, "]"); |
|
237 | - $closingNumber = strlen($pattern) - strlen($withoutClosing); |
|
238 | - |
|
239 | - $segments = preg_split("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\[~x", $withoutClosing); |
|
240 | - $this->parseSegments($segments, $closingNumber, $withoutClosing); |
|
241 | - |
|
242 | - return $this->buildSegments($segments); |
|
243 | - } |
|
244 | - |
|
245 | - /** |
|
246 | - * Parse all the possible patterns seeking for an incorrect or incompatible pattern. |
|
247 | - * |
|
248 | - * @param string[] $segments Segments are all the possible patterns made on top of a pattern with optional segments. |
|
249 | - * @param int $closingNumber The count of optional segments. |
|
250 | - * @param string $withoutClosing The pattern without the closing token of an optional segment. aka: ] |
|
251 | - * |
|
252 | - * @throws BadRouteException |
|
253 | - */ |
|
254 | - |
|
255 | - protected function parseSegments(array $segments, $closingNumber, $withoutClosing) |
|
256 | - { |
|
257 | - if ($closingNumber !== count($segments) - 1) { |
|
258 | - if (preg_match("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\]~x", $withoutClosing)) { |
|
259 | - throw new BadRouteException(BadRouteException::OPTIONAL_SEGMENTS_ON_MIDDLE); |
|
260 | - } else throw new BadRouteException(BadRouteException::UNCLOSED_OPTIONAL_SEGMENTS); |
|
261 | - } |
|
262 | - } |
|
263 | - |
|
264 | - /** |
|
265 | - * @param string[] $segments |
|
266 | - * |
|
267 | - * @throws BadRouteException |
|
268 | - * @return array |
|
269 | - */ |
|
270 | - |
|
271 | - protected function buildSegments(array $segments) |
|
272 | - { |
|
273 | - $pattern = ""; |
|
274 | - $patterns = []; |
|
275 | - $wildcardTokens = array_keys($this->wildcards); |
|
276 | - $wildcardRegex = $this->wildcards; |
|
277 | - |
|
278 | - foreach ($segments as $n => $segment) { |
|
279 | - if ($segment === "" && $n !== 0) { |
|
280 | - throw new BadRouteException(BadRouteException::EMPTY_OPTIONAL_PARTS); |
|
281 | - } |
|
282 | - |
|
283 | - $patterns[] = $pattern .= str_replace($wildcardTokens, $wildcardRegex, $segment); |
|
284 | - } |
|
285 | - |
|
286 | - return $patterns; |
|
287 | - } |
|
288 | - |
|
289 | - /** |
|
290 | - * @param string $method |
|
291 | - * @param string $pattern |
|
292 | - * |
|
293 | - * @return Route|false |
|
294 | - */ |
|
295 | - |
|
296 | - public function findStaticRoute($method, $pattern) |
|
297 | - { |
|
298 | - $method = strtolower($method); |
|
299 | - if (isset($this->statics[$method]) && isset($this->statics[$method][$pattern])) |
|
300 | - return $this->statics[$method][$pattern]; |
|
301 | - return false; |
|
302 | - } |
|
303 | - |
|
304 | - /** |
|
305 | - * @param string $method |
|
306 | - * @param string $pattern |
|
307 | - * |
|
308 | - * @return array|false |
|
309 | - */ |
|
310 | - |
|
311 | - public function findDynamicRoutes($method, $pattern) |
|
312 | - { |
|
313 | - $index = $this->getDynamicIndex($method, $pattern); |
|
314 | - return isset($this->dynamics[$index]) ? $this->dynamics[$index] : false; |
|
315 | - } |
|
316 | - |
|
317 | - /** |
|
318 | - * @param string $method |
|
319 | - * @param string $pattern |
|
320 | - * |
|
321 | - * @return int |
|
322 | - */ |
|
323 | - |
|
324 | - protected function getDynamicIndex($method, $pattern) |
|
325 | - { |
|
326 | - return crc32(strtolower($method)) + substr_count($pattern, "/"); |
|
327 | - } |
|
328 | - |
|
329 | - /** |
|
330 | - * @return string[] |
|
331 | - */ |
|
332 | - |
|
333 | - public function getWildcards() |
|
334 | - { |
|
335 | - $wildcards = []; |
|
336 | - foreach ($this->wildcards as $token => $regex) |
|
337 | - $wildcards[substr($token, 1)] = substr($regex, 1); |
|
338 | - return $wildcards; |
|
339 | - } |
|
340 | - |
|
341 | - /** |
|
342 | - * @return string[] |
|
343 | - */ |
|
344 | - |
|
345 | - public function getWildcardTokens() |
|
346 | - { |
|
347 | - return $this->wildcards; |
|
348 | - } |
|
349 | - |
|
350 | - /** |
|
351 | - * @param string $wildcard |
|
352 | - * @return string|null |
|
353 | - */ |
|
354 | - |
|
355 | - public function getWildcard($wildcard) |
|
356 | - { |
|
357 | - return isset($this->wildcards[":$wildcard"]) ? $this->wildcards[":$wildcard"] : null; |
|
358 | - } |
|
359 | - |
|
360 | - /** |
|
361 | - * @param string $wildcard |
|
362 | - * @param string $pattern |
|
363 | - */ |
|
364 | - |
|
365 | - public function setWildcard($wildcard, $pattern) |
|
366 | - { |
|
367 | - $this->wildcards[":$wildcard"] = ":$pattern"; |
|
368 | - } |
|
36 | + use Collectors\ControllerCollectorTrait; |
|
37 | + use Collectors\ResourceCollectorTrait; |
|
38 | + |
|
39 | + /** |
|
40 | + * These regex define the structure of a dynamic segment in a pattern. |
|
41 | + * |
|
42 | + * @var string |
|
43 | + */ |
|
44 | + |
|
45 | + const DYNAMIC_REGEX = "{\s*(\w*)\s*(?::\s*([^{}]*(?:{(?-1)}*)*))?\s*}"; |
|
46 | + |
|
47 | + |
|
48 | + /** |
|
49 | + * All the supported http methods separated by spaces. |
|
50 | + * |
|
51 | + * @var string |
|
52 | + */ |
|
53 | + |
|
54 | + const HTTP_METHODS = "get post put patch delete"; |
|
55 | + |
|
56 | + /** |
|
57 | + * The static routes are simple stored in a multidimensional array, the first |
|
58 | + * dimension is indexed by an http method and hold an array indexed with the patterns |
|
59 | + * and holding the route. ex. [METHOD => [PATTERN => ROUTE]] |
|
60 | + * |
|
61 | + * @var array |
|
62 | + */ |
|
63 | + |
|
64 | + protected $statics = []; |
|
65 | + |
|
66 | + /** |
|
67 | + * The dynamic routes have parameters and are stored in a hashtable that every cell have |
|
68 | + * an array with route patterns as indexes and routes as values. ex. [INDEX => [PATTERN => ROUTE]] |
|
69 | + * |
|
70 | + * @var array |
|
71 | + */ |
|
72 | + |
|
73 | + protected $dynamics = []; |
|
74 | + |
|
75 | + /** |
|
76 | + * Some regex wildcards for easily definition of dynamic routes. ps. all keys and values must start with : |
|
77 | + * |
|
78 | + * @var array |
|
79 | + */ |
|
80 | + |
|
81 | + protected $wildcards = [ |
|
82 | + ":uid" => ":uid-[a-zA-Z0-9]", |
|
83 | + ":slug" => ":[a-z0-9-]", |
|
84 | + ":string" => ":\w", |
|
85 | + ":int" => ":\d", |
|
86 | + ":integer" => ":\d", |
|
87 | + ":float" => ":[-+]?\d*?[.]?\d", |
|
88 | + ":double" => ":[-+]?\d*?[.]?\d", |
|
89 | + ":hex" => ":0[xX][0-9a-fA-F]", |
|
90 | + ":octal" => ":0[1-7][0-7]", |
|
91 | + ":bool" => ":1|0|true|false|yes|no", |
|
92 | + ":boolean" => ":1|0|true|false|yes|no", |
|
93 | + ]; |
|
94 | + |
|
95 | + /** |
|
96 | + * @param string $method |
|
97 | + * @param string $pattern |
|
98 | + * @param string|array|\Closure $action |
|
99 | + * |
|
100 | + * @throws BadRouteException |
|
101 | + * @throws MethodNotSupportedException |
|
102 | + * |
|
103 | + * @return Group |
|
104 | + */ |
|
105 | + |
|
106 | + public function set($method, $pattern, $action) |
|
107 | + { |
|
108 | + $method = $this->parseMethod($method); |
|
109 | + $patterns = $this->parsePattern($pattern); |
|
110 | + $group = new Group; |
|
111 | + |
|
112 | + foreach ($patterns as $pattern) |
|
113 | + { |
|
114 | + $route = new Route($this, $method, $pattern, $action); |
|
115 | + $group->setRoute($route); |
|
116 | + |
|
117 | + if (strpos($pattern, "{") !== false) { |
|
118 | + $index = $this->getDynamicIndex($method, $pattern); |
|
119 | + $this->dynamics[$index][$pattern] = $route; |
|
120 | + } else $this->statics[$method][$pattern] = $route; |
|
121 | + } |
|
122 | + |
|
123 | + return $group; |
|
124 | + } |
|
125 | + |
|
126 | + public function get ($pattern, $action) { return $this->set("get" , $pattern, $action); } |
|
127 | + public function post ($pattern, $action) { return $this->set("post" , $pattern, $action); } |
|
128 | + public function put ($pattern, $action) { return $this->set("put" , $pattern, $action); } |
|
129 | + public function patch ($pattern, $action) { return $this->set("patch" , $pattern, $action); } |
|
130 | + public function delete($pattern, $action) { return $this->set("delete", $pattern, $action); } |
|
131 | + |
|
132 | + /** |
|
133 | + * Insert a route into several http methods. |
|
134 | + * |
|
135 | + * @param string[] $methods |
|
136 | + * @param string $pattern |
|
137 | + * @param string|array|\Closure $action |
|
138 | + * |
|
139 | + * @return Group |
|
140 | + */ |
|
141 | + |
|
142 | + public function match(array $methods, $pattern, $action) |
|
143 | + { |
|
144 | + $group = new Group; |
|
145 | + foreach ($methods as $method) |
|
146 | + $group->set($this->set($method, $pattern, $action)); |
|
147 | + return $group; |
|
148 | + } |
|
149 | + |
|
150 | + /** |
|
151 | + * Insert a route into every http method supported. |
|
152 | + * |
|
153 | + * @param string $pattern |
|
154 | + * @param string|array|\Closure $action |
|
155 | + * |
|
156 | + * @return Group |
|
157 | + */ |
|
158 | + |
|
159 | + public function any($pattern, $action) |
|
160 | + { |
|
161 | + return $this->match(explode(" ", self::HTTP_METHODS), $pattern, $action); |
|
162 | + } |
|
163 | + |
|
164 | + /** |
|
165 | + * Insert a route into every http method supported but the given ones. |
|
166 | + * |
|
167 | + * @param string[] $methods |
|
168 | + * @param string $pattern |
|
169 | + * @param string|array|\Closure $action |
|
170 | + * |
|
171 | + * @return Group |
|
172 | + */ |
|
173 | + |
|
174 | + public function except(array $methods, $pattern, $action) |
|
175 | + { |
|
176 | + return $this->match(array_diff(explode(" ", self::HTTP_METHODS), $methods), $pattern, $action); |
|
177 | + } |
|
178 | + |
|
179 | + /** |
|
180 | + * Group all given routes. |
|
181 | + * |
|
182 | + * @param Route[] $routes |
|
183 | + * @return Group |
|
184 | + */ |
|
185 | + |
|
186 | + public function group(array $routes) |
|
187 | + { |
|
188 | + $group = new Group; |
|
189 | + foreach ($routes as $route) |
|
190 | + $group->set($route); |
|
191 | + return $group; |
|
192 | + } |
|
193 | + |
|
194 | + /** |
|
195 | + * Remove a route from collector. |
|
196 | + * |
|
197 | + * @param string $method |
|
198 | + * @param string $pattern |
|
199 | + */ |
|
200 | + |
|
201 | + public function forget($method, $pattern) |
|
202 | + { |
|
203 | + if (strpos($pattern, "{") === false) { |
|
204 | + unset($this->statics[$method][$pattern]); |
|
205 | + } else unset($this->dynamics[$this->getDynamicIndex($method, $pattern)][$pattern]); |
|
206 | + } |
|
207 | + |
|
208 | + /** |
|
209 | + * Determine if the http method is valid. |
|
210 | + * |
|
211 | + * @param string $method |
|
212 | + * @throws MethodNotSupportedException |
|
213 | + * @return string |
|
214 | + */ |
|
215 | + |
|
216 | + protected function parseMethod($method) |
|
217 | + { |
|
218 | + $method = strtolower($method); |
|
219 | + |
|
220 | + if (strpos(self::HTTP_METHODS, $method) === false) { |
|
221 | + throw new MethodNotSupportedException($method); |
|
222 | + } |
|
223 | + |
|
224 | + return $method; |
|
225 | + } |
|
226 | + |
|
227 | + /** |
|
228 | + * Separate routes pattern with optional parts into n new patterns. |
|
229 | + * |
|
230 | + * @param string $pattern |
|
231 | + * @return array |
|
232 | + */ |
|
233 | + |
|
234 | + protected function parsePattern($pattern) |
|
235 | + { |
|
236 | + $withoutClosing = rtrim($pattern, "]"); |
|
237 | + $closingNumber = strlen($pattern) - strlen($withoutClosing); |
|
238 | + |
|
239 | + $segments = preg_split("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\[~x", $withoutClosing); |
|
240 | + $this->parseSegments($segments, $closingNumber, $withoutClosing); |
|
241 | + |
|
242 | + return $this->buildSegments($segments); |
|
243 | + } |
|
244 | + |
|
245 | + /** |
|
246 | + * Parse all the possible patterns seeking for an incorrect or incompatible pattern. |
|
247 | + * |
|
248 | + * @param string[] $segments Segments are all the possible patterns made on top of a pattern with optional segments. |
|
249 | + * @param int $closingNumber The count of optional segments. |
|
250 | + * @param string $withoutClosing The pattern without the closing token of an optional segment. aka: ] |
|
251 | + * |
|
252 | + * @throws BadRouteException |
|
253 | + */ |
|
254 | + |
|
255 | + protected function parseSegments(array $segments, $closingNumber, $withoutClosing) |
|
256 | + { |
|
257 | + if ($closingNumber !== count($segments) - 1) { |
|
258 | + if (preg_match("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\]~x", $withoutClosing)) { |
|
259 | + throw new BadRouteException(BadRouteException::OPTIONAL_SEGMENTS_ON_MIDDLE); |
|
260 | + } else throw new BadRouteException(BadRouteException::UNCLOSED_OPTIONAL_SEGMENTS); |
|
261 | + } |
|
262 | + } |
|
263 | + |
|
264 | + /** |
|
265 | + * @param string[] $segments |
|
266 | + * |
|
267 | + * @throws BadRouteException |
|
268 | + * @return array |
|
269 | + */ |
|
270 | + |
|
271 | + protected function buildSegments(array $segments) |
|
272 | + { |
|
273 | + $pattern = ""; |
|
274 | + $patterns = []; |
|
275 | + $wildcardTokens = array_keys($this->wildcards); |
|
276 | + $wildcardRegex = $this->wildcards; |
|
277 | + |
|
278 | + foreach ($segments as $n => $segment) { |
|
279 | + if ($segment === "" && $n !== 0) { |
|
280 | + throw new BadRouteException(BadRouteException::EMPTY_OPTIONAL_PARTS); |
|
281 | + } |
|
282 | + |
|
283 | + $patterns[] = $pattern .= str_replace($wildcardTokens, $wildcardRegex, $segment); |
|
284 | + } |
|
285 | + |
|
286 | + return $patterns; |
|
287 | + } |
|
288 | + |
|
289 | + /** |
|
290 | + * @param string $method |
|
291 | + * @param string $pattern |
|
292 | + * |
|
293 | + * @return Route|false |
|
294 | + */ |
|
295 | + |
|
296 | + public function findStaticRoute($method, $pattern) |
|
297 | + { |
|
298 | + $method = strtolower($method); |
|
299 | + if (isset($this->statics[$method]) && isset($this->statics[$method][$pattern])) |
|
300 | + return $this->statics[$method][$pattern]; |
|
301 | + return false; |
|
302 | + } |
|
303 | + |
|
304 | + /** |
|
305 | + * @param string $method |
|
306 | + * @param string $pattern |
|
307 | + * |
|
308 | + * @return array|false |
|
309 | + */ |
|
310 | + |
|
311 | + public function findDynamicRoutes($method, $pattern) |
|
312 | + { |
|
313 | + $index = $this->getDynamicIndex($method, $pattern); |
|
314 | + return isset($this->dynamics[$index]) ? $this->dynamics[$index] : false; |
|
315 | + } |
|
316 | + |
|
317 | + /** |
|
318 | + * @param string $method |
|
319 | + * @param string $pattern |
|
320 | + * |
|
321 | + * @return int |
|
322 | + */ |
|
323 | + |
|
324 | + protected function getDynamicIndex($method, $pattern) |
|
325 | + { |
|
326 | + return crc32(strtolower($method)) + substr_count($pattern, "/"); |
|
327 | + } |
|
328 | + |
|
329 | + /** |
|
330 | + * @return string[] |
|
331 | + */ |
|
332 | + |
|
333 | + public function getWildcards() |
|
334 | + { |
|
335 | + $wildcards = []; |
|
336 | + foreach ($this->wildcards as $token => $regex) |
|
337 | + $wildcards[substr($token, 1)] = substr($regex, 1); |
|
338 | + return $wildcards; |
|
339 | + } |
|
340 | + |
|
341 | + /** |
|
342 | + * @return string[] |
|
343 | + */ |
|
344 | + |
|
345 | + public function getWildcardTokens() |
|
346 | + { |
|
347 | + return $this->wildcards; |
|
348 | + } |
|
349 | + |
|
350 | + /** |
|
351 | + * @param string $wildcard |
|
352 | + * @return string|null |
|
353 | + */ |
|
354 | + |
|
355 | + public function getWildcard($wildcard) |
|
356 | + { |
|
357 | + return isset($this->wildcards[":$wildcard"]) ? $this->wildcards[":$wildcard"] : null; |
|
358 | + } |
|
359 | + |
|
360 | + /** |
|
361 | + * @param string $wildcard |
|
362 | + * @param string $pattern |
|
363 | + */ |
|
364 | + |
|
365 | + public function setWildcard($wildcard, $pattern) |
|
366 | + { |
|
367 | + $this->wildcards[":$wildcard"] = ":$pattern"; |
|
368 | + } |
|
369 | 369 | |
370 | 370 | } |
@@ -117,7 +117,9 @@ discard block |
||
117 | 117 | if (strpos($pattern, "{") !== false) { |
118 | 118 | $index = $this->getDynamicIndex($method, $pattern); |
119 | 119 | $this->dynamics[$index][$pattern] = $route; |
120 | - } else $this->statics[$method][$pattern] = $route; |
|
120 | + } else { |
|
121 | + $this->statics[$method][$pattern] = $route; |
|
122 | + } |
|
121 | 123 | } |
122 | 124 | |
123 | 125 | return $group; |
@@ -142,8 +144,9 @@ discard block |
||
142 | 144 | public function match(array $methods, $pattern, $action) |
143 | 145 | { |
144 | 146 | $group = new Group; |
145 | - foreach ($methods as $method) |
|
146 | - $group->set($this->set($method, $pattern, $action)); |
|
147 | + foreach ($methods as $method) { |
|
148 | + $group->set($this->set($method, $pattern, $action)); |
|
149 | + } |
|
147 | 150 | return $group; |
148 | 151 | } |
149 | 152 | |
@@ -186,8 +189,9 @@ discard block |
||
186 | 189 | public function group(array $routes) |
187 | 190 | { |
188 | 191 | $group = new Group; |
189 | - foreach ($routes as $route) |
|
190 | - $group->set($route); |
|
192 | + foreach ($routes as $route) { |
|
193 | + $group->set($route); |
|
194 | + } |
|
191 | 195 | return $group; |
192 | 196 | } |
193 | 197 | |
@@ -202,7 +206,9 @@ discard block |
||
202 | 206 | { |
203 | 207 | if (strpos($pattern, "{") === false) { |
204 | 208 | unset($this->statics[$method][$pattern]); |
205 | - } else unset($this->dynamics[$this->getDynamicIndex($method, $pattern)][$pattern]); |
|
209 | + } else { |
|
210 | + unset($this->dynamics[$this->getDynamicIndex($method, $pattern)][$pattern]); |
|
211 | + } |
|
206 | 212 | } |
207 | 213 | |
208 | 214 | /** |
@@ -257,7 +263,9 @@ discard block |
||
257 | 263 | if ($closingNumber !== count($segments) - 1) { |
258 | 264 | if (preg_match("~" . self::DYNAMIC_REGEX . "(*SKIP)(*F)|\]~x", $withoutClosing)) { |
259 | 265 | throw new BadRouteException(BadRouteException::OPTIONAL_SEGMENTS_ON_MIDDLE); |
260 | - } else throw new BadRouteException(BadRouteException::UNCLOSED_OPTIONAL_SEGMENTS); |
|
266 | + } else { |
|
267 | + throw new BadRouteException(BadRouteException::UNCLOSED_OPTIONAL_SEGMENTS); |
|
268 | + } |
|
261 | 269 | } |
262 | 270 | } |
263 | 271 | |
@@ -296,8 +304,9 @@ discard block |
||
296 | 304 | public function findStaticRoute($method, $pattern) |
297 | 305 | { |
298 | 306 | $method = strtolower($method); |
299 | - if (isset($this->statics[$method]) && isset($this->statics[$method][$pattern])) |
|
300 | - return $this->statics[$method][$pattern]; |
|
307 | + if (isset($this->statics[$method]) && isset($this->statics[$method][$pattern])) { |
|
308 | + return $this->statics[$method][$pattern]; |
|
309 | + } |
|
301 | 310 | return false; |
302 | 311 | } |
303 | 312 | |
@@ -333,8 +342,9 @@ discard block |
||
333 | 342 | public function getWildcards() |
334 | 343 | { |
335 | 344 | $wildcards = []; |
336 | - foreach ($this->wildcards as $token => $regex) |
|
337 | - $wildcards[substr($token, 1)] = substr($regex, 1); |
|
345 | + foreach ($this->wildcards as $token => $regex) { |
|
346 | + $wildcards[substr($token, 1)] = substr($regex, 1); |
|
347 | + } |
|
338 | 348 | return $wildcards; |
339 | 349 | } |
340 | 350 |
@@ -22,102 +22,102 @@ |
||
22 | 22 | trait ResourceCollectorTrait |
23 | 23 | { |
24 | 24 | |
25 | - abstract public function set($method, $pattern, $action); |
|
26 | - |
|
27 | - /** |
|
28 | - * A map of all routes of resources. |
|
29 | - * |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - |
|
33 | - protected $map = [ |
|
34 | - "index" => ["get", "/{name}"], |
|
35 | - "make" => ["get", "/{name}/make"], |
|
36 | - "create" => ["post", "/{name}"], |
|
37 | - "show" => ["get", "/{name}/{id:int+}"], |
|
38 | - "edit" => ["get", "/{name}/{id:int+}/edit"], |
|
39 | - "update" => ["put", "/{name}/{id:int+}"], |
|
40 | - "delete" => ["delete", "/{name}/{id:int+}"], |
|
41 | - ]; |
|
42 | - |
|
43 | - /** |
|
44 | - * Resource routing allows you to quickly declare all of the common routes for a given resourceful controller. |
|
45 | - * Instead of declaring separate routes for your index, show, new, edit, create, update and destroy actions, |
|
46 | - * a resourceful route declares them in a single line of code. |
|
47 | - * |
|
48 | - * @param string $controller The controller name. |
|
49 | - * @param array $options Some options like, "as" to name the route pattern, "only" to |
|
50 | - * explicit say that only this routes will be registered, and |
|
51 | - * "except" that register all the routes except the indicates. |
|
52 | - * @return Resource |
|
53 | - */ |
|
54 | - |
|
55 | - public function resource($controller, array $options = array()) |
|
56 | - { |
|
57 | - $name = isset($options["prefix"]) ? $options["prefix"] : ""; |
|
58 | - $name .= $this->getResourceName($controller, $options); |
|
59 | - $actions = $this->getResourceActions($options); |
|
60 | - $resource = new Resource; |
|
61 | - |
|
62 | - foreach ($actions as $action => $map) { |
|
63 | - $resource->set($this->set($map[0], $this->getResourcePath($action, $map[1], $name, $options), [$controller, $action])); |
|
64 | - } |
|
65 | - |
|
66 | - return $resource; |
|
67 | - } |
|
68 | - |
|
69 | - /** |
|
70 | - * Collect several resources at same time. |
|
71 | - * |
|
72 | - * @param array $controllers Several controller names as parameters or an array with all controller names. |
|
73 | - * @return Resource |
|
74 | - */ |
|
75 | - |
|
76 | - public function resources(array $controllers) |
|
77 | - { |
|
78 | - $resource = new Resource; |
|
79 | - foreach ($controllers as $controller) |
|
80 | - $resource->set($this->resource($controller)); |
|
81 | - return $resource; |
|
82 | - } |
|
83 | - |
|
84 | - /** |
|
85 | - * @param string $controller |
|
86 | - * @param array $options |
|
87 | - * |
|
88 | - * @return mixed |
|
89 | - */ |
|
90 | - |
|
91 | - protected function getResourceName($controller, array $options) |
|
92 | - { |
|
93 | - return isset($options["as"]) ? $options["as"] : str_replace("controller", "", strtolower($controller)); |
|
94 | - } |
|
95 | - |
|
96 | - /** |
|
97 | - * @param array $options |
|
98 | - * @return array |
|
99 | - */ |
|
100 | - |
|
101 | - protected function getResourceActions(array $options) |
|
102 | - { |
|
103 | - return isset($options["only"]) ? array_intersect_key($this->map, array_flip((array) $options["only"])) : |
|
104 | - (isset($options["except"]) ? array_diff_key($this->map, array_flip((array) $options["except"])) : $this->map); |
|
105 | - } |
|
106 | - |
|
107 | - /** |
|
108 | - * @param string $action |
|
109 | - * @param string $path |
|
110 | - * @param string $name |
|
111 | - * @param string[] $options |
|
112 | - * |
|
113 | - * @return string |
|
114 | - */ |
|
115 | - |
|
116 | - protected function getResourcePath($action, $path, $name, array $options) |
|
117 | - { |
|
118 | - return str_replace("{name}", $name, |
|
119 | - $action === "make" && isset($options["translate"]["make"]) ? str_replace("make", $options["translate"]["make"], $path) : |
|
120 | - ($action === "edit" && isset($options["translate"]["edit"]) ? str_replace("edit", $options["translate"]["edit"], $path) : $path)); |
|
121 | - } |
|
25 | + abstract public function set($method, $pattern, $action); |
|
26 | + |
|
27 | + /** |
|
28 | + * A map of all routes of resources. |
|
29 | + * |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + |
|
33 | + protected $map = [ |
|
34 | + "index" => ["get", "/{name}"], |
|
35 | + "make" => ["get", "/{name}/make"], |
|
36 | + "create" => ["post", "/{name}"], |
|
37 | + "show" => ["get", "/{name}/{id:int+}"], |
|
38 | + "edit" => ["get", "/{name}/{id:int+}/edit"], |
|
39 | + "update" => ["put", "/{name}/{id:int+}"], |
|
40 | + "delete" => ["delete", "/{name}/{id:int+}"], |
|
41 | + ]; |
|
42 | + |
|
43 | + /** |
|
44 | + * Resource routing allows you to quickly declare all of the common routes for a given resourceful controller. |
|
45 | + * Instead of declaring separate routes for your index, show, new, edit, create, update and destroy actions, |
|
46 | + * a resourceful route declares them in a single line of code. |
|
47 | + * |
|
48 | + * @param string $controller The controller name. |
|
49 | + * @param array $options Some options like, "as" to name the route pattern, "only" to |
|
50 | + * explicit say that only this routes will be registered, and |
|
51 | + * "except" that register all the routes except the indicates. |
|
52 | + * @return Resource |
|
53 | + */ |
|
54 | + |
|
55 | + public function resource($controller, array $options = array()) |
|
56 | + { |
|
57 | + $name = isset($options["prefix"]) ? $options["prefix"] : ""; |
|
58 | + $name .= $this->getResourceName($controller, $options); |
|
59 | + $actions = $this->getResourceActions($options); |
|
60 | + $resource = new Resource; |
|
61 | + |
|
62 | + foreach ($actions as $action => $map) { |
|
63 | + $resource->set($this->set($map[0], $this->getResourcePath($action, $map[1], $name, $options), [$controller, $action])); |
|
64 | + } |
|
65 | + |
|
66 | + return $resource; |
|
67 | + } |
|
68 | + |
|
69 | + /** |
|
70 | + * Collect several resources at same time. |
|
71 | + * |
|
72 | + * @param array $controllers Several controller names as parameters or an array with all controller names. |
|
73 | + * @return Resource |
|
74 | + */ |
|
75 | + |
|
76 | + public function resources(array $controllers) |
|
77 | + { |
|
78 | + $resource = new Resource; |
|
79 | + foreach ($controllers as $controller) |
|
80 | + $resource->set($this->resource($controller)); |
|
81 | + return $resource; |
|
82 | + } |
|
83 | + |
|
84 | + /** |
|
85 | + * @param string $controller |
|
86 | + * @param array $options |
|
87 | + * |
|
88 | + * @return mixed |
|
89 | + */ |
|
90 | + |
|
91 | + protected function getResourceName($controller, array $options) |
|
92 | + { |
|
93 | + return isset($options["as"]) ? $options["as"] : str_replace("controller", "", strtolower($controller)); |
|
94 | + } |
|
95 | + |
|
96 | + /** |
|
97 | + * @param array $options |
|
98 | + * @return array |
|
99 | + */ |
|
100 | + |
|
101 | + protected function getResourceActions(array $options) |
|
102 | + { |
|
103 | + return isset($options["only"]) ? array_intersect_key($this->map, array_flip((array) $options["only"])) : |
|
104 | + (isset($options["except"]) ? array_diff_key($this->map, array_flip((array) $options["except"])) : $this->map); |
|
105 | + } |
|
106 | + |
|
107 | + /** |
|
108 | + * @param string $action |
|
109 | + * @param string $path |
|
110 | + * @param string $name |
|
111 | + * @param string[] $options |
|
112 | + * |
|
113 | + * @return string |
|
114 | + */ |
|
115 | + |
|
116 | + protected function getResourcePath($action, $path, $name, array $options) |
|
117 | + { |
|
118 | + return str_replace("{name}", $name, |
|
119 | + $action === "make" && isset($options["translate"]["make"]) ? str_replace("make", $options["translate"]["make"], $path) : |
|
120 | + ($action === "edit" && isset($options["translate"]["edit"]) ? str_replace("edit", $options["translate"]["edit"], $path) : $path)); |
|
121 | + } |
|
122 | 122 | |
123 | 123 | } |
@@ -31,12 +31,12 @@ discard block |
||
31 | 31 | */ |
32 | 32 | |
33 | 33 | protected $map = [ |
34 | - "index" => ["get", "/{name}"], |
|
35 | - "make" => ["get", "/{name}/make"], |
|
36 | - "create" => ["post", "/{name}"], |
|
37 | - "show" => ["get", "/{name}/{id:int+}"], |
|
38 | - "edit" => ["get", "/{name}/{id:int+}/edit"], |
|
39 | - "update" => ["put", "/{name}/{id:int+}"], |
|
34 | + "index" => ["get", "/{name}"], |
|
35 | + "make" => ["get", "/{name}/make"], |
|
36 | + "create" => ["post", "/{name}"], |
|
37 | + "show" => ["get", "/{name}/{id:int+}"], |
|
38 | + "edit" => ["get", "/{name}/{id:int+}/edit"], |
|
39 | + "update" => ["put", "/{name}/{id:int+}"], |
|
40 | 40 | "delete" => ["delete", "/{name}/{id:int+}"], |
41 | 41 | ]; |
42 | 42 | |
@@ -100,8 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | protected function getResourceActions(array $options) |
102 | 102 | { |
103 | - return isset($options["only"]) ? array_intersect_key($this->map, array_flip((array) $options["only"])) : |
|
104 | - (isset($options["except"]) ? array_diff_key($this->map, array_flip((array) $options["except"])) : $this->map); |
|
103 | + return isset($options["only"]) ? array_intersect_key($this->map, array_flip((array) $options["only"])) : (isset($options["except"]) ? array_diff_key($this->map, array_flip((array) $options["except"])) : $this->map); |
|
105 | 104 | } |
106 | 105 | |
107 | 106 | /** |
@@ -116,8 +115,7 @@ discard block |
||
116 | 115 | protected function getResourcePath($action, $path, $name, array $options) |
117 | 116 | { |
118 | 117 | return str_replace("{name}", $name, |
119 | - $action === "make" && isset($options["translate"]["make"]) ? str_replace("make", $options["translate"]["make"], $path) : |
|
120 | - ($action === "edit" && isset($options["translate"]["edit"]) ? str_replace("edit", $options["translate"]["edit"], $path) : $path)); |
|
118 | + $action === "make" && isset($options["translate"]["make"]) ? str_replace("make", $options["translate"]["make"], $path) : ($action === "edit" && isset($options["translate"]["edit"]) ? str_replace("edit", $options["translate"]["edit"], $path) : $path)); |
|
121 | 119 | } |
122 | 120 | |
123 | 121 | } |
@@ -76,8 +76,9 @@ |
||
76 | 76 | public function resources(array $controllers) |
77 | 77 | { |
78 | 78 | $resource = new Resource; |
79 | - foreach ($controllers as $controller) |
|
80 | - $resource->set($this->resource($controller)); |
|
79 | + foreach ($controllers as $controller) { |
|
80 | + $resource->set($this->resource($controller)); |
|
81 | + } |
|
81 | 82 | return $resource; |
82 | 83 | } |
83 | 84 |
@@ -20,8 +20,8 @@ |
||
20 | 20 | class BadDispatchStrategyException extends BadRouteException |
21 | 21 | { |
22 | 22 | |
23 | - public function __construct($strategy) { |
|
24 | - parent::__construct("`$strategy` is not a valid route dispatch strategy, it must implement the `Codeburner\Router\DispatchStrategies\DispatchStrategyInterface` interface."); |
|
25 | - } |
|
23 | + public function __construct($strategy) { |
|
24 | + parent::__construct("`$strategy` is not a valid route dispatch strategy, it must implement the `Codeburner\Router\DispatchStrategies\DispatchStrategyInterface` interface."); |
|
25 | + } |
|
26 | 26 | |
27 | 27 | } |
@@ -20,8 +20,8 @@ |
||
20 | 20 | class MethodNotSupportedException extends BadRouteException |
21 | 21 | { |
22 | 22 | |
23 | - public function __construct($method) { |
|
24 | - parent::__construct("The HTTP method '$method' is not supported by the route collector."); |
|
25 | - } |
|
23 | + public function __construct($method) { |
|
24 | + parent::__construct("The HTTP method '$method' is not supported by the route collector."); |
|
25 | + } |
|
26 | 26 | |
27 | 27 | } |
@@ -19,36 +19,36 @@ |
||
19 | 19 | class NotFoundException extends \Exception |
20 | 20 | { |
21 | 21 | |
22 | - /** |
|
23 | - * The HTTP method from request. |
|
24 | - * |
|
25 | - * @var string |
|
26 | - */ |
|
22 | + /** |
|
23 | + * The HTTP method from request. |
|
24 | + * |
|
25 | + * @var string |
|
26 | + */ |
|
27 | 27 | |
28 | - public $requestedMethod; |
|
28 | + public $requestedMethod; |
|
29 | 29 | |
30 | - /** |
|
31 | - * The requested Path. |
|
32 | - * |
|
33 | - * @var string |
|
34 | - */ |
|
30 | + /** |
|
31 | + * The requested Path. |
|
32 | + * |
|
33 | + * @var string |
|
34 | + */ |
|
35 | 35 | |
36 | - public $requestedPath; |
|
36 | + public $requestedPath; |
|
37 | 37 | |
38 | - /** |
|
39 | - * Exception constructor. |
|
40 | - * |
|
41 | - * @param string $requestedMethod The request HTTP method. |
|
42 | - * @param string $requestedPath The request Path. |
|
43 | - * @param string $message The exception error message. |
|
44 | - * @param integer $code The exception error code. |
|
45 | - */ |
|
46 | - |
|
47 | - public function __construct($requestedMethod, $requestedPath, $message = null, $code = 405) |
|
48 | - { |
|
49 | - $this->requestedMethod = $requestedMethod; |
|
50 | - $this->requestedPath = $requestedPath; |
|
51 | - parent::__construct($message, $code); |
|
52 | - } |
|
38 | + /** |
|
39 | + * Exception constructor. |
|
40 | + * |
|
41 | + * @param string $requestedMethod The request HTTP method. |
|
42 | + * @param string $requestedPath The request Path. |
|
43 | + * @param string $message The exception error message. |
|
44 | + * @param integer $code The exception error code. |
|
45 | + */ |
|
46 | + |
|
47 | + public function __construct($requestedMethod, $requestedPath, $message = null, $code = 405) |
|
48 | + { |
|
49 | + $this->requestedMethod = $requestedMethod; |
|
50 | + $this->requestedPath = $requestedPath; |
|
51 | + parent::__construct($message, $code); |
|
52 | + } |
|
53 | 53 | |
54 | 54 | } |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | |
236 | 236 | protected function checkStaticRouteInOtherMethods($targetHttpMethod, $path) |
237 | 237 | { |
238 | - return array_filter($this->getHttpMethodsBut($targetHttpMethod), function ($httpMethod) use ($path) { |
|
238 | + return array_filter($this->getHttpMethodsBut($targetHttpMethod), function($httpMethod) use ($path) { |
|
239 | 239 | return (bool) $this->collector->findStaticRoute($httpMethod, $path); |
240 | 240 | }); |
241 | 241 | } |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | |
252 | 252 | protected function checkDynamicRouteInOtherMethods($targetHttpMethod, $path) |
253 | 253 | { |
254 | - return array_filter($this->getHttpMethodsBut($targetHttpMethod), function ($httpMethod) use ($path) { |
|
254 | + return array_filter($this->getHttpMethodsBut($targetHttpMethod), function($httpMethod) use ($path) { |
|
255 | 255 | return (bool) $this->matchDynamicRoute($httpMethod, $path); |
256 | 256 | }); |
257 | 257 | } |
@@ -23,272 +23,272 @@ |
||
23 | 23 | class Matcher |
24 | 24 | { |
25 | 25 | |
26 | - /** |
|
27 | - * @var Collector |
|
28 | - */ |
|
29 | - |
|
30 | - protected $collector; |
|
31 | - |
|
32 | - /** |
|
33 | - * Define a basepath to all routes. |
|
34 | - * |
|
35 | - * @var string |
|
36 | - */ |
|
37 | - |
|
38 | - protected $basepath = ""; |
|
39 | - |
|
40 | - /** |
|
41 | - * Construct the route dispatcher. |
|
42 | - * |
|
43 | - * @param Collector $collector |
|
44 | - * @param string $basepath Define a Path prefix that must be excluded on matches. |
|
45 | - */ |
|
46 | - |
|
47 | - public function __construct(Collector $collector, $basepath = "") |
|
48 | - { |
|
49 | - $this->collector = $collector; |
|
50 | - $this->basepath = $basepath; |
|
51 | - } |
|
52 | - |
|
53 | - /** |
|
54 | - * Find a route that matches the given arguments. |
|
55 | - * |
|
56 | - * @param string $httpMethod |
|
57 | - * @param string $path |
|
58 | - * |
|
59 | - * @throws NotFoundException |
|
60 | - * @throws MethodNotAllowedException |
|
61 | - * |
|
62 | - * @return Route |
|
63 | - */ |
|
64 | - |
|
65 | - public function match($httpMethod, $path) |
|
66 | - { |
|
67 | - $path = $this->parsePath($path); |
|
68 | - |
|
69 | - if ($route = $this->collector->findStaticRoute($httpMethod, $path)) { |
|
70 | - return $route; |
|
71 | - } |
|
72 | - |
|
73 | - if ($route = $this->matchDynamicRoute($httpMethod, $path)) { |
|
74 | - return $route; |
|
75 | - } |
|
76 | - |
|
77 | - $this->matchSimilarRoute($httpMethod, $path); |
|
78 | - } |
|
79 | - |
|
80 | - /** |
|
81 | - * Find and return the request dynamic route based on the compiled data and Path. |
|
82 | - * |
|
83 | - * @param string $httpMethod |
|
84 | - * @param string $path |
|
85 | - * |
|
86 | - * @return Route|false If the request match an array with the action and parameters will |
|
87 | - * be returned otherwise a false will. |
|
88 | - */ |
|
89 | - |
|
90 | - protected function matchDynamicRoute($httpMethod, $path) |
|
91 | - { |
|
92 | - if ($routes = $this->collector->findDynamicRoutes($httpMethod, $path)) { |
|
93 | - // chunk routes for smaller regex groups using the Sturges' Formula |
|
94 | - foreach (array_chunk($routes, round(1 + 3.3 * log(count($routes))), true) as $chunk) { |
|
95 | - array_map([$this, "buildRoute"], $chunk); |
|
96 | - list($pattern, $map) = $this->buildGroup($chunk); |
|
97 | - |
|
98 | - if (!preg_match($pattern, $path, $matches)) { |
|
99 | - continue; |
|
100 | - } |
|
101 | - |
|
102 | - /** @var Route $route */ |
|
103 | - $route = $map[count($matches)]; |
|
104 | - unset($matches[0]); |
|
105 | - |
|
106 | - $route->setParams(array_combine($route->getParams(), array_filter($matches))); |
|
107 | - $route->setMatcher($this); |
|
108 | - |
|
109 | - return $route; |
|
110 | - } |
|
111 | - } |
|
112 | - |
|
113 | - return false; |
|
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * Parse the dynamic segments of the pattern and replace then for |
|
118 | - * corresponding regex. |
|
119 | - * |
|
120 | - * @param Route $route |
|
121 | - * @return Route |
|
122 | - */ |
|
123 | - |
|
124 | - protected function buildRoute(Route $route) |
|
125 | - { |
|
126 | - if ($route->getBlock()) { |
|
127 | - return $route; |
|
128 | - } |
|
129 | - |
|
130 | - list($pattern, $params) = $this->parsePlaceholders($route->getPattern()); |
|
131 | - return $route->setPatternWithoutReset($pattern)->setParams($params)->setBlock(true); |
|
132 | - } |
|
133 | - |
|
134 | - /** |
|
135 | - * Group several dynamic routes patterns into one big regex and maps |
|
136 | - * the routes to the pattern positions in the big regex. |
|
137 | - * |
|
138 | - * @param array $routes |
|
139 | - * @return array |
|
140 | - */ |
|
141 | - |
|
142 | - protected function buildGroup(array $routes) |
|
143 | - { |
|
144 | - $groupCount = (int) $map = $regex = []; |
|
145 | - |
|
146 | - /** @var Route $route */ |
|
147 | - foreach ($routes as $route) { |
|
148 | - $params = $route->getParams(); |
|
149 | - $paramsCount = count($params); |
|
150 | - $groupCount = max($groupCount, $paramsCount) + 1; |
|
151 | - $regex[] = $route->getPattern() . str_repeat("()", $groupCount - $paramsCount - 1); |
|
152 | - $map[$groupCount] = $route; |
|
153 | - } |
|
154 | - |
|
155 | - return ["~^(?|" . implode("|", $regex) . ")$~", $map]; |
|
156 | - } |
|
157 | - |
|
158 | - /** |
|
159 | - * Parse an route pattern seeking for parameters and build the route regex. |
|
160 | - * |
|
161 | - * @param string $pattern |
|
162 | - * @return array 0 => new route regex, 1 => map of parameter names |
|
163 | - */ |
|
164 | - |
|
165 | - protected function parsePlaceholders($pattern) |
|
166 | - { |
|
167 | - $params = []; |
|
168 | - preg_match_all("~" . Collector::DYNAMIC_REGEX . "~x", $pattern, $matches, PREG_SET_ORDER); |
|
169 | - |
|
170 | - foreach ((array) $matches as $key => $match) { |
|
171 | - $pattern = str_replace($match[0], isset($match[2]) ? "({$match[2]})" : "([^/]+)", $pattern); |
|
172 | - $params[$key] = $match[1]; |
|
173 | - } |
|
174 | - |
|
175 | - return [$pattern, $params]; |
|
176 | - } |
|
177 | - |
|
178 | - /** |
|
179 | - * Get only the path of a given url. |
|
180 | - * |
|
181 | - * @param string $path The given URL |
|
182 | - * |
|
183 | - * @throws Exception |
|
184 | - * @return string |
|
185 | - */ |
|
186 | - |
|
187 | - protected function parsePath($path) |
|
188 | - { |
|
189 | - $path = parse_url(substr(strstr(";" . $path, ";" . $this->basepath), strlen(";" . $this->basepath)), PHP_URL_PATH); |
|
190 | - |
|
191 | - if ($path === false) { |
|
192 | - throw new Exception("Seriously malformed URL passed to route dispatcher."); |
|
193 | - } |
|
194 | - |
|
195 | - return $path; |
|
196 | - } |
|
197 | - |
|
198 | - /** |
|
199 | - * Generate an HTTP error request with method not allowed or not found. |
|
200 | - * |
|
201 | - * @param string $httpMethod |
|
202 | - * @param string $path |
|
203 | - * |
|
204 | - * @throws NotFoundException |
|
205 | - * @throws MethodNotAllowedException |
|
206 | - */ |
|
207 | - |
|
208 | - protected function matchSimilarRoute($httpMethod, $path) |
|
209 | - { |
|
210 | - $dm = []; |
|
211 | - |
|
212 | - if (($sm = $this->checkStaticRouteInOtherMethods($httpMethod, $path)) |
|
213 | - || ($dm = $this->checkDynamicRouteInOtherMethods($httpMethod, $path))) { |
|
214 | - throw new MethodNotAllowedException($httpMethod, $path, array_merge((array) $sm, (array) $dm)); |
|
215 | - } |
|
216 | - |
|
217 | - throw new NotFoundException($httpMethod, $path); |
|
218 | - } |
|
219 | - |
|
220 | - /** |
|
221 | - * Verify if a static route match in another method than the requested. |
|
222 | - * |
|
223 | - * @param string $targetHttpMethod The HTTP method that must not be checked |
|
224 | - * @param string $path The Path that must be matched. |
|
225 | - * |
|
226 | - * @return array |
|
227 | - */ |
|
228 | - |
|
229 | - protected function checkStaticRouteInOtherMethods($targetHttpMethod, $path) |
|
230 | - { |
|
231 | - return array_filter($this->getHttpMethodsBut($targetHttpMethod), function ($httpMethod) use ($path) { |
|
232 | - return (bool) $this->collector->findStaticRoute($httpMethod, $path); |
|
233 | - }); |
|
234 | - } |
|
235 | - |
|
236 | - /** |
|
237 | - * Verify if a dynamic route match in another method than the requested. |
|
238 | - * |
|
239 | - * @param string $targetHttpMethod The HTTP method that must not be checked |
|
240 | - * @param string $path The Path that must be matched. |
|
241 | - * |
|
242 | - * @return array |
|
243 | - */ |
|
244 | - |
|
245 | - protected function checkDynamicRouteInOtherMethods($targetHttpMethod, $path) |
|
246 | - { |
|
247 | - return array_filter($this->getHttpMethodsBut($targetHttpMethod), function ($httpMethod) use ($path) { |
|
248 | - return (bool) $this->matchDynamicRoute($httpMethod, $path); |
|
249 | - }); |
|
250 | - } |
|
251 | - |
|
252 | - /** |
|
253 | - * Strip the given http methods and return all the others. |
|
254 | - * |
|
255 | - * @param array|string |
|
256 | - * @return array |
|
257 | - */ |
|
258 | - |
|
259 | - protected function getHttpMethodsBut($targetHttpMethod) |
|
260 | - { |
|
261 | - return array_diff(explode(" ", Collector::HTTP_METHODS), (array) $targetHttpMethod); |
|
262 | - } |
|
263 | - |
|
264 | - /** |
|
265 | - * @return Collector |
|
266 | - */ |
|
267 | - |
|
268 | - public function getCollector() |
|
269 | - { |
|
270 | - return $this->collector; |
|
271 | - } |
|
272 | - |
|
273 | - /** |
|
274 | - * @return string |
|
275 | - */ |
|
276 | - |
|
277 | - public function getBasePath() |
|
278 | - { |
|
279 | - return $this->basepath; |
|
280 | - } |
|
281 | - |
|
282 | - /** |
|
283 | - * Set a new basepath, this will be a prefix that must be excluded in |
|
284 | - * every requested Path. |
|
285 | - * |
|
286 | - * @param string $basepath The new basepath |
|
287 | - */ |
|
26 | + /** |
|
27 | + * @var Collector |
|
28 | + */ |
|
29 | + |
|
30 | + protected $collector; |
|
31 | + |
|
32 | + /** |
|
33 | + * Define a basepath to all routes. |
|
34 | + * |
|
35 | + * @var string |
|
36 | + */ |
|
37 | + |
|
38 | + protected $basepath = ""; |
|
39 | + |
|
40 | + /** |
|
41 | + * Construct the route dispatcher. |
|
42 | + * |
|
43 | + * @param Collector $collector |
|
44 | + * @param string $basepath Define a Path prefix that must be excluded on matches. |
|
45 | + */ |
|
46 | + |
|
47 | + public function __construct(Collector $collector, $basepath = "") |
|
48 | + { |
|
49 | + $this->collector = $collector; |
|
50 | + $this->basepath = $basepath; |
|
51 | + } |
|
52 | + |
|
53 | + /** |
|
54 | + * Find a route that matches the given arguments. |
|
55 | + * |
|
56 | + * @param string $httpMethod |
|
57 | + * @param string $path |
|
58 | + * |
|
59 | + * @throws NotFoundException |
|
60 | + * @throws MethodNotAllowedException |
|
61 | + * |
|
62 | + * @return Route |
|
63 | + */ |
|
64 | + |
|
65 | + public function match($httpMethod, $path) |
|
66 | + { |
|
67 | + $path = $this->parsePath($path); |
|
68 | + |
|
69 | + if ($route = $this->collector->findStaticRoute($httpMethod, $path)) { |
|
70 | + return $route; |
|
71 | + } |
|
72 | + |
|
73 | + if ($route = $this->matchDynamicRoute($httpMethod, $path)) { |
|
74 | + return $route; |
|
75 | + } |
|
76 | + |
|
77 | + $this->matchSimilarRoute($httpMethod, $path); |
|
78 | + } |
|
79 | + |
|
80 | + /** |
|
81 | + * Find and return the request dynamic route based on the compiled data and Path. |
|
82 | + * |
|
83 | + * @param string $httpMethod |
|
84 | + * @param string $path |
|
85 | + * |
|
86 | + * @return Route|false If the request match an array with the action and parameters will |
|
87 | + * be returned otherwise a false will. |
|
88 | + */ |
|
89 | + |
|
90 | + protected function matchDynamicRoute($httpMethod, $path) |
|
91 | + { |
|
92 | + if ($routes = $this->collector->findDynamicRoutes($httpMethod, $path)) { |
|
93 | + // chunk routes for smaller regex groups using the Sturges' Formula |
|
94 | + foreach (array_chunk($routes, round(1 + 3.3 * log(count($routes))), true) as $chunk) { |
|
95 | + array_map([$this, "buildRoute"], $chunk); |
|
96 | + list($pattern, $map) = $this->buildGroup($chunk); |
|
97 | + |
|
98 | + if (!preg_match($pattern, $path, $matches)) { |
|
99 | + continue; |
|
100 | + } |
|
101 | + |
|
102 | + /** @var Route $route */ |
|
103 | + $route = $map[count($matches)]; |
|
104 | + unset($matches[0]); |
|
105 | + |
|
106 | + $route->setParams(array_combine($route->getParams(), array_filter($matches))); |
|
107 | + $route->setMatcher($this); |
|
108 | + |
|
109 | + return $route; |
|
110 | + } |
|
111 | + } |
|
112 | + |
|
113 | + return false; |
|
114 | + } |
|
115 | + |
|
116 | + /** |
|
117 | + * Parse the dynamic segments of the pattern and replace then for |
|
118 | + * corresponding regex. |
|
119 | + * |
|
120 | + * @param Route $route |
|
121 | + * @return Route |
|
122 | + */ |
|
123 | + |
|
124 | + protected function buildRoute(Route $route) |
|
125 | + { |
|
126 | + if ($route->getBlock()) { |
|
127 | + return $route; |
|
128 | + } |
|
129 | + |
|
130 | + list($pattern, $params) = $this->parsePlaceholders($route->getPattern()); |
|
131 | + return $route->setPatternWithoutReset($pattern)->setParams($params)->setBlock(true); |
|
132 | + } |
|
133 | + |
|
134 | + /** |
|
135 | + * Group several dynamic routes patterns into one big regex and maps |
|
136 | + * the routes to the pattern positions in the big regex. |
|
137 | + * |
|
138 | + * @param array $routes |
|
139 | + * @return array |
|
140 | + */ |
|
141 | + |
|
142 | + protected function buildGroup(array $routes) |
|
143 | + { |
|
144 | + $groupCount = (int) $map = $regex = []; |
|
145 | + |
|
146 | + /** @var Route $route */ |
|
147 | + foreach ($routes as $route) { |
|
148 | + $params = $route->getParams(); |
|
149 | + $paramsCount = count($params); |
|
150 | + $groupCount = max($groupCount, $paramsCount) + 1; |
|
151 | + $regex[] = $route->getPattern() . str_repeat("()", $groupCount - $paramsCount - 1); |
|
152 | + $map[$groupCount] = $route; |
|
153 | + } |
|
154 | + |
|
155 | + return ["~^(?|" . implode("|", $regex) . ")$~", $map]; |
|
156 | + } |
|
157 | + |
|
158 | + /** |
|
159 | + * Parse an route pattern seeking for parameters and build the route regex. |
|
160 | + * |
|
161 | + * @param string $pattern |
|
162 | + * @return array 0 => new route regex, 1 => map of parameter names |
|
163 | + */ |
|
164 | + |
|
165 | + protected function parsePlaceholders($pattern) |
|
166 | + { |
|
167 | + $params = []; |
|
168 | + preg_match_all("~" . Collector::DYNAMIC_REGEX . "~x", $pattern, $matches, PREG_SET_ORDER); |
|
169 | + |
|
170 | + foreach ((array) $matches as $key => $match) { |
|
171 | + $pattern = str_replace($match[0], isset($match[2]) ? "({$match[2]})" : "([^/]+)", $pattern); |
|
172 | + $params[$key] = $match[1]; |
|
173 | + } |
|
174 | + |
|
175 | + return [$pattern, $params]; |
|
176 | + } |
|
177 | + |
|
178 | + /** |
|
179 | + * Get only the path of a given url. |
|
180 | + * |
|
181 | + * @param string $path The given URL |
|
182 | + * |
|
183 | + * @throws Exception |
|
184 | + * @return string |
|
185 | + */ |
|
186 | + |
|
187 | + protected function parsePath($path) |
|
188 | + { |
|
189 | + $path = parse_url(substr(strstr(";" . $path, ";" . $this->basepath), strlen(";" . $this->basepath)), PHP_URL_PATH); |
|
190 | + |
|
191 | + if ($path === false) { |
|
192 | + throw new Exception("Seriously malformed URL passed to route dispatcher."); |
|
193 | + } |
|
194 | + |
|
195 | + return $path; |
|
196 | + } |
|
197 | + |
|
198 | + /** |
|
199 | + * Generate an HTTP error request with method not allowed or not found. |
|
200 | + * |
|
201 | + * @param string $httpMethod |
|
202 | + * @param string $path |
|
203 | + * |
|
204 | + * @throws NotFoundException |
|
205 | + * @throws MethodNotAllowedException |
|
206 | + */ |
|
207 | + |
|
208 | + protected function matchSimilarRoute($httpMethod, $path) |
|
209 | + { |
|
210 | + $dm = []; |
|
211 | + |
|
212 | + if (($sm = $this->checkStaticRouteInOtherMethods($httpMethod, $path)) |
|
213 | + || ($dm = $this->checkDynamicRouteInOtherMethods($httpMethod, $path))) { |
|
214 | + throw new MethodNotAllowedException($httpMethod, $path, array_merge((array) $sm, (array) $dm)); |
|
215 | + } |
|
216 | + |
|
217 | + throw new NotFoundException($httpMethod, $path); |
|
218 | + } |
|
219 | + |
|
220 | + /** |
|
221 | + * Verify if a static route match in another method than the requested. |
|
222 | + * |
|
223 | + * @param string $targetHttpMethod The HTTP method that must not be checked |
|
224 | + * @param string $path The Path that must be matched. |
|
225 | + * |
|
226 | + * @return array |
|
227 | + */ |
|
228 | + |
|
229 | + protected function checkStaticRouteInOtherMethods($targetHttpMethod, $path) |
|
230 | + { |
|
231 | + return array_filter($this->getHttpMethodsBut($targetHttpMethod), function ($httpMethod) use ($path) { |
|
232 | + return (bool) $this->collector->findStaticRoute($httpMethod, $path); |
|
233 | + }); |
|
234 | + } |
|
235 | + |
|
236 | + /** |
|
237 | + * Verify if a dynamic route match in another method than the requested. |
|
238 | + * |
|
239 | + * @param string $targetHttpMethod The HTTP method that must not be checked |
|
240 | + * @param string $path The Path that must be matched. |
|
241 | + * |
|
242 | + * @return array |
|
243 | + */ |
|
244 | + |
|
245 | + protected function checkDynamicRouteInOtherMethods($targetHttpMethod, $path) |
|
246 | + { |
|
247 | + return array_filter($this->getHttpMethodsBut($targetHttpMethod), function ($httpMethod) use ($path) { |
|
248 | + return (bool) $this->matchDynamicRoute($httpMethod, $path); |
|
249 | + }); |
|
250 | + } |
|
251 | + |
|
252 | + /** |
|
253 | + * Strip the given http methods and return all the others. |
|
254 | + * |
|
255 | + * @param array|string |
|
256 | + * @return array |
|
257 | + */ |
|
258 | + |
|
259 | + protected function getHttpMethodsBut($targetHttpMethod) |
|
260 | + { |
|
261 | + return array_diff(explode(" ", Collector::HTTP_METHODS), (array) $targetHttpMethod); |
|
262 | + } |
|
263 | + |
|
264 | + /** |
|
265 | + * @return Collector |
|
266 | + */ |
|
267 | + |
|
268 | + public function getCollector() |
|
269 | + { |
|
270 | + return $this->collector; |
|
271 | + } |
|
272 | + |
|
273 | + /** |
|
274 | + * @return string |
|
275 | + */ |
|
276 | + |
|
277 | + public function getBasePath() |
|
278 | + { |
|
279 | + return $this->basepath; |
|
280 | + } |
|
281 | + |
|
282 | + /** |
|
283 | + * Set a new basepath, this will be a prefix that must be excluded in |
|
284 | + * every requested Path. |
|
285 | + * |
|
286 | + * @param string $basepath The new basepath |
|
287 | + */ |
|
288 | 288 | |
289 | - public function setBasePath($basepath) |
|
290 | - { |
|
291 | - $this->basepath = $basepath; |
|
292 | - } |
|
289 | + public function setBasePath($basepath) |
|
290 | + { |
|
291 | + $this->basepath = $basepath; |
|
292 | + } |
|
293 | 293 | |
294 | 294 | } |
@@ -173,7 +173,9 @@ |
||
173 | 173 | foreach ($segments as $index => $segment) { |
174 | 174 | if (strpos($segment, "{") === 0) { |
175 | 175 | $pattern .= "/{" . $segments[$index - 1] . "_" . ltrim($segment, "{"); |
176 | - } else $pattern .= $segment; |
|
176 | + } else { |
|
177 | + $pattern .= $segment; |
|
178 | + } |
|
177 | 179 | } |
178 | 180 | |
179 | 181 | return $pattern; |
@@ -20,161 +20,161 @@ |
||
20 | 20 | class Resource extends Group |
21 | 21 | { |
22 | 22 | |
23 | - /** |
|
24 | - * @inheritdoc |
|
25 | - * @throws \BadMethodCallException |
|
26 | - */ |
|
27 | - |
|
28 | - public function setMethod($method) |
|
29 | - { |
|
30 | - throw new \BadMethodCallException("Resources can't chance they http method."); |
|
31 | - } |
|
32 | - |
|
33 | - /** |
|
34 | - * Remove the routes without the passed methods. |
|
35 | - * |
|
36 | - * @param string|array $methods |
|
37 | - * @return self |
|
38 | - */ |
|
39 | - |
|
40 | - public function only($methods) |
|
41 | - { |
|
42 | - $this->filterByMethod((array) $methods, false); |
|
43 | - return $this; |
|
44 | - } |
|
45 | - |
|
46 | - /** |
|
47 | - * Remove the routes with the passed methods. |
|
48 | - * |
|
49 | - * @param string|array $methods |
|
50 | - * @return self |
|
51 | - */ |
|
52 | - |
|
53 | - public function except($methods) |
|
54 | - { |
|
55 | - $this->filterByMethod((array) $methods, true); |
|
56 | - return $this; |
|
57 | - } |
|
58 | - |
|
59 | - /** |
|
60 | - * Forget the grouped routes filtering by http methods. |
|
61 | - * |
|
62 | - * @param array $methods |
|
63 | - * @param bool $alt Should remove? |
|
64 | - */ |
|
65 | - |
|
66 | - private function filterByMethod(array $methods, $alt) |
|
67 | - { |
|
68 | - $methods = array_flip(array_map('strtolower', $methods)); |
|
69 | - |
|
70 | - foreach ($this->routes as $route) { |
|
71 | - if (isset($methods[$route->getAction()[1]]) === $alt) { |
|
72 | - $route->forget(); |
|
73 | - } |
|
74 | - } |
|
75 | - } |
|
76 | - |
|
77 | - /** |
|
78 | - * Translate the "make" or "edit" from resources path. |
|
79 | - * |
|
80 | - * @param string[] $translations |
|
81 | - * @return self |
|
82 | - */ |
|
83 | - |
|
84 | - public function translate(array $translations) |
|
85 | - { |
|
86 | - /** @var Route $route */ |
|
87 | - foreach ($this->routes as $route) { |
|
88 | - $action = $route->getAction()[1]; |
|
89 | - |
|
90 | - if ($action === "make" && isset($translations["make"])) { |
|
91 | - $route->setPatternWithoutReset(str_replace("make", $translations["make"], $route->getPattern())); |
|
92 | - } elseif ($action === "edit" && isset($translations["edit"])) { |
|
93 | - $route->setPatternWithoutReset(str_replace("edit", $translations["edit"], $route->getPattern())); |
|
94 | - } |
|
95 | - } |
|
96 | - |
|
97 | - return $this; |
|
98 | - } |
|
99 | - |
|
100 | - /** |
|
101 | - * Add a route or a group of routes to the resource, it means that |
|
102 | - * every added route will now receive the parameters of the resource, like id. |
|
103 | - * |
|
104 | - * @param Route|Group $route |
|
105 | - * @return self |
|
106 | - */ |
|
107 | - |
|
108 | - public function member($route) |
|
109 | - { |
|
110 | - $resource = new Resource; |
|
111 | - $resource->set($route); |
|
112 | - $this->nest($resource); |
|
113 | - } |
|
114 | - |
|
115 | - /** |
|
116 | - * Nested routes capture the relation between a resource and another resource. |
|
117 | - * |
|
118 | - * @param Resource $resource |
|
119 | - * @return self |
|
120 | - */ |
|
121 | - |
|
122 | - public function nest(Resource $resource) |
|
123 | - { |
|
124 | - /** @var self $resource */ |
|
125 | - foreach ($this->routes as $route) { |
|
126 | - if ($route->getAction()[1] === "show") { |
|
127 | - $this->set($resource->forget()->setPrefix($this->getNestedPrefix($route->getPattern()))); break; |
|
128 | - } |
|
129 | - } |
|
130 | - |
|
131 | - return $this; |
|
132 | - } |
|
133 | - |
|
134 | - /** |
|
135 | - * Nest resources but with only build routes with the minimal amount of information |
|
136 | - * to uniquely identify the resource. |
|
137 | - * |
|
138 | - * @param Resource $resource |
|
139 | - * @return self |
|
140 | - */ |
|
141 | - |
|
142 | - public function shallow(Resource $resource) |
|
143 | - { |
|
144 | - /** @var self $resource */ |
|
145 | - $newResource = new Resource; |
|
146 | - $resource->forget(); |
|
147 | - $routes = $resource->all(); |
|
148 | - |
|
149 | - foreach ($routes as $route) { |
|
150 | - if (strpos("index make create", $route->getAction()[1]) !== false) { |
|
151 | - $newResource->set($route); |
|
152 | - } |
|
153 | - } |
|
154 | - |
|
155 | - return $this->nest($newResource); |
|
156 | - } |
|
157 | - |
|
158 | - /** |
|
159 | - * Resolve the nesting pattern, setting the prefixes based on |
|
160 | - * parent resources patterns. |
|
161 | - * |
|
162 | - * @param string $pattern |
|
163 | - * @return string |
|
164 | - */ |
|
165 | - |
|
166 | - protected function getNestedPrefix($pattern) |
|
167 | - { |
|
168 | - $segments = explode("/", $pattern); |
|
169 | - $pattern = ""; |
|
170 | - |
|
171 | - foreach ($segments as $index => $segment) { |
|
172 | - if (strpos($segment, "{") === 0) { |
|
173 | - $pattern .= "/{" . $segments[$index - 1] . "_" . ltrim($segment, "{"); |
|
174 | - } else $pattern .= $segment; |
|
175 | - } |
|
176 | - |
|
177 | - return $pattern; |
|
178 | - } |
|
23 | + /** |
|
24 | + * @inheritdoc |
|
25 | + * @throws \BadMethodCallException |
|
26 | + */ |
|
27 | + |
|
28 | + public function setMethod($method) |
|
29 | + { |
|
30 | + throw new \BadMethodCallException("Resources can't chance they http method."); |
|
31 | + } |
|
32 | + |
|
33 | + /** |
|
34 | + * Remove the routes without the passed methods. |
|
35 | + * |
|
36 | + * @param string|array $methods |
|
37 | + * @return self |
|
38 | + */ |
|
39 | + |
|
40 | + public function only($methods) |
|
41 | + { |
|
42 | + $this->filterByMethod((array) $methods, false); |
|
43 | + return $this; |
|
44 | + } |
|
45 | + |
|
46 | + /** |
|
47 | + * Remove the routes with the passed methods. |
|
48 | + * |
|
49 | + * @param string|array $methods |
|
50 | + * @return self |
|
51 | + */ |
|
52 | + |
|
53 | + public function except($methods) |
|
54 | + { |
|
55 | + $this->filterByMethod((array) $methods, true); |
|
56 | + return $this; |
|
57 | + } |
|
58 | + |
|
59 | + /** |
|
60 | + * Forget the grouped routes filtering by http methods. |
|
61 | + * |
|
62 | + * @param array $methods |
|
63 | + * @param bool $alt Should remove? |
|
64 | + */ |
|
65 | + |
|
66 | + private function filterByMethod(array $methods, $alt) |
|
67 | + { |
|
68 | + $methods = array_flip(array_map('strtolower', $methods)); |
|
69 | + |
|
70 | + foreach ($this->routes as $route) { |
|
71 | + if (isset($methods[$route->getAction()[1]]) === $alt) { |
|
72 | + $route->forget(); |
|
73 | + } |
|
74 | + } |
|
75 | + } |
|
76 | + |
|
77 | + /** |
|
78 | + * Translate the "make" or "edit" from resources path. |
|
79 | + * |
|
80 | + * @param string[] $translations |
|
81 | + * @return self |
|
82 | + */ |
|
83 | + |
|
84 | + public function translate(array $translations) |
|
85 | + { |
|
86 | + /** @var Route $route */ |
|
87 | + foreach ($this->routes as $route) { |
|
88 | + $action = $route->getAction()[1]; |
|
89 | + |
|
90 | + if ($action === "make" && isset($translations["make"])) { |
|
91 | + $route->setPatternWithoutReset(str_replace("make", $translations["make"], $route->getPattern())); |
|
92 | + } elseif ($action === "edit" && isset($translations["edit"])) { |
|
93 | + $route->setPatternWithoutReset(str_replace("edit", $translations["edit"], $route->getPattern())); |
|
94 | + } |
|
95 | + } |
|
96 | + |
|
97 | + return $this; |
|
98 | + } |
|
99 | + |
|
100 | + /** |
|
101 | + * Add a route or a group of routes to the resource, it means that |
|
102 | + * every added route will now receive the parameters of the resource, like id. |
|
103 | + * |
|
104 | + * @param Route|Group $route |
|
105 | + * @return self |
|
106 | + */ |
|
107 | + |
|
108 | + public function member($route) |
|
109 | + { |
|
110 | + $resource = new Resource; |
|
111 | + $resource->set($route); |
|
112 | + $this->nest($resource); |
|
113 | + } |
|
114 | + |
|
115 | + /** |
|
116 | + * Nested routes capture the relation between a resource and another resource. |
|
117 | + * |
|
118 | + * @param Resource $resource |
|
119 | + * @return self |
|
120 | + */ |
|
121 | + |
|
122 | + public function nest(Resource $resource) |
|
123 | + { |
|
124 | + /** @var self $resource */ |
|
125 | + foreach ($this->routes as $route) { |
|
126 | + if ($route->getAction()[1] === "show") { |
|
127 | + $this->set($resource->forget()->setPrefix($this->getNestedPrefix($route->getPattern()))); break; |
|
128 | + } |
|
129 | + } |
|
130 | + |
|
131 | + return $this; |
|
132 | + } |
|
133 | + |
|
134 | + /** |
|
135 | + * Nest resources but with only build routes with the minimal amount of information |
|
136 | + * to uniquely identify the resource. |
|
137 | + * |
|
138 | + * @param Resource $resource |
|
139 | + * @return self |
|
140 | + */ |
|
141 | + |
|
142 | + public function shallow(Resource $resource) |
|
143 | + { |
|
144 | + /** @var self $resource */ |
|
145 | + $newResource = new Resource; |
|
146 | + $resource->forget(); |
|
147 | + $routes = $resource->all(); |
|
148 | + |
|
149 | + foreach ($routes as $route) { |
|
150 | + if (strpos("index make create", $route->getAction()[1]) !== false) { |
|
151 | + $newResource->set($route); |
|
152 | + } |
|
153 | + } |
|
154 | + |
|
155 | + return $this->nest($newResource); |
|
156 | + } |
|
157 | + |
|
158 | + /** |
|
159 | + * Resolve the nesting pattern, setting the prefixes based on |
|
160 | + * parent resources patterns. |
|
161 | + * |
|
162 | + * @param string $pattern |
|
163 | + * @return string |
|
164 | + */ |
|
165 | + |
|
166 | + protected function getNestedPrefix($pattern) |
|
167 | + { |
|
168 | + $segments = explode("/", $pattern); |
|
169 | + $pattern = ""; |
|
170 | + |
|
171 | + foreach ($segments as $index => $segment) { |
|
172 | + if (strpos($segment, "{") === 0) { |
|
173 | + $pattern .= "/{" . $segments[$index - 1] . "_" . ltrim($segment, "{"); |
|
174 | + } else $pattern .= $segment; |
|
175 | + } |
|
176 | + |
|
177 | + return $pattern; |
|
178 | + } |
|
179 | 179 | |
180 | 180 | } |
@@ -24,37 +24,37 @@ |
||
24 | 24 | abstract class EnhancerAbstractStrategy implements StrategyInterface |
25 | 25 | { |
26 | 26 | |
27 | - /** |
|
28 | - * Key used to store the real route strategy on metadata. |
|
29 | - * |
|
30 | - * @var string |
|
31 | - */ |
|
32 | - |
|
33 | - protected $metadataStrategyKey = "strategy"; |
|
34 | - |
|
35 | - /** |
|
36 | - * @inheritdoc |
|
37 | - * @throws BadRouteException |
|
38 | - */ |
|
39 | - |
|
40 | - public function call(Route $route) |
|
41 | - { |
|
42 | - if ($route->hasMetadata($this->metadataStrategyKey)) { |
|
43 | - $route->setStrategy($route->getMetadata($this->metadataStrategyKey)); |
|
44 | - } else $route->setStrategy(null); |
|
45 | - |
|
46 | - $this->enhance($route); |
|
47 | - |
|
48 | - return $route->call(); |
|
49 | - } |
|
50 | - |
|
51 | - /** |
|
52 | - * Manipulate route object before the dispatch. |
|
53 | - * |
|
54 | - * @param Route $route |
|
55 | - * @return mixed |
|
56 | - */ |
|
57 | - |
|
58 | - abstract public function enhance(Route $route); |
|
27 | + /** |
|
28 | + * Key used to store the real route strategy on metadata. |
|
29 | + * |
|
30 | + * @var string |
|
31 | + */ |
|
32 | + |
|
33 | + protected $metadataStrategyKey = "strategy"; |
|
34 | + |
|
35 | + /** |
|
36 | + * @inheritdoc |
|
37 | + * @throws BadRouteException |
|
38 | + */ |
|
39 | + |
|
40 | + public function call(Route $route) |
|
41 | + { |
|
42 | + if ($route->hasMetadata($this->metadataStrategyKey)) { |
|
43 | + $route->setStrategy($route->getMetadata($this->metadataStrategyKey)); |
|
44 | + } else $route->setStrategy(null); |
|
45 | + |
|
46 | + $this->enhance($route); |
|
47 | + |
|
48 | + return $route->call(); |
|
49 | + } |
|
50 | + |
|
51 | + /** |
|
52 | + * Manipulate route object before the dispatch. |
|
53 | + * |
|
54 | + * @param Route $route |
|
55 | + * @return mixed |
|
56 | + */ |
|
57 | + |
|
58 | + abstract public function enhance(Route $route); |
|
59 | 59 | |
60 | 60 | } |
@@ -41,7 +41,9 @@ |
||
41 | 41 | { |
42 | 42 | if ($route->hasMetadata($this->metadataStrategyKey)) { |
43 | 43 | $route->setStrategy($route->getMetadata($this->metadataStrategyKey)); |
44 | - } else $route->setStrategy(null); |
|
44 | + } else { |
|
45 | + $route->setStrategy(null); |
|
46 | + } |
|
45 | 47 | |
46 | 48 | $this->enhance($route); |
47 | 49 |
@@ -20,16 +20,16 @@ |
||
20 | 20 | interface MatcherAwareInterface |
21 | 21 | { |
22 | 22 | |
23 | - /** |
|
24 | - * @param \Codeburner\Router\Matcher $matcher |
|
25 | - */ |
|
23 | + /** |
|
24 | + * @param \Codeburner\Router\Matcher $matcher |
|
25 | + */ |
|
26 | 26 | |
27 | - public function setMatcher(\Codeburner\Router\Matcher $matcher); |
|
27 | + public function setMatcher(\Codeburner\Router\Matcher $matcher); |
|
28 | 28 | |
29 | - /** |
|
30 | - * @return \Codeburner\Router\Matcher |
|
31 | - */ |
|
29 | + /** |
|
30 | + * @return \Codeburner\Router\Matcher |
|
31 | + */ |
|
32 | 32 | |
33 | - public function getMatcher(); |
|
33 | + public function getMatcher(); |
|
34 | 34 | |
35 | 35 | } |
36 | 36 | \ No newline at end of file |