forked from anandkunal/ToroPHP
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtoro.php
94 lines (80 loc) · 3.1 KB
/
toro.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
<?php
class Toro {
public static function serve($routes) {
ToroHook::fire('before_request');
$request_method = strtolower($_SERVER['REQUEST_METHOD']);
$path_info = isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/';
$discovered_handler = NULL;
$regex_matches = array();
if (isset($routes[$path_info])) {
$discovered_handler = $routes[$path_info];
}
elseif ($routes) {
$tokens = array(
':string' => '([a-zA-Z]+)',
':number' => '([0-9]+)',
':alpha' => '([a-zA-Z0-9-_]+)'
);
foreach ($routes as $pattern => $handler_name) {
$pattern = strtr($pattern, $tokens);
if (preg_match('#^/?' . $pattern . '/?$#', $path_info, $matches)) {
$discovered_handler = $handler_name;
$regex_matches = $matches;
break;
}
}
}
if ($discovered_handler && class_exists($discovered_handler)) {
unset($regex_matches[0]);
$handler_instance = new $discovered_handler();
if (self::xhr_request() && method_exists($discovered_handler, $request_method . '_xhr')) {
header('Content-type: application/json');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');
$request_method .= '_xhr';
}
if (method_exists($handler_instance, $request_method)) {
ToroHook::fire('before_handler');
call_user_func_array(array($handler_instance, $request_method), $regex_matches);
ToroHook::fire('after_handler');
}
else {
ToroHook::fire('404');
}
}
else {
ToroHook::fire('404');
}
ToroHook::fire('after_request');
}
private static function xhr_request() {
return isset($_SERVER['HTTP_X_REQUESTED_WITH']) && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest';
}
}
class ToroHook {
private static $instance;
private $hooks = array();
private function __construct() { }
private function __clone() { }
public static function add($hook_name, $fn) {
$instance = self::get_instance();
$instance->hooks[$hook_name][] = $fn;
}
public static function fire($hook_name, $params = NULL) {
$instance = self::get_instance();
if (isset($instance->hooks[$hook_name])) {
foreach ($instance->hooks[$hook_name] as $fn) {
call_user_func_array($fn, array(&$params));
}
}
}
public static function get_instance() {
if (empty(self::$instance)) {
self::$instance = new ToroHook();
}
return self::$instance;
}
}