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
|
<?php
declare(strict_types=1);
namespace Lightscale\Router;
use Lightscale\Router\Contracts\Strategy;
use Lightscale\Router\Enums\HttpMethod;
use Lightscale\Router\Enums\PathSegmentType;
use Lightscale\Router\Exceptions\NotFoundException;
use Lightscale\Router\Exceptions\UnknownMethodException;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
class Router
{
private PathSegment $root;
private Strategy $strategy;
public function __construct()
{
$this->root = new PathSegment(type: PathSegmentType::Root);
$this->strategy = new BasicStrategy;
}
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 dispatch(RequestInterface $request): ResponseInterface
{
$uri = $request->getUri();
$match = $this->findSegment($uri->getPath());
if (null === $match) {
return $this->strategy->notFound($request);
}
$segment = $match->segment;
$method = $request->getMethod();
$method = HttpMethod::tryFrom(strtolower($method));
if ($method === null) {
return $this->strategy->notFound($request);
}
$route = $segment->getRoute($method);
if (null === $route) {
return $this->strategy->notFound($request);
}
$call = new RouteCall(
$request,
$route,
$match->parameters,
);
return $this->strategy->runRoute($call);
}
public function route(HttpMethod $method, string $path, callable $handler): void
{
$pathSplit = $this->splitPath($path);
$seg = $this->root();
while(($v = array_shift($pathSplit)) !== null) {
$seg = $seg->child($v);
}
$seg->addRoute(new Route($method, $handler));
}
public function get(string $path, callable $handler): void
{
$this->route(HttpMethod::Get, $path, $handler);
}
public function post(string $path, callable $handler): void
{
$this->route(HttpMethod::Post, $path, $handler);
}
public function put(string $path, callable $handler): void
{
$this->route(HttpMethod::Put, $path, $handler);
}
public function patch(string $path, callable $handler): void
{
$this->route(HttpMethod::Patch, $path, $handler);
}
public function delete(string $path, callable $handler): void
{
$this->route(HttpMethod::Delete, $path, $handler);
}
public function any(string $path, callable $handler): void
{
$this->route(HttpMethod::Any, $path, $handler);
}
}
|