router.class.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <?php
  2. namespace Juju\App;
  3. require_once('path.class.php');
  4. $dir = dirname(__DIR__);
  5. require_once(realpath("{$dir}/events.trait.php"));
  6. $dir = "{$dir}/Http/";
  7. require_once(realpath("{$dir}/request.class.php"));
  8. require_once(realpath("{$dir}/response.class.php"));
  9. use \Juju\{Http\Request, Http\Response, Events};
  10. class Router {
  11. use Events;
  12. private $_paths = [];
  13. private $_routers = [];
  14. private $_base = '/';
  15. private $responses = [];
  16. private $_handled = false;
  17. public function __construct(string $base = null, array $paths = null){
  18. if($paths != null){
  19. $this->paths($paths);
  20. }
  21. if($base != null){
  22. $this->base($base);
  23. }
  24. }
  25. public function __get($name){
  26. switch($name){
  27. case 'base':
  28. return $this->_base;
  29. break;
  30. case 'handled':
  31. return $this->_handled;
  32. break;
  33. case 'routes':
  34. $routes = [];
  35. $base = rtrim($this->_base, '/');
  36. foreach($this->_paths as $path){
  37. $routes[] = $base.$path->path;
  38. }
  39. foreach($this->_routers as $router){
  40. foreach($router->routes as $route){
  41. $routes[] = $base.$route;
  42. }
  43. }
  44. return $routes;
  45. break;
  46. }
  47. }
  48. public function __clone(){
  49. // No cloning
  50. }
  51. public function __destruct(){
  52. $this->_paths = [];
  53. }
  54. public function __toString(){
  55. return "[Router]";
  56. }
  57. public function base(string $base){
  58. $this->_base = $base;
  59. return $this;
  60. }
  61. public static function url(string $url){
  62. return preg_replace('/(\/+)/','/',$url);
  63. }
  64. public function prefix(string $prefix, callable $fn){
  65. $found = false;
  66. foreach($this->_routers as $k => $router){
  67. if($router->base == $prefix){
  68. $found = true;
  69. $fn($router);
  70. break;
  71. }
  72. }
  73. if(!$found){
  74. $router= new Router($prefix);
  75. $this->_routers[] = $router;
  76. $fn($router);
  77. }
  78. return $this;
  79. }
  80. public function path(string $path, callable $fn){
  81. $obj = false;
  82. foreach($this->_paths as $k => $p){
  83. if($p->path == $path){
  84. $obj = $p;
  85. }
  86. }
  87. if(!$obj){
  88. $obj = new Path($path);
  89. array_push($this->_paths, $obj);
  90. }
  91. $obj->handle($fn);
  92. return $this;
  93. }
  94. public function get(string $path, callable $fn){
  95. return $this->path($path, function($req, $res, $args) use($fn){
  96. if($req->verb === 'GET'){
  97. return $fn($req, $res, $args);
  98. }else{
  99. return false;
  100. }
  101. });
  102. }
  103. public function post(string $path, callable $fn){
  104. return $this->path($path, function($req, $res, $args) use($fn){
  105. if($req->verb === 'POST'){
  106. return $fn($req, $res, $args);
  107. }else{
  108. return false;
  109. }
  110. });
  111. }
  112. public function put(string $path, callable $fn){
  113. return $this->path($path, function($req, $res, $args) use($fn){
  114. if($req->verb === 'PUT'){
  115. return $fn($req, $res, $args);
  116. }else{
  117. return false;
  118. }
  119. });
  120. }
  121. public function delete(string $path, callable $fn){
  122. return $this->path($path, function($req, $res, $args) use($fn){
  123. if($req->verb === 'DELETE'){
  124. return $fn($req, $res, $args);
  125. }else{
  126. return false;
  127. }
  128. });
  129. }
  130. public function patch(string $path, callable $fn){
  131. return $this->path($path, function($req, $res, $args) use($fn){
  132. if($req->verb === 'PATCH'){
  133. return $fn($req, $res, $args);
  134. }else{
  135. return false;
  136. }
  137. });
  138. }
  139. public function paths(array $paths){
  140. foreach($paths as $path => $fn){
  141. $this->path($path, $fn);
  142. }
  143. return $this;
  144. }
  145. public function gets(array $paths){
  146. foreach($paths as $path => $fn){
  147. $this->get($path, $fn);
  148. }
  149. return $this;
  150. }
  151. public function posts(array $paths){
  152. foreach($paths as $path => $fn){
  153. $this->post($path, $fn);
  154. }
  155. return $this;
  156. }
  157. public function puts(array $paths){
  158. foreach($paths as $path => $fn){
  159. $this->put($path, $fn);
  160. }
  161. return $this;
  162. }
  163. public function deletes(array $paths){
  164. foreach($paths as $path => $fn){
  165. $this->delete($path, $fn);
  166. }
  167. return $this;
  168. }
  169. public function patches(array $paths){
  170. foreach($paths as $path => $fn){
  171. $this->patch($path, $fn);
  172. }
  173. return $this;
  174. }
  175. public function clear(){
  176. $this->_paths = [];
  177. return $this;
  178. }
  179. public function handle(string $path, Request $req = null, Response $res = null, callable $fn = null, callable $onerror = null){
  180. if(strpos($path, $this->base) === 0){
  181. $path = substr($path, strlen($this->base));
  182. if(strpos($path, '/') !== 0){
  183. $path = "/{$path}";
  184. }
  185. if(is_null($req)){
  186. $req = new Request(Request::get_verb(), Request::get_url(), Request::get_headers(), Request::get_body());
  187. }
  188. if(is_null($res)){
  189. $res = new Response();
  190. }
  191. if(!in_array($res,$this->responses)){
  192. array_push($this->responses,$res);
  193. }
  194. $this->fire('handle', $req, $res);
  195. $handled = false;
  196. foreach($this->_routers as $prefix => $router){
  197. $router->handle($path, $req, $res);
  198. $handled = $handled ||$router->handled;
  199. }
  200. ob_start();
  201. foreach($this->_paths as $k => $p){
  202. if($p->matches($path)){
  203. $handled = true;
  204. try{
  205. if($p($req, $res, $p->args($path)) === false){
  206. $handled = false;
  207. }
  208. }catch(\Exception $e){
  209. if(!is_null($onerror)){
  210. $onerror($req, $res,$e);
  211. }else{
  212. throw $e;
  213. }
  214. }
  215. }
  216. }
  217. $this->_handled = $handled;
  218. if(!$handled && !is_null($fn)){
  219. $fn($req, $res);
  220. }
  221. $res->output .= ob_get_contents();
  222. ob_end_clean();
  223. $this->fire('afterhandle', $req, $res);
  224. }
  225. return $res;
  226. }
  227. }
  228. ?>