-
Notifications
You must be signed in to change notification settings - Fork 0
/
Router.php
278 lines (254 loc) · 5.94 KB
/
Router.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<?php
namespace SnooPHP\Http;
/**
* Route manager
*
* When called, analyzes the incoming request
* and execute first matching route, if any
*
* @author sneppy
*/
class Router
{
/**
* @var string $base base path to prepend
*/
protected $base;
/**
* @var Route[] $routes list of configured routes
*/
protected $routes = [];
/**
* @var Callable $errorAction action executed on 404
*/
protected $errorAction = null;
/**
* @var array $defaultHeaders headers to append to all response
*/
protected $defaultHeaders = [];
/**
* Create a new router
*
* Note that base only affects routes creation, not routes matching
*
* @param string $base base path
*/
public function __construct($base = "")
{
$this->base = $base;
}
/**
* Get or set router base
*
* @param string|null $base new base for router
*
* @return String
*/
public function base($base = null)
{
return $this->base;
}
/**
* Handle request
*
* Also appends default headers if ignoreDefaultHeaders is not true
*
* @param Request $request request to handle
*
* @return Response|null|bool
*/
public function handle(Request $request)
{
$res = $this->match($request);
if ($res && !$res->ignoreDefaultHeaders) $res->header($this->defaultHeaders);
return $res;
}
/**
* Add a GET route
*
* @param string $url route url
* @param Callable $action action to perform on match
*
* @return Route
*/
public function get($url, Callable $action = null)
{
return $this->add($url, "GET", $action);
}
/**
* Add a POST route
*
* @param string $url route url
* @param Callable $action action to perform on match
*
* @return Route
*/
public function post($url, Callable $action = null)
{
return $this->add($url, "POST", $action);
}
/**
* Add a PUT route
*
* @param string $url route url
* @param Callable $action action to perform on match
*
* @return Route
*/
public function put($url, Callable $action = null)
{
return $this->add($url, "PUT", $action);
}
/**
* Add a DELETE route
*
* @param string $url route url
* @param Callable $action action to perform on match
*
* @return Route
*/
public function delete($url, Callable $action = null)
{
return $this->add($url, "DELETE", $action);
}
/**
* add an OPTIONS route
*
* OPTIONS route are usually required to allow CORS requests
*
* @param string $url router url
* @param Callable $action action to perform on match
*
* @return Route
*/
public function options($url, Callable $action = null)
{
return $this->add($url, "OPTIONS", $action);
}
/**
* Get or set error action
*
* @param Callable|null $action action to be executed
*
* @return Callable
*/
public function error(Callable $action = null)
{
if ($action) $this->errorAction = $action;
return $this->errorAction;
}
/**
* Error response
*
* @param Request|null $request incoming request
*
* @return Response
*/
public function onError(Request $request = null)
{
$request = $request ?: Request::current();
$res = $this->error()($request);
if ($res && !$res->ignoreDefaultHeaders) $res->header($this->defaultHeaders);
return $res;
}
/**
* Alias for error action
*
* @deprecated v2.2
* @see Router::error
*/
public function errorAction(Callable $action = null)
{
return $this->error($action);
}
/**
* Add one or more default headers
*
* also returns current default headers
*
* @param array $headers header(s) to be added
*
* @return array list of current default headers
*/
public function defaultHeader(array $headers = [])
{
$this->defaultHeaders = array_merge($this->defaultHeaders, $headers);
return $this->defaultHeaders;
}
/**
* Remove one or more default headers
*
* laso returns current default headers
*
* @param string|array $headers header(s) to be removed
*
* @return array list of current default headers
*/
public function removeDefaultHeader($headers = "")
{
foreach ($headers as $header)
foreach ($this->defaultHeaders as $h => $v)
if ($header === $h) unset($this->defaultHeaders[$h]);
return $this->defaultHeaders;
}
/**
* Return response of first route that matches, false otherwise
*
* If a route action returns false, following routes have a chance at matching
* After the first match the function returns. In case of possible multiple matches
* the route declared first is taken as valid (too expensive to check match length).
* Pay attention to "greedy" routes (with + or *) can shadow other routes.
*
* @param Request $request request to test
*
* @return Response|bool
*/
protected function match(Request $request)
{
foreach ($this->routes as $route)
{
if ($route->method() === $request->method() && $route->match($request->url()))
{
if ($action = $route->action())
{
try
{
$response = $action($request, $route->args());
if ($response !== false) return $response;
}
catch (AbortRouteException $abort)
{
return $abort->response();
}
}
else
// Match found but no action to perform
return null;
}
}
// No match found
return false;
}
/**
* Add a generic route
*
* Use dedicated methods:
* @see Router::get
* @see Router::post
* @see Router::put
* @see Router::delete
*
* @param string $url route url
* @param string $method route method
* @param Callable $action route action
*
* @return Route
*/
protected function add($url, $method, Callable $action)
{
$url = $this->base !== "" && $url === "/" ? $this->base : $this->base.$url;
$route = new Route($url, $method, $action);
$this->routes[] = $route;
return $route;
}
}