-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathRouter.php
More file actions
246 lines (211 loc) · 6.16 KB
/
Router.php
File metadata and controls
246 lines (211 loc) · 6.16 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
<?php
namespace Utopia;
use Exception;
class Router
{
/**
* Placeholder token for params in paths.
*/
public const PLACEHOLDER_TOKEN = ':::';
public const WILDCARD_TOKEN = '*';
protected static bool $allowOverride = false;
/**
* @var array<string,Route[]>
*/
protected static array $routes = [
App::REQUEST_METHOD_GET => [],
App::REQUEST_METHOD_POST => [],
App::REQUEST_METHOD_PUT => [],
App::REQUEST_METHOD_PATCH => [],
App::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
*/
public static function getRoutes(): array
{
return self::$routes;
}
/**
* Get allow override
*
*
* @return bool
*/
public static function getAllowOverride(): bool
{
return self::$allowOverride;
}
/**
* Set Allow override
*
*
* @param bool $value
* @return void
*/
public static function setAllowOverride(bool $value): void
{
self::$allowOverride = $value;
}
/**
* Add route to router.
*
* @param \Utopia\Route $route
* @return void
* @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($path, $key, $index);
}
self::$routes[$route->getMethod()][$path] = $route;
}
/**
* Add route to router.
*
* @param \Utopia\Route $route
* @return void
* @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($alias, $key, $index);
}
self::$routes[$route->getMethod()][$alias] = $route;
}
/**
* Match route against the method and path.
*
* @param string $method
* @param string $path
* @return \Utopia\Route|null
*/
public static function match(string $method, string $path): Route|null
{
if (!array_key_exists($method, self::$routes)) {
return null;
}
$parts = array_values(array_filter(explode('/', $path)));
$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])) {
$route = self::$routes[$method][$match];
$route->setMatchedPath($match);
return $route;
}
}
/**
* Match root wildcard.
*/
$match = self::WILDCARD_TOKEN;
if (array_key_exists($match, self::$routes[$method])) {
$route = self::$routes[$method][$match];
$route->setMatchedPath($match);
return $route;
}
/**
* 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])) {
$route = self::$routes[$method][$match];
$route->setMatchedPath($match);
return $route;
}
}
return null;
}
/**
* Get all combinations of the given set.
*
* @param array $set
* @return iterable
*/
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
*
* @param string $path
* @return array
*/
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
*
* @return void
*/
public static function reset(): void
{
self::$params = [];
self::$routes = [
App::REQUEST_METHOD_GET => [],
App::REQUEST_METHOD_POST => [],
App::REQUEST_METHOD_PUT => [],
App::REQUEST_METHOD_PATCH => [],
App::REQUEST_METHOD_DELETE => [],
];
}
}