-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoute.php
224 lines (185 loc) · 4.64 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
<?php
namespace Lumille\Routing;
class Route
{
/**
* @var string
*/
private $path;
/**
* @var callable
*/
private $callable;
/**
* @var Router
*/
private $router;
/**
* @var array
*/
private $matches = [];
/**
* @var array
*/
private $params = [];
private $acceptMethods = [];
/**
* @var string
*/
private $prefix;
public function __construct ($path, $callable)
{
$this->setPath($path);
$this->setCallable($callable);
}
public function checkAcceptMethods ($method)
{
if (!\in_array($method, $this->getAcceptMethods())) {
throw new MethodNotAcceptedException("Method is not accepted");
}
return true;
}
/**
* Permettra de capturer l'url avec les paramètre
* get('/posts/:slug-:id') par exemple
**/
public function match ($url)
{
$url = rtrim($url, '/');
preg_match_all('#{([\w]+)}#i', $this->path, $params);
$path = preg_replace_callback('#{([\w]+)}#', [$this, 'paramMatch'], $this->path);
$regex = "#^$path$#i";
if (!preg_match($regex, $url, $matches)) {
return false;
}
$parameters = [];
if ($params && is_array($params)) {
array_shift($matches);
\array_shift($params);
$params = current($params);
foreach ($params as $k => $param) {
if (isset($matches[$k])) {
$parameters[$param] = $matches[$k];
}
}
}
$this->matches = $parameters;
return true;
}
public function call ()
{
return [$this->callable, $this->matches];
$callable = $this->callable;
if (!\is_callable($callable)) {
@list($controller, $method) = explode('::', $this->callable);
$controller = $this->router->getNamespace() . $controller;
$controller = new $controller;
$callable = [$controller, $method];
}
$args = $this->getParameters($callable);
return [$callable, $args];
}
/**
* @param string $path
* @return Route
*/
public function setPath (string $path): Route
{
$this->path = rtrim($path, '/');
return $this;
}
/**
* @param string|callable $callable
* @return Route
*/
public function setCallable ($callable): Route
{
$this->callable = $callable;
return $this;
}
/**
* @param string $prefix
* @return Route
*/
public function setPrefix (string $prefix): Route
{
$this->prefix = $prefix;
return $this;
}
/**
* @return array
*/
public function getAcceptMethods (): array
{
return $this->acceptMethods;
}
/**
* @param array $acceptMethods
*/
public function setAcceptMethods (array $acceptMethods)
{
foreach ($acceptMethods as $method) {
$this->acceptMethods[] = $method;
}
\array_unique($this->acceptMethods);
}
/**
* @return string
*/
public function getPath (): string
{
return $this->path;
}
private function paramMatch ($match)
{
if (isset($this->params[$match[1]])) {
return '(' . $this->params[$match[1]] . ')';
}
return '([^/]+)';
}
private function getParameters ($callable)
{
$args = [];
if (!\is_array($callable) && \is_callable($callable)) {
$x = new \ReflectionFunction($this->callable);
} else {
$x = new \ReflectionMethod($callable[0], $callable[1]);
}
$params = $x->getParameters();
foreach ($params as $param) {
$name = $param->getName();
if (isset($this->matches[$name])) {
$args[$name] = $this->matches[$name];
}
}
return $args;
}
public function with ($param, $regex)
{
$this->params[$param] = str_replace('(', '(?:', $regex);
return $this; // On retourne tjrs l'objet pour enchainer les arguments
}
public function getUrl ($params)
{
$path = $this->path;
foreach ($params as $k => $v) {
$path = str_replace("{$k}", $v, $path);
}
return $path === "" ? "/" : $path;
}
/**
* @return mixed
*/
public function getRouter ()
{
return $this->router;
}
/**
* @param mixed $router
* @return Router
*/
public function setRouter ($router)
{
$this->router = $router;
}
}