This repository has been archived by the owner on Jan 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 187
/
Macaw.php
184 lines (152 loc) · 5.57 KB
/
Macaw.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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
namespace NoahBuscher\Macaw;
/**
* @method static Macaw get(string $route, Callable $callback)
* @method static Macaw post(string $route, Callable $callback)
* @method static Macaw put(string $route, Callable $callback)
* @method static Macaw delete(string $route, Callable $callback)
* @method static Macaw options(string $route, Callable $callback)
* @method static Macaw head(string $route, Callable $callback)
*/
class Macaw {
public static $halts = false;
public static $routes = array();
public static $methods = array();
public static $callbacks = array();
public static $maps = array();
public static $patterns = array(
':any' => '[^/]+',
':num' => '[0-9]+',
':all' => '.*'
);
public static $error_callback;
public static $root;
/**
* Defines a route w/ callback and method
*/
public static function __callstatic($method, $params) {
if ($method == 'map') {
$maps = array_map('strtoupper', $params[0]);
$uri = strpos($params[1], '/') === 0 ? $params[1] : '/' . $params[1];
$callback = $params[2];
} else {
$maps = null;
$uri = strpos($params[0], '/') === 0 ? $params[0] : '/' . $params[0];
$callback = $params[1];
}
array_push(self::$maps, $maps);
array_push(self::$routes, $uri);
array_push(self::$methods, strtoupper($method));
array_push(self::$callbacks, $callback);
}
/**
* Defines callback if route is not found
*/
public static function error($callback) {
self::$error_callback = $callback;
}
public static function haltOnMatch($flag = true) {
self::$halts = $flag;
}
/**
* Runs the callback for the given request
*/
public static function dispatch(){
$uri = rtrim(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH), '/');
if (!empty(self::$root) && self::$root !== '/') {
self::$root = rtrim(self::$root, '/');
if (self::$root === $uri) {
$uri = '/';
} else {
// Remove the root directory from uri, remove only the first occurrence
$uri = substr_replace($uri, '', strpos($uri, self::$root), strlen(self::$root));
}
}
$method = $_SERVER['REQUEST_METHOD'];
$searches = array_keys(static::$patterns);
$replaces = array_values(static::$patterns);
$found_route = false;
self::$routes = preg_replace('/\/+/', '/', self::$routes);
// Check if route is defined without regex
if (in_array($uri, self::$routes)) {
$route_pos = array_keys(self::$routes, $uri);
foreach ($route_pos as $route) {
// Using an ANY option to match both GET and POST requests
if (self::$methods[$route] == $method || self::$methods[$route] == 'ANY' || (!empty(self::$maps[$route]) && in_array($method, self::$maps[$route]))) {
$found_route = true;
// If route is not an object
if (!is_object(self::$callbacks[$route])) {
// Grab all parts based on a / separator
$parts = explode('/',self::$callbacks[$route]);
// Collect the last index of the array
$last = end($parts);
// Grab the controller name and method call
$segments = explode('@',$last);
// Instanitate controller
$controller = new $segments[0]();
// Call method
$controller->{$segments[1]}();
if (self::$halts) return;
} else {
// Call closure
call_user_func(self::$callbacks[$route]);
if (self::$halts) return;
}
}
}
} else {
// Check if defined with regex
$pos = 0;
foreach (self::$routes as $route) {
if (strpos($route, ':') !== false) {
$route = str_replace($searches, $replaces, $route);
}
if (preg_match('#^' . $route . '$#', $uri, $matched)) {
if (self::$methods[$pos] == $method || self::$methods[$pos] == 'ANY' || (!empty(self::$maps[$pos]) && in_array($method, self::$maps[$pos]))) {
$found_route = true;
// Remove $matched[0] as [1] is the first parameter.
array_shift($matched);
if (!is_object(self::$callbacks[$pos])) {
// Grab all parts based on a / separator
$parts = explode('/',self::$callbacks[$pos]);
// Collect the last index of the array
$last = end($parts);
// Grab the controller name and method call
$segments = explode('@',$last);
// Instanitate controller
$controller = new $segments[0]();
// Fix multi parameters
if (!method_exists($controller, $segments[1])) {
echo "controller and action not found";
} else {
call_user_func_array(array($controller, $segments[1]), $matched);
}
if (self::$halts) return;
} else {
call_user_func_array(self::$callbacks[$pos], $matched);
if (self::$halts) return;
}
}
}
$pos++;
}
}
// Run the error callback if the route was not found
if ($found_route == false) {
if (!self::$error_callback) {
self::$error_callback = function() {
header($_SERVER['SERVER_PROTOCOL']." 404 Not Found");
echo '404';
};
} else {
if (is_string(self::$error_callback)) {
self::get($_SERVER['REQUEST_URI'], self::$error_callback);
self::$error_callback = null;
self::dispatch();
return ;
}
}
call_user_func(self::$error_callback);
}
}
}