-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathRouter.php
807 lines (707 loc) · 24.4 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
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
<?php
/**
* @Package: Router - simple router class for php
* @Class : Router
* @Author : izni burak demirtas / @izniburak <info@burakdemirtas.org>
* @Web : https://burakdemirtas.org
* @URL : https://github.com/izniburak/php-router
* @Licence: The MIT License (MIT) - Copyright (c) - http://opensource.org/licenses/MIT
*/
namespace Buki\Router;
use Closure;
use Exception;
use ReflectionMethod;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/**
* Class Router
*
* @method $this any(string $route, string|array|Closure $callback, array $options = [])
* @method $this get(string $route, string|array|Closure $callback, array $options = [])
* @method $this post(string $route, string|array|Closure $callback, array $options = [])
* @method $this put(string $route, string|array|Closure $callback, array $options = [])
* @method $this delete(string $route, string|array|Closure $callback, array $options = [])
* @method $this patch(string $route, string|array|Closure $callback, array $options = [])
* @method $this head(string $route, string|array|Closure $callback, array $options = [])
* @method $this options(string $route, string|array|Closure $callback, array $options = [])
* @method $this ajax(string $route, string|array|Closure $callback, array $options = [])
* @method $this xget(string $route, string|array|Closure $callback, array $options = [])
* @method $this xpost(string $route, string|array|Closure $callback, array $options = [])
* @method $this xput(string $route, string|array|Closure $callback, array $options = [])
* @method $this xdelete(string $route, string|array|Closure $callback, array $options = [])
* @method $this xpatch(string $route, string|array|Closure $callback, array $options = [])
*
* @package Buki\Router
* @see https://github.com/izniburak/php-router/wiki
*/
class Router
{
/** Router Version */
const VERSION = '3.0.0';
/** @var string $baseFolder Base folder of the project */
protected string $baseFolder;
/** @var array $routes Routes list */
protected array $routes = [];
/** @var array $groups List of group routes */
protected array $groups = [];
/** @var array $patterns Pattern definitions for parameters of Route */
protected array $patterns = [
':all' => '(.*)',
':any' => '([^/]+)',
':id' => '(\d+)',
':int' => '(\d+)',
':number' => '([+-]?([0-9]*[.])?[0-9]+)',
':float' => '([+-]?([0-9]*[.])?[0-9]+)',
':bool' => '(true|false|1|0)',
':string' => '([\w\-_]+)',
':slug' => '([\w\-_]+)',
':uuid' => '([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})',
':date' => '([0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1]))',
];
/** @var array $namespaces Namespaces of Controllers and Middlewares files */
protected array $namespaces = [
'middlewares' => '',
'controllers' => '',
];
/** @var array $path Paths of Controllers and Middlewares files */
protected array $paths = [
'controllers' => 'Controllers',
'middlewares' => 'Middlewares',
];
/** @var string $mainMethod Main method for controller */
protected string $mainMethod = 'main';
/** @var string $cacheFile Cache file */
protected string $cacheFile = '';
/** @var bool $cacheLoaded Cache is loaded? */
protected bool $cacheLoaded = false;
/** @var Closure $errorCallback Route error callback function */
protected Closure $errorCallback;
/** @var Closure $notFoundCallback Route exception callback function */
protected Closure $notFoundCallback;
/** @var array $middlewares General middlewares for per request */
protected array $middlewares = [];
/** @var array $routeMiddlewares Route middlewares */
protected array $routeMiddlewares = [];
/** @var array $middlewareGroups Middleware Groups */
protected array $middlewareGroups = [];
/** @var RouterRequest */
private RouterRequest $request;
/** @var bool */
private bool $debug = false;
/**
* Router constructor method.
*
* @param array $params
* @param Request|null $request
* @param Response|null $response
*/
public function __construct(array $params = [], Request $request = null, Response $response = null)
{
$this->baseFolder = realpath(getcwd());
if (isset($params['debug']) && is_bool($params['debug'])) {
$this->debug = $params['debug'];
}
// RouterRequest
$request = $request ?? Request::createFromGlobals();
$response = $response ?? new Response('', Response::HTTP_OK, ['content-type' => 'text/html']);
$this->request = new RouterRequest($request, $response);
$this->notFoundCallback = function (Request $request, Response $response) {
$response->setStatusCode(Response::HTTP_NOT_FOUND);
$response->setContent('Looks like page not found or something went wrong. Please try again.');
return $response;
};
$this->errorCallback = function (Request $request, Response $response) {
$response->setStatusCode(Response::HTTP_INTERNAL_SERVER_ERROR);
$response->setContent('Oops! Something went wrong. Please try again.');
return $response;
};
$this->setPaths($params);
$this->loadCache();
}
/**
* Add route method;
* Get, Post, Put, Delete, Patch, Any, Ajax...
*
* @param $method
* @param $params
*
* @return mixed
* @throws
*/
public function __call($method, $params)
{
if ($this->cacheLoaded) {
return true;
}
if (is_null($params)) {
return false;
}
if (!in_array(strtoupper($method), explode('|', $this->request->validMethods()))) {
$this->exception("Method is not valid. [{$method}]");
}
[$route, $callback] = $params;
$options = $params[2] ?? null;
if (str_contains($route, ':')) {
$route1 = $route2 = '';
foreach (explode('/', $route) as $key => $value) {
if ($value != '') {
if (!strpos($value, '?')) {
$route1 .= '/' . $value;
} else {
if ($route2 == '') {
$this->addRoute($route1, $method, $callback, $options);
}
$route2 = $route1 . '/' . str_replace('?', '', $value);
$this->addRoute($route2, $method, $callback, $options);
$route1 = $route2;
}
}
}
if ($route2 == '') {
$this->addRoute($route1, $method, $callback, $options);
}
} else {
$this->addRoute($route, $method, $callback, $options);
}
return $this;
}
/**
* Add new route method one or more http methods.
*
* @param string $methods
* @param string $route
* @param string|array|closure $callback
* @param array $options
*
* @return void
*/
public function add(string $methods, string $route, $callback, array $options = []): void
{
if ($this->cacheLoaded) {
return;
}
if (strstr($methods, '|')) {
foreach (array_unique(explode('|', $methods)) as $method) {
if (!empty($method)) {
$this->addRoute($route, $method, $callback, $options);
}
}
} else {
$this->addRoute($route, $methods, $callback, $options);
}
}
/**
* Add new route rules pattern; String or Array
*
* @param array|string $pattern
* @param string|null $attr
*
* @return mixed
* @throws
*/
public function pattern(array|string $pattern, string $attr = null)
{
if (is_array($pattern)) {
foreach ($pattern as $key => $value) {
if (in_array($key, array_keys($this->patterns))) {
$this->exception($key . ' pattern cannot be changed.');
}
$this->patterns[$key] = '(' . $value . ')';
}
} else {
if (in_array($pattern, array_keys($this->patterns))) {
$this->exception($pattern . ' pattern cannot be changed.');
}
$this->patterns[$pattern] = '(' . $attr . ')';
}
return true;
}
/**
* Run Routes
*
* @return void
* @throws
*/
public function run(): void
{
try {
$uri = $this->getRequestUri();
$method = $this->request->getMethod();
$searches = array_keys($this->patterns);
$replaces = array_values($this->patterns);
$foundRoute = false;
foreach ($this->routes as $data) {
$route = $data['route'];
if (!$this->request->validMethod($data['method'], $method)) {
continue;
}
// Direct Route Match
if ($route === $uri) {
$foundRoute = true;
$this->runRouteMiddleware($data, 'before');
$this->runRouteCommand($data['callback']);
$this->runRouteMiddleware($data, 'after');
break;
// Parameter Route Match
} elseif (strstr($route, ':') !== false) {
$route = str_replace($searches, $replaces, $route);
if (preg_match('#^' . $route . '$#', $uri, $matched)) {
$foundRoute = true;
$this->runRouteMiddleware($data, 'before');
array_shift($matched);
$matched = array_map(function ($value) {
return trim(urldecode($value));
}, $matched);
foreach ($data['groups'] as $group) {
if (strstr($group, ':') !== false) {
array_shift($matched);
}
}
$this->runRouteCommand($data['callback'], $matched);
$this->runRouteMiddleware($data, 'after');
break;
}
}
}
// If it originally was a HEAD request, clean up after ourselves by emptying the output buffer
if ($this->request()->isMethod('HEAD')) {
ob_end_clean();
}
if ($foundRoute === false) {
$this->response()->setStatusCode(Response::HTTP_NOT_FOUND);
$this->routerCommand()->sendResponse(
call_user_func($this->notFoundCallback, $this->request(), $this->response())
);
}
} catch (Exception $e) {
if ($this->debug) {
throw $e;
}
$this->response()->setStatusCode(Response::HTTP_INTERNAL_SERVER_ERROR);
$this->routerCommand()->sendResponse(
call_user_func($this->errorCallback, $this->request(), $this->response(), $e)
);
}
}
/**
* Routes Group
*
* @param string $prefix
* @param Closure $callback
* @param array $options
*
* @return bool
*/
public function group(string $prefix, Closure $callback, array $options = []): bool
{
if ($this->cacheLoaded) {
return true;
}
$group = [];
$group['route'] = $this->clearRouteName($prefix);
$group['before'] = $this->calculateMiddleware($options['before'] ?? []);
$group['after'] = $this->calculateMiddleware($options['after'] ?? []);
array_push($this->groups, $group);
call_user_func_array($callback, [$this]);
$this->endGroup();
return true;
}
/**
* Added route from methods of Controller file.
*
* @param string $route
* @param string $controller
* @param array $options
*
* @return void
* @throws
*/
public function controller(string $route, string $controller, array $options = []): void
{
if ($this->cacheLoaded) {
return;
}
$only = $options['only'] ?? [];
$except = $options['except'] ?? [];
$controller = $this->resolveClassName($controller);
$classMethods = get_class_methods($controller);
if ($classMethods) {
foreach ($classMethods as $methodName) {
if (!str_contains($methodName, '__')) {
$method = 'any';
foreach (explode('|', $this->request->validMethods()) as $m) {
if (stripos($methodName, $m = strtolower($m), 0) === 0) {
$method = $m;
break;
}
}
$methodVar = lcfirst(
preg_replace('/' . $method . '_?/i', '', $methodName, 1)
);
$methodVar = strtolower(preg_replace('%([a-z]|[0-9])([A-Z])%', '\1-\2', $methodVar));
if ((!empty($only) && !in_array($methodVar, $only))
|| (!empty($except) && in_array($methodVar, $except))) {
continue;
}
$ref = new ReflectionMethod($controller, $methodName);
$endpoints = [];
foreach ($ref->getParameters() as $param) {
$typeHint = $param->hasType() ? $param->getType()->getName() : null;
if (!in_array($typeHint, ['int', 'float', 'string', 'bool']) && $typeHint !== null) {
continue;
}
$pattern = isset($this->patterns[":{$typeHint}"]) ? ":{$typeHint}" : ":any";
$endpoints[] = $param->isOptional() ? "{$pattern}?" : $pattern;
}
$value = ($methodVar === $this->mainMethod ? $route : $route . '/' . $methodVar);
$this->{$method}(
($value . '/' . implode('/', $endpoints)),
($controller . '@' . $methodName),
$options
);
}
}
unset($ref);
}
}
/**
* Routes Not Found Error function.
*
* @param Closure $callback
*
* @return void
*/
public function notFound(Closure $callback): void
{
$this->notFoundCallback = $callback;
}
/**
* Routes exception errors function.
*
* @param Closure $callback
*
* @return void
*/
public function error(Closure $callback): void
{
$this->errorCallback = $callback;
}
/**
* Display all Routes.
*
* @return void
*/
public function getList(): void
{
$routes = var_export($this->getRoutes(), true);
die("<pre>{$routes}</pre>");
}
/**
* Get all Routes
*
* @return array
*/
public function getRoutes(): array
{
return $this->routes;
}
/**
* Cache all routes
*
* @return bool
*
* @throws Exception
*/
public function cache(): bool
{
foreach ($this->getRoutes() as $key => $route) {
if (!is_string($route['callback'])) {
$this->exception('Routes cannot contain a Closure/Function callback while caching.');
}
}
$cacheContent = '<?php return ' . var_export($this->getRoutes(), true) . ';' . PHP_EOL;
if (false === file_put_contents($this->cacheFile, $cacheContent)) {
$this->exception('Routes cache file could not be written.');
}
return true;
}
/**
* Set general middlewares
*
* @param array $middlewares
*
* @return void
*/
public function setMiddleware(array $middlewares): void
{
$this->middlewares = $middlewares;
}
/**
* Set Route middlewares
*
* @param array $middlewares
*
* @return void
*/
public function setRouteMiddleware(array $middlewares): void
{
$this->routeMiddlewares = $middlewares;
}
/**
* Set middleware groups
*
* @param array $middlewareGroup
*
* @return void
*/
public function setMiddlewareGroup(array $middlewareGroup): void
{
$this->middlewareGroups = $middlewareGroup;
}
/**
* Get All Middlewares
*
* @return array
*/
public function getMiddlewares(): array
{
return [
'middlewares' => $this->middlewares,
'routeMiddlewares' => $this->routeMiddlewares,
'middlewareGroups' => $this->middlewareGroups,
];
}
/**
* Detect Routes Middleware; before or after
*
* @param array $middleware
* @param string $type
*
* @return void
*/
protected function runRouteMiddleware(array $middleware, string $type): void
{
$this->routerCommand()->beforeAfter($middleware[$type]);
}
/**
* @return Request
*/
protected function request(): Request
{
return $this->request->symfonyRequest();
}
/**
* @return Response
*/
protected function response(): Response
{
return $this->request->symfonyResponse();
}
/**
* Throw new Exception for Router Error
*
* @param string $message
* @param int $statusCode
*
* @throws Exception
*/
protected function exception(string $message = '', int $statusCode = Response::HTTP_INTERNAL_SERVER_ERROR)
{
throw new RouterException($message, $statusCode);
}
/**
* RouterCommand class
*
* @return RouterCommand
*/
protected function routerCommand(): RouterCommand
{
return RouterCommand::getInstance(
$this->baseFolder, $this->paths, $this->namespaces,
$this->request(), $this->response(),
$this->getMiddlewares()
);
}
/**
* Set paths and namespaces for Controllers and Middlewares.
*
* @param array $params
*
* @return void
*/
protected function setPaths(array $params): void
{
if (empty($params)) {
return;
}
if (isset($params['paths']) && $paths = $params['paths']) {
$this->paths['controllers'] = isset($paths['controllers'])
? rtrim($paths['controllers'], '/')
: $this->paths['controllers'];
$this->paths['middlewares'] = isset($paths['middlewares'])
? rtrim($paths['middlewares'], '/')
: $this->paths['middlewares'];
}
if (isset($params['namespaces']) && $namespaces = $params['namespaces']) {
$this->namespaces['controllers'] = isset($namespaces['controllers'])
? rtrim($namespaces['controllers'], '\\') . '\\'
: '';
$this->namespaces['middlewares'] = isset($namespaces['middlewares'])
? rtrim($namespaces['middlewares'], '\\') . '\\'
: '';
}
if (isset($params['base_folder'])) {
$this->baseFolder = rtrim($params['base_folder'], '/');
}
$basePath = str_replace($this->request()->server->get('DOCUMENT_ROOT'), '', $this->baseFolder);
if (($baseFolder = $this->clearRouteName($basePath)) !== '/') {
$this->baseFolder = $baseFolder;
}
if (isset($params['main_method'])) {
$this->mainMethod = $params['main_method'];
}
$this->cacheFile = $params['cache'] ?? realpath(__DIR__ . '/../cache.php');
}
/**
* @param string $controller
*
* @return RouterException|string
* @throws Exception
*/
protected function resolveClassName(string $controller)
{
$controller = str_replace([$this->namespaces['controllers'], '\\', '.'], ['', '/', '/'], $controller);
$controller = trim(
preg_replace(
'/' . str_replace('/', '\\/', $this->paths['controllers']) . '/i',
'',
$controller,
1
),
'/'
);
$file = realpath("{$this->paths['controllers']}/{$controller}.php");
if (!file_exists($file)) {
$this->exception("{$controller} class is not found! Please check the file.");
}
$controller = $this->namespaces['controllers'] . str_replace('/', '\\', $controller);
if (!class_exists($controller)) {
require_once $file;
}
return $controller;
}
/**
* Load Cache file
*
* @return bool
*/
protected function loadCache(): bool
{
if (file_exists($this->cacheFile)) {
$this->routes = require_once $this->cacheFile;
$this->cacheLoaded = true;
return true;
}
return false;
}
/**
* Add new Route and it's settings
*
* @param string $uri
* @param string $method
* @param string|array|Closure $callback
* @param array|null $options
*
* @return void
*/
protected function addRoute(string $uri, string $method, $callback, ?array $options = null)
{
$groupUri = '';
$groupStack = [];
$beforeMiddlewares = [];
$afterMiddlewares = [];
if (!empty($this->groups)) {
foreach ($this->groups as $key => $value) {
$groupUri .= $value['route'];
$groupStack[] = trim($value['route'], '/');
$beforeMiddlewares = array_merge($beforeMiddlewares, $value['before']);
$afterMiddlewares = array_merge($afterMiddlewares, $value['after']);
}
}
$beforeMiddlewares = array_merge($beforeMiddlewares, $this->calculateMiddleware($options['before'] ?? []));
$afterMiddlewares = array_merge($afterMiddlewares, $this->calculateMiddleware($options['after'] ?? []));
$callback = is_array($callback) ? implode('@', $callback) : $callback;
$routeName = is_string($callback)
? strtolower(preg_replace(
'/[^\w]/i', '.', str_replace($this->namespaces['controllers'], '', $callback)
))
: null;
$data = [
'route' => $this->clearRouteName("{$groupUri}/{$uri}"),
'method' => strtoupper($method),
'callback' => $callback,
'name' => $options['name'] ?? $routeName,
'before' => $beforeMiddlewares,
'after' => $afterMiddlewares,
'groups' => $groupStack,
];
array_unshift($this->routes, $data);
}
/**
* @param array|string|null $middleware
*
* @return array
*/
protected function calculateMiddleware(array|string|null $middleware): array
{
if (is_null($middleware)) {
return [];
}
return is_array($middleware) ? $middleware : [$middleware];
}
/**
* Run Route Command; Controller or Closure
*
* @param $command
* @param array $params
*
* @return void
* @throws Exception
*/
protected function runRouteCommand($command, array $params = []): void
{
$this->routerCommand()->runRoute($command, $params);
}
/**
* Routes Group endpoint
*
* @return void
*/
protected function endGroup(): void
{
array_pop($this->groups);
}
/**
* @param string $route
*
* @return string
*/
protected function clearRouteName(string $route = ''): string
{
$route = trim(preg_replace('~/{2,}~', '/', $route), '/');
return $route === '' ? '/' : "/{$route}";
}
/**
* @return string
*/
protected function getRequestUri(): string
{
$script = $this->request()->server->get('SCRIPT_FILENAME') ?? $this->request()->server->get('SCRIPT_NAME');
$dirname = dirname($script);
$dirname = $dirname === '/' ? '' : $dirname;
$basename = basename($script);
$uri = str_replace([$dirname, $basename], '', $this->request()->server->get('REQUEST_URI'));
$uri = preg_replace('/' . str_replace(['\\', '/', '.',], ['/', '\/', '\.'], $this->baseFolder) . '/', '', $uri, 1);
return $this->clearRouteName(explode('?', $uri)[0]);
}
}