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
|
<?php
declare(strict_types=1);
namespace Lightscale\Router;
use Lightscale\Router\Contracts\Strategy;
use Lightscale\Router\Enums\HttpMethod;
use Lightscale\Router\Enums\PathSegmentType;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
class Router
{
use Concerns\CreatesRoutes;
use Concerns\CreatesGroups;
private PathSegment $root;
private Strategy $strategy;
/** @var array<string, Route> */
private array $namedRoutes = [];
public function __construct()
{
$this->root = new PathSegment(type: PathSegmentType::Root);
$this->strategy = new BasicStrategy();
}
private function getRouter(): self
{
return $this;
}
private function getGroup(): null
{
return null;
}
public function getStrategy(): Strategy
{
return $this->strategy;
}
public function setStrategy(Strategy $strategy): void
{
$this->strategy = $strategy;
}
public function root(): PathSegment
{
return $this->root;
}
/** @return string[] */
private function splitPath(string $path): array
{
$split = explode('/', rtrim($path, '/'));
array_shift($split);
return $split;
}
public function findSegment(string $path): ?PathSegmentMatch
{
$pathSplit = $this->splitPath($path);
$seg = $this->root();
$params = [];
while (($v = array_shift($pathSplit)) !== null && null !== $seg) {
$seg = $seg->findChild($v);
if (PathSegmentType::Parameter === $seg?->getType()) {
$params[$seg->getValue() ?? ''] = $v;
}
}
return null === $seg ? null : new PathSegmentMatch(
segment: $seg,
parameters: $params
);
}
public function findRoute(HttpMethod|string $method, string $path): ?RouteMatch
{
$match = $this->findSegment($path);
if (null === $match) {
return null;
}
$method = (
$method instanceof HttpMethod ?
$method :
HttpMethod::tryFrom(strtolower($method))
);
if (null === $method) {
return null;
}
$segment = $match->segment;
$route = $segment->getRoute($method);
$route ??= $segment->getRoute(HttpMethod::Any);
if (null === $route) {
return null;
}
return new RouteMatch(
$match,
$route,
);
}
public function dispatch(RequestInterface $request): ResponseInterface
{
$uri = $request->getUri();
$match = $this->findRoute($request->getMethod(), $uri->getPath());
if (null === $match) {
return $this->strategy->notFound($request);
}
$call = new RouteCall(
$request,
$match->route,
$match->segmentMatch->parameters,
);
return $this->strategy->runRoute($call);
}
public function make(
HttpMethod $method,
string $path,
callable $handler,
): RouteDefinition {
$pathSplit = $this->splitPath($path);
$seg = $this->root();
while (($v = array_shift($pathSplit)) !== null) {
$typeMatch = PathSegmentType::matchRouteString($v);
$seg = $seg->child($typeMatch->value, $typeMatch->type);
}
$route = new Route($method, $handler);
$seg->addRoute($route);
return new RouteDefinition($this, $route);
}
public function addNamedRoute(string $name, Route $route): void
{
$this->namedRoutes[$name] = $route;
}
public function getNamedRoute(string $name): ?Route
{
return $this->namedRoutes[$name] ?? null;
}
/** @param array<string, mixed> $params */
public function route(string $name, array $params = []): ?string
{
$route = $this->getNamedRoute($name);
$params = $this->strategy->parseParameters($params);
return $route?->getPath($params);
}
}
|