-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathRouter.php
More file actions
230 lines (195 loc) · 6 KB
/
Router.php
File metadata and controls
230 lines (195 loc) · 6 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
<?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;
/**
* @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 ($params as $key => $index) {
$route->setPathParam($key, $index, $path);
}
self::$routes[$route->getMethod()][$path] = $route;
}
/**
* Add route to router.
*
* @throws \Exception
*/
public static function addRouteAlias(string $path, Route $route): void
{
[$alias, $params] = self::preparePath($path);
if (\array_key_exists($alias, self::$routes[$route->getMethod()]) && !self::$allowOverride) {
throw new Exception("Route for ({$route->getMethod()}:{$alias}) already registered.");
}
foreach ($params as $key => $index) {
$route->setPathParam($key, $index, $alias);
}
self::$routes[$route->getMethod()][$alias] = $route;
}
/**
* Match route against the method and path.
*
* Returns the matched Route together with the prepared-path key it was
* found under, so callers can resolve path params without mutating the
* shared Route singleton.
*
* @return array{0: Route, 1: string}|null
*/
public static function match(string $method, string $path): ?array
{
if (!\array_key_exists($method, self::$routes)) {
return 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);
$match = implode(
'/',
array_replace(
$parts,
array_fill_keys($sample, self::PLACEHOLDER_TOKEN),
),
);
if (\array_key_exists($match, self::$routes[$method])) {
return [self::$routes[$method][$match], $match];
}
}
/**
* Match root wildcard.
*/
$match = self::WILDCARD_TOKEN;
if (\array_key_exists($match, self::$routes[$method])) {
return [self::$routes[$method][$match], $match];
}
/**
* Match wildcard for path segments.
*/
foreach ($parts as $part) {
$current = ($current ?? '') . "{$part}/";
$match = $current . self::WILDCARD_TOKEN;
if (\array_key_exists($match, self::$routes[$method])) {
return [self::$routes[$method][$match], $match];
}
}
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::$routes = [
Http::REQUEST_METHOD_GET => [],
Http::REQUEST_METHOD_POST => [],
Http::REQUEST_METHOD_PUT => [],
Http::REQUEST_METHOD_PATCH => [],
Http::REQUEST_METHOD_DELETE => [],
];
}
}