Router.php (1870B) download
1<?php
2
3namespace Lollipop {
4 class Router
5 {
6 protected array $routes = [];
7 protected string $path;
8 protected Template $temp;
9
10 public function __construct($temp) {
11 $this->temp = $temp;
12 }
13
14 protected function match(string $match, array &$route_vars): bool
15 {
16 $route_split = explode('/', trim($this->path, '/ '));
17 $match_split = explode('/', trim($match, '/ '));
18
19 if (sizeof($route_split) != sizeof($match_split)) {
20 return false;
21 }
22
23 foreach ($match_split as $index => $m) {
24 if (str_starts_with($m, ':')) {
25 $route_vars[substr($m, 1)] = $route_split[$index];
26 } else if ($m != $route_split[$index]) {
27 return false;
28 }
29 }
30 return true;
31 }
32
33
34 function addRoute(string|array $method, string $match, string|callable $func)
35 {
36 if (is_string($method))
37 $method = [$method];
38
39
40 $this->routes[] = array(
41 "method" => $method,
42 "match" => $match,
43 "func" => $func,
44 );
45 }
46
47 function includeRoute(string $path, array $_PARAM)
48 {
49 include $path;
50 }
51
52 function route(string $base = null)
53 {
54 $this->path = $_SERVER["REQUEST_URI"];
55
56 if (strpos($this->path, '?'))
57 $this->path = explode('?', $this->path)[0];
58
59 if ($base && strpos($this->path, $base))
60 $this->path = explode($base, $this->path)[1];
61
62 $method = $_SERVER["REQUEST_METHOD"];
63
64 foreach ($this->routes as $route) {
65 if ($route["method"] != null && !in_array($method, $route["method"]))
66 continue;
67
68 $vars = [];
69 if ($this->match($route["match"], $vars)) {
70 if (is_callable($route["func"])) {
71 $fil = $route["func"]($vars);
72 if (!is_null($fil))
73 echo $this->temp->template($fil, $vars);
74 return;
75 } else {
76 echo $this->temp->template($route["func"], $vars);
77 return;
78 }
79 }
80 }
81
82 echo $this->temp->template("views/login.html", $vars);
83 return null;
84 }
85 }
86}