-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathRouter.php
More file actions
290 lines (243 loc) · 8.05 KB
/
Copy pathRouter.php
File metadata and controls
290 lines (243 loc) · 8.05 KB
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
279
280
281
282
283
284
285
286
287
288
289
290
<?php
namespace Utopia\Http;
use Exception;
class Router
{
/**
* Placeholder token for params in paths.
*/
public const string PLACEHOLDER_TOKEN = ':::';
public const string WILDCARD_TOKEN = '*';
protected static bool $allowOverride = false;
/**
* Method-agnostic wildcard route used when no method-specific route matches.
*/
protected static ?Route $wildcard = null;
/**
* @var array<string,Route[]>
*/
protected static array $routes = [
Http::REQUEST_METHOD_GET => [],
Http::REQUEST_METHOD_POST => [],
Http::REQUEST_METHOD_PUT => [],
Http::REQUEST_METHOD_PATCH => [],
Http::REQUEST_METHOD_DELETE => [],
];
/**
* Contains the positions of all params in the paths of all registered Routes.
*
* @var array<int>
*/
protected static array $params = [];
/**
* Get all registered routes.
*
* @return array<string, Route[]>
*/
public static function getRoutes(): array
{
return self::$routes;
}
/**
* Get allow override
*
*/
public static function getAllowOverride(): bool
{
return self::$allowOverride;
}
/**
* Set Allow override
*
*/
public static function setAllowOverride(bool $value): void
{
self::$allowOverride = $value;
}
/**
* Add route to router.
*
* @throws \Exception
*/
public static function addRoute(Route $route): void
{
[$path, $params] = self::preparePath($route->getPath());
if (!\array_key_exists($route->getMethod(), self::$routes)) {
throw new Exception("Method ({$route->getMethod()}) not supported.");
}
if (\array_key_exists($path, self::$routes[$route->getMethod()]) && !self::$allowOverride) {
throw new Exception("Route for ({$route->getMethod()}:{$path}) already registered.");
}
foreach ($route->getAdditionalMethods() as $method) {
if (!\array_key_exists($method, self::$routes)) {
throw new Exception("Method ({$method}) not supported.");
}
if ($route->getPath() === '') {
throw new Exception('Additional route methods are not supported for the wildcard route.');
}
if (\array_key_exists($path, self::$routes[$method]) && !self::$allowOverride) {
throw new Exception("Route for ({$method}:{$path}) already registered.");
}
}
foreach ($params as $key => $index) {
$route->setPathParam($key, $index, $path);
}
self::$routes[$route->getMethod()][$path] = $route;
foreach ($route->getAdditionalMethods() as $method) {
self::$routes[$method][$path] = $route;
}
}
/**
* Validate that a route alias can be registered for every supplied method.
*
* @param array<int, string> $methods
*
* @throws Exception
*/
public static function validateRouteAlias(string $path, array $methods): void
{
[$alias] = self::preparePath($path);
foreach ($methods as $method) {
if (!\array_key_exists($method, self::$routes)) {
throw new Exception("Method ({$method}) not supported.");
}
if (\array_key_exists($alias, self::$routes[$method]) && !self::$allowOverride) {
throw new Exception("Route for ({$method}:{$alias}) already registered.");
}
}
}
/**
* Add route to router.
*
* @throws \Exception
*/
public static function addRouteAlias(string $path, Route $route, ?string $method = null): void
{
$method ??= $route->getMethod();
if (!\array_key_exists($method, self::$routes)) {
throw new Exception("Method ({$method}) not supported.");
}
[$alias, $params] = self::preparePath($path);
if (\array_key_exists($alias, self::$routes[$method]) && !self::$allowOverride) {
throw new Exception("Route for ({$method}:{$alias}) already registered.");
}
foreach ($params as $key => $index) {
$route->setPathParam($key, $index, $alias);
}
self::$routes[$method][$alias] = $route;
}
/**
* Register a method-agnostic catch-all route, used when nothing else matches.
*/
public static function setWildcard(?Route $route): void
{
self::$wildcard = $route;
}
/**
* Find the route registered for a request's method and path.
*/
public static function match(string $method, string $path): ?RouteMatch
{
if (!\array_key_exists($method, self::$routes)) {
return self::$wildcard !== null ? new RouteMatch(self::$wildcard, []) : null;
}
$parts = array_values(array_filter(explode('/', $path), fn($segment) => $segment !== ''));
$length = \count($parts) - 1;
$filteredParams = array_filter(self::$params, fn($i) => $i <= $length);
foreach (self::combinations($filteredParams) as $sample) {
$sample = array_filter($sample, fn(int $i) => $i <= $length);
$template = implode(
'/',
array_replace(
$parts,
array_fill_keys($sample, self::PLACEHOLDER_TOKEN),
),
);
if (\array_key_exists($template, self::$routes[$method])) {
$route = self::$routes[$method][$template];
return new RouteMatch($route, $route->resolveParams($path, $template));
}
}
/**
* Match root wildcard.
*/
$template = self::WILDCARD_TOKEN;
if (\array_key_exists($template, self::$routes[$method])) {
return new RouteMatch(self::$routes[$method][$template], []);
}
/**
* Match wildcard for path segments.
*/
foreach ($parts as $part) {
$current = ($current ?? '') . "{$part}/";
$template = $current . self::WILDCARD_TOKEN;
if (\array_key_exists($template, self::$routes[$method])) {
return new RouteMatch(self::$routes[$method][$template], []);
}
}
if (self::$wildcard !== null) {
return new RouteMatch(self::$wildcard, []);
}
return null;
}
/**
* Get all combinations of the given set.
*
* @param array<int, mixed> $set
* @return iterable<array<int, mixed>>
*/
protected static function combinations(array $set): iterable
{
yield [];
$results = [[]];
foreach ($set as $element) {
foreach ($results as $combination) {
$ret = array_merge([$element], $combination);
$results[] = $ret;
yield $ret;
}
}
}
/**
* Prepare path for matching
*
* @return array{0: string, 1: array<string, int>}
*/
public static function preparePath(string $path): array
{
$parts = array_values(array_filter(explode('/', $path)));
$prepare = '';
$params = [];
foreach ($parts as $key => $part) {
if ($key !== 0) {
$prepare .= '/';
}
if (str_starts_with($part, ':')) {
$prepare .= self::PLACEHOLDER_TOKEN;
$params[ltrim($part, ':')] = $key;
if (!\in_array($key, self::$params)) {
self::$params[] = $key;
}
} else {
$prepare .= $part;
}
}
return [$prepare, $params];
}
/**
* Reset router
*/
public static function reset(): void
{
self::$params = [];
self::$wildcard = null;
self::$allowOverride = false;
self::$routes = [
Http::REQUEST_METHOD_GET => [],
Http::REQUEST_METHOD_POST => [],
Http::REQUEST_METHOD_PUT => [],
Http::REQUEST_METHOD_PATCH => [],
Http::REQUEST_METHOD_DELETE => [],
];
}
}