-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRoute.php
458 lines (401 loc) · 10.6 KB
/
Route.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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
<?php declare(strict_types=1);
/**
* This file is the main entry point for the PhpSlides application.
* It declares strict types and defines the namespace for the application.
* It also imports the necessary classes and interfaces.
*
* @package Router
* @version ^1.4.1
* @since 1.0.0
* @link https://github.com/PhpSlides/phpslides
* @author Dave Conco <info@dconco.dev>
* @license MIT
*/
namespace PhpSlides\Router;
use Closure;
use PhpSlides\Exception;
use PhpSlides\Core\Traits\FileHandler;
use PhpSlides\Core\Controller\Controller;
use PhpSlides\Router\Interface\RouteInterface;
/**
* -------------------------------------------------------------------------------
*
* CREATE A NEW ROUTE
*
* Create route & api that accept different methods and render to the client area
*
* @author Dave Conco <info@dconco.dev>
* @link https://github.com/PhpSlides/phpslides
* @category api, router, php router, php
* @copyright 2024 Dave Conco
* @package PhpSlides
* @version ^1.4.1
* @return self
* |
*
* -------------------------------------------------------------------------------
*/
class Route extends Controller implements RouteInterface
{
private ?array $guards = null;
private mixed $action = null;
private ?string $use = null;
private ?string $file = null;
private ?array $mapRoute = null;
private bool $caseSensitive = false;
private ?Closure $handleInvalidParameterType = null;
private static array $routes;
private static array $route;
private static ?array $redirect = null;
private static ?array $method = null;
private static ?array $any = null;
private static ?array $view = null;
private static ?array $map = null;
/**
* ------------------------------------------------------------------------
*
* ANY REQUEST FROM ROUTE
*
* Accept all type of request or any other method
* |
*
* @param array|string $route This describes the URL string to check if it matches the request URL, use array of URLs for multiple request
* @param mixed $callback Can contain any types of data to return to the client side/browser.
*
* ------------------------------------------------------------------------
*/
public static function any(
array|string $route,
mixed $callback,
string $method = '*',
): self {
self::$any = [
'route' => $route,
'method' => $method,
'callback' => $callback,
];
self::$route[] = $route;
return new self();
}
/**
* Route Mapping method
* Check out documentation for using Map method
*
* @link https://github.com/phpslides/phpslides
* @param string $method Request method
* @param string|array $route Route parameter
*/
public static function map(string $method, string|array $route): self
{
self::$map = [
'method' => $method,
'route' => $route,
];
self::$route[] = $route;
return new self();
}
/**
* name METHOD
* Give a route a name for later use
*
* @param string $name Set the name of the route
*/
public function name(string $name): self
{
if (is_array(end(self::$route))) {
for ($i = 0; $i < count(end(self::$route)); $i++) {
add_route_name("$name::$i", end(self::$route)[$i]);
self::$routes["$name::$i"] = end(self::$route)[$i];
}
} else {
add_route_name($name, end(self::$route));
self::$routes[$name] = end(self::$route);
}
return $this;
}
/**
* Route Mapping
*
* @param string $route
* @param Closure $callback
*/
public function route(string $route, callable $callback): self
{
$route = rtrim(self::$map['route'], '/') . '/' . ltrim($route, '/');
if (self::$map) {
$this->mapRoute = [
'route' => $route,
'method' => '*',
'callback' => $callback,
];
} else {
throw new Exception('There is no map to route.');
}
self::$route[] = $route;
return $this;
}
/**
* Action method
* In outputting information to the client area
*
* @param mixed $callback
*/
public function action(mixed $callback): self
{
if (self::$map) {
$this->action = $callback;
}
return $this;
}
/**
* Controller method
* Work with map controller route
*
* @param string $controller
* @return void
*/
public function use(string $controller): self
{
if (self::$map) {
$this->use = $controller;
}
return $this;
}
/**
* `file` method
* return view file directly
*
* @param string $file
*/
public function file(string $file): self
{
if (self::$map) {
$this->file = $file;
}
return $this;
}
/**
* Sets a closure to handle invalid parameter types.
*
* This method allows you to define a custom closure that will be executed
* when an invalid parameter type is encountered.
*
* @param Closure $closure The closure to handle invalid parameter types.
* @return self Returns the current instance for method chaining.
*/
public function handleInvalidParameterType(Closure $closure): self
{
$this->handleInvalidParameterType = $closure;
return $this;
}
public function caseSensitive(): self
{
$this->caseSensitive = true;
return $this;
}
/**
* Applies Authentication Guard to the current route.
*
* @param string ...$guards String parameters of registered guards.
* @return self
*/
public function withGuard(string ...$guards): self
{
if (self::$map || self::$method || self::$view) {
$this->guards = $guards;
}
return $this;
}
/**
* ---------------------------------------------------------------------------
*
* VIEW ROUTE METHOD
*
* Route only needs to return a view; you may provide an array for multiple request
*
* View Route does not accept `{?} URL parameters` in route, use GET method instead
*
* @param array|string $route This describes the URL string to render, use array of strings for multiple request
* @param string $view It renders this param, it can be functions to render, view:: to render or strings of text or documents
* |
*
* ---------------------------------------------------------------------------
*/
public static function view(array|string $route, string $view): self
{
self::$view = [
'route' => $route,
'view' => $view,
];
self::$route[] = $route;
return new self();
}
/**
* --------------------------------------------------------------
*
* REDIRECT ROUTE METHOD
*
* This method redirects the routes URL to the giving URL directly
*
* @param string $route The requested url to redirect
* @param string $new_url The new URL route to redirect to
* @param int $code The code for redirect method, 301 for permanent redirecting & 302 for temporarily redirect.
*
* ---------------------------------------------------------------
*/
public static function redirect(
string $route,
string $new_url,
int $code = 302,
): self {
self::$redirect = [
'route' => $route,
'new_url' => $new_url,
'code' => $code,
];
self::$route[] = $route;
return new self();
}
/**
* --------------------------------------------------------------
*
* GET ROUTE METHOD
*
* Cannot evaluate {?} URL parameters in route if it's an array
*
* --------------------------------------------------------------
*/
public static function get(array|string $route, $callback): self
{
self::$method = [
'route' => $route,
'method' => 'GET',
'callback' => $callback,
];
self::$route[] = $route;
return new self();
}
/**
* --------------------------------------------------------------
*
* POST ROUTE METHOD
*
* Cannot evaluate {?} URL parameters in route if it's an array
*
* --------------------------------------------------------------
*/
public static function post(array|string $route, $callback): self
{
self::$method = [
'route' => $route,
'method' => 'POST',
'callback' => $callback,
];
self::$route[] = $route;
return new self();
}
/**
* --------------------------------------------------------------
*
* PUT ROUTE METHOD
*
* Cannot evaluate {?} URL parameters in route if it's an array
*
* --------------------------------------------------------------
*/
public static function put(array|string $route, $callback): self
{
self::$method = [
'route' => $route,
'method' => 'PUT',
'callback' => $callback,
];
self::$route[] = $route;
return new self();
}
/**
* --------------------------------------------------------------
*
* PATCH ROUTE METHOD
*
* Cannot evaluate {?} URL parameters in route if it's an array
*
* --------------------------------------------------------------
*/
public static function patch(array|string $route, $callback): self
{
self::$method = [
'route' => $route,
'method' => 'PATCH',
'callback' => $callback,
];
self::$route[] = $route;
return new self();
}
/**
* --------------------------------------------------------------
*
* DELETE ROUTE METHOD
*
* Cannot evaluate {?} URL parameters in route if it's an array
*
* --------------------------------------------------------------
*/
public static function delete(array|string $route, $callback): self
{
self::$method = [
'route' => $route,
'method' => 'DELETE',
'callback' => $callback,
];
self::$route[] = $route;
return new self();
}
public function __destruct()
{
$route_index = end(self::$route);
$route_index = is_array($route_index) ? $route_index[0] : $route_index;
$GLOBALS['__registered_routes'][$route_index]['caseSensitive'] =
$this->caseSensitive;
if (self::$map !== null) {
$GLOBALS['__registered_routes'][$route_index]['map'] = self::$map;
}
if ($this->guards !== null) {
$GLOBALS['__registered_routes'][$route_index]['guards'] =
$this->guards;
}
if (self::$redirect !== null) {
$GLOBALS['__registered_routes'][$route_index]['redirect'] =
self::$redirect;
}
if ($this->action !== null) {
$GLOBALS['__registered_routes'][$route_index]['action'] =
$this->action;
}
if ($this->mapRoute !== null) {
$GLOBALS['__registered_routes'][$route_index]['mapRoute'] =
$this->mapRoute;
}
if (self::$any !== null) {
$GLOBALS['__registered_routes'][$route_index]['any'] = self::$any;
}
if ($this->use !== null) {
$GLOBALS['__registered_routes'][$route_index]['use'] = $this->use;
}
if ($this->file !== null) {
$GLOBALS['__registered_routes'][$route_index]['file'] = $this->file;
}
if ($this->handleInvalidParameterType !== null) {
$GLOBALS['__registered_routes'][$route_index][
'handleInvalidParameterType'
] = $this->handleInvalidParameterType;
}
if (self::$method !== null) {
$GLOBALS['__registered_routes'][$route_index]['method'] =
self::$method;
}
if (self::$view !== null) {
$GLOBALS['__registered_routes'][$route_index]['view'] = self::$view;
}
}
}