-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRouter.php
55 lines (45 loc) · 1.46 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
<?php
namespace Musanna\MvcCore;
use Musanna\MvcCore\Exception\NotFoundException;
class Router
{
protected array $routes = [];
public function __construct(
public readonly Request $request,
public readonly Response $response,
) {
}
public function get(string $path, callable|string|array $callback)
{
$this->routes['get'][$path] = $callback;
return $this;
}
public function post(string $path, callable|string|array $callback)
{
$this->routes['post'][$path] = $callback;
return $this;
}
public function resolve()
{
$path = $this->request->getPath();
$method = $this->request->getMethod();
$callback= $this->routes[$method][$path] ?? false;
if(!$callback) {
throw new NotFoundException();
}
if(is_string($callback)) {
return Application::$app->view->renderView($callback);
}
if(is_array($callback)) {
$controller = new $callback[0];
Application::$app->controller = $controller;
$controller->action = $callback[1];
$callback[0] = $controller;
foreach($controller->getMiddlewares() as $middleware ) {
$middleware->execute();
}
return call_user_func_array($callback,[$this->request,$this->response]);
}
return call_user_func($callback,$this->request,$this->response);
}
}