-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRouter.php
More file actions
81 lines (59 loc) · 1.92 KB
/
Copy pathRouter.php
File metadata and controls
81 lines (59 loc) · 1.92 KB
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
<?php
namespace lexuanphat\phpmvc;
use lexuanphat\phpmvc\exception\NotFoundException;
class Router
{
public Request $request;
public Response $response;
protected array $routes = [];
public function __construct(Request $request, Response $response)
{
$this->request = $request;
$this->response = $response;
}
public function get($path, $callback)
{
$this->routes['get'][$path] = $callback;
}
public function post($path, $callback)
{
$this->routes['post'][$path] = $callback;
}
public function resolve()
{
$path = $this->request->getPath();
$method = $this->request->method();
$callback = $this->routes[$method][$path] ?? false;
// $callback không tồn tại
if ($callback === false) {
throw new NotFoundException();
}
// $app->router->get("/path", "view");
if (is_string($callback)) {
return App::$app->view->renderView($callback);
}
// $app->router->get("/path", [Controller::class, 'action']);
if (is_array($callback)) {
/*
$callback[0] => 'app\controllers\Controller'
$callback[0] = new $callback[0];
Khởi tạo đối tượng sau đó dùng call_user_func()
*/
/**
* @var \lexuanphat\phpmvc\Controller $controller;
*/
$controller = new $callback[0];
App::$app->controller = $controller;
$controller->action = $callback[1];
$callback[0] = $controller;
foreach($controller->getMiddlewares() as $middleware){
$middleware->execute();
}
}
return call_user_func($callback, $this->request);
}
public function renderView($view, $params = [])
{
return App::$app->view->renderView($view, $params = []);
}
}