This repository was archived by the owner on Feb 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStaticResolver.php
121 lines (113 loc) · 3.5 KB
/
StaticResolver.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
<?php
//
// +---------------------------------------------------------------------+
// | CODE INC. SOURCE CODE |
// +---------------------------------------------------------------------+
// | Copyright (c) 2018 - Code Inc. SAS - All Rights Reserved. |
// | Visit https://www.codeinc.fr for more information about licensing. |
// +---------------------------------------------------------------------+
// | NOTICE: All information contained herein is, and remains the |
// | property of Code Inc. SAS. The intellectual and technical concepts |
// | contained herein are proprietary to Code Inc. SAS are protected by |
// | trade secret or copyright law. Dissemination of this information or |
// | reproduction of this material is strictly forbidden unless prior |
// | written permission is obtained from Code Inc. SAS. |
// +---------------------------------------------------------------------+
//
// Author: Joan Fabrégat <[email protected]>
// Date: 05/03/2018
// Time: 11:53
// Project: Router
//
declare(strict_types = 1);
namespace CodeInc\Router\Resolvers;
use CodeInc\Router\ControllerInterface;
use CodeInc\Router\Exceptions\DuplicateRouteException;
use CodeInc\Router\Exceptions\NotAControllerException;
use Psr\Http\Server\RequestHandlerInterface;
/**
* Class StaticHandlerResolver
*
* @package CodeInc\Router\Resolvers
* @author Joan Fabrégat <[email protected]>
*/
class StaticResolver implements ResolverInterface
{
/**
* @var string[]
*/
private $routes = [];
/**
* StaticHandlerResolver constructor.
*
* @param iterable|null $routes
*/
public function __construct(?iterable $routes = null)
{
if ($routes !== null) {
$this->addRoutes($routes);
}
}
/**
* Adds multiple routes to request handlers.
*
* @param iterable $routes
*/
public function addRoutes(iterable $routes):void
{
foreach ($routes as $route => $handlerClass) {
$this->addRoute($route, $handlerClass);
}
}
/**
* Adds a route to a request handler.
*
* @param string $route URI path (supports shell patterns)
* @param string $controllerClass
*/
public function addRoute(string $route, string $controllerClass):void
{
if (!is_subclass_of($controllerClass, ControllerInterface::class)) {
throw new NotAControllerException($controllerClass);
}
if (isset($this->routes[$route])) {
throw new DuplicateRouteException($route, $controllerClass);
}
$this->routes[$route] = $controllerClass;
}
/**
* @return string[]
*/
public function getRoutes():array
{
return $this->routes;
}
/**
* @inheritdoc
* @param string $route
* @return null|string
*/
public function getControllerClass(string $route):?string
{
foreach ($this->routes as $handlerRoute => $handlerClass) {
if (fnmatch($handlerRoute, $route, FNM_CASEFOLD)) {
return $handlerClass;
}
}
return null;
}
/**
* @inheritdoc
* @param string $controllerClass
* @return null|string
*/
public function getControllerRoute(string $controllerClass):?string
{
foreach ($this->routes as $route => $class) {
if ($controllerClass == $class) {
return $route;
}
}
return null;
}
}