@@ -166,8 +166,9 @@ |
||
| 166 | 166 | */ |
| 167 | 167 | public function sendHeaders() |
| 168 | 168 | { |
| 169 | - foreach($this->headers as $key => $content) |
|
| 170 | - header($key.' : '.$content); |
|
| 169 | + foreach($this->headers as $key => $content) {
|
|
| 170 | + header($key.' : '.$content); |
|
| 171 | + } |
|
| 171 | 172 | http_response_code($this->getStatusCode()); |
| 172 | 173 | return $this; |
| 173 | 174 | } |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | * Class Response |
| 8 | 8 | * @package JetFire\Routing |
| 9 | 9 | */ |
| 10 | -class Response implements ResponseInterface{ |
|
| 10 | +class Response implements ResponseInterface { |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * @var array |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | public static $statusTexts = array( |
| 54 | 54 | 100 => 'Continue', |
| 55 | 55 | 101 => 'Switching Protocols', |
| 56 | - 102 => 'Processing', // RFC2518 |
|
| 56 | + 102 => 'Processing', // RFC2518 |
|
| 57 | 57 | 200 => 'OK', |
| 58 | 58 | 201 => 'Created', |
| 59 | 59 | 202 => 'Accepted', |
@@ -61,9 +61,9 @@ discard block |
||
| 61 | 61 | 204 => 'No Content', |
| 62 | 62 | 205 => 'Reset Content', |
| 63 | 63 | 206 => 'Partial Content', |
| 64 | - 207 => 'Multi-Status', // RFC4918 |
|
| 65 | - 208 => 'Already Reported', // RFC5842 |
|
| 66 | - 226 => 'IM Used', // RFC3229 |
|
| 64 | + 207 => 'Multi-Status', // RFC4918 |
|
| 65 | + 208 => 'Already Reported', // RFC5842 |
|
| 66 | + 226 => 'IM Used', // RFC3229 |
|
| 67 | 67 | 300 => 'Multiple Choices', |
| 68 | 68 | 301 => 'Moved Permanently', |
| 69 | 69 | 302 => 'Found', |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | 304 => 'Not Modified', |
| 72 | 72 | 305 => 'Use Proxy', |
| 73 | 73 | 307 => 'Temporary Redirect', |
| 74 | - 308 => 'Permanent Redirect', // RFC7238 |
|
| 74 | + 308 => 'Permanent Redirect', // RFC7238 |
|
| 75 | 75 | 400 => 'Bad Request', |
| 76 | 76 | 401 => 'Unauthorized', |
| 77 | 77 | 402 => 'Payment Required', |
@@ -90,26 +90,26 @@ discard block |
||
| 90 | 90 | 415 => 'Unsupported Media Type', |
| 91 | 91 | 416 => 'Range Not Satisfiable', |
| 92 | 92 | 417 => 'Expectation Failed', |
| 93 | - 418 => 'I\'m a teapot', // RFC2324 |
|
| 94 | - 422 => 'Unprocessable Entity', // RFC4918 |
|
| 95 | - 423 => 'Locked', // RFC4918 |
|
| 96 | - 424 => 'Failed Dependency', // RFC4918 |
|
| 97 | - 425 => 'Reserved for WebDAV advanced collections expired proposal', // RFC2817 |
|
| 98 | - 426 => 'Upgrade Required', // RFC2817 |
|
| 99 | - 428 => 'Precondition Required', // RFC6585 |
|
| 100 | - 429 => 'Too Many Requests', // RFC6585 |
|
| 101 | - 431 => 'Request Header Fields Too Large', // RFC6585 |
|
| 93 | + 418 => 'I\'m a teapot', // RFC2324 |
|
| 94 | + 422 => 'Unprocessable Entity', // RFC4918 |
|
| 95 | + 423 => 'Locked', // RFC4918 |
|
| 96 | + 424 => 'Failed Dependency', // RFC4918 |
|
| 97 | + 425 => 'Reserved for WebDAV advanced collections expired proposal', // RFC2817 |
|
| 98 | + 426 => 'Upgrade Required', // RFC2817 |
|
| 99 | + 428 => 'Precondition Required', // RFC6585 |
|
| 100 | + 429 => 'Too Many Requests', // RFC6585 |
|
| 101 | + 431 => 'Request Header Fields Too Large', // RFC6585 |
|
| 102 | 102 | 500 => 'Internal Server Error', |
| 103 | 103 | 501 => 'Not Implemented', |
| 104 | 104 | 502 => 'Bad Gateway', |
| 105 | 105 | 503 => 'Service Unavailable', |
| 106 | 106 | 504 => 'Gateway Timeout', |
| 107 | 107 | 505 => 'HTTP Version Not Supported', |
| 108 | - 506 => 'Variant Also Negotiates (Experimental)', // RFC2295 |
|
| 109 | - 507 => 'Insufficient Storage', // RFC4918 |
|
| 110 | - 508 => 'Loop Detected', // RFC5842 |
|
| 111 | - 510 => 'Not Extended', // RFC2774 |
|
| 112 | - 511 => 'Network Authentication Required', // RFC6585 |
|
| 108 | + 506 => 'Variant Also Negotiates (Experimental)', // RFC2295 |
|
| 109 | + 507 => 'Insufficient Storage', // RFC4918 |
|
| 110 | + 508 => 'Loop Detected', // RFC5842 |
|
| 111 | + 510 => 'Not Extended', // RFC2774 |
|
| 112 | + 511 => 'Network Authentication Required', // RFC6585 |
|
| 113 | 113 | ); |
| 114 | 114 | |
| 115 | 115 | /** |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | public function sendHeaders() |
| 168 | 168 | { |
| 169 | - foreach($this->headers as $key => $content) |
|
| 169 | + foreach ($this->headers as $key => $content) |
|
| 170 | 170 | header($key.' : '.$content); |
| 171 | 171 | http_response_code($this->getStatusCode()); |
| 172 | 172 | return $this; |
@@ -15,7 +15,7 @@ |
||
| 15 | 15 | /** |
| 16 | 16 | * @param Route $route |
| 17 | 17 | */ |
| 18 | - public function __construct(Route $route,ResponseInterface $response); |
|
| 18 | + public function __construct(Route $route, ResponseInterface $response); |
|
| 19 | 19 | |
| 20 | 20 | /** |
| 21 | 21 | * @return mixed |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | */ |
| 128 | 128 | public function setDetail($detail) |
| 129 | 129 | { |
| 130 | - $this->detail = array_merge($detail,$this->detail); |
|
| 130 | + $this->detail = array_merge($detail, $this->detail); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
@@ -173,8 +173,8 @@ discard block |
||
| 173 | 173 | /** |
| 174 | 174 | * @return array |
| 175 | 175 | */ |
| 176 | - public function getData(){ |
|
| 177 | - return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data']))?$this->getDetail()['data']:[]; |
|
| 176 | + public function getData() { |
|
| 177 | + return (isset($this->getDetail()['data']) && is_array($this->getDetail()['data'])) ? $this->getDetail()['data'] : []; |
|
| 178 | 178 | } |
| 179 | 179 | |
| 180 | 180 | /** |
@@ -52,10 +52,18 @@ discard block |
||
| 52 | 52 | */ |
| 53 | 53 | public function set($args = []) |
| 54 | 54 | { |
| 55 | - if (isset($args['name'])) $this->name = $args['name']; |
|
| 56 | - if (isset($args['callback'])) $this->callback = $args['callback']; |
|
| 57 | - if (isset($args['target'])) $this->target = $args['target']; |
|
| 58 | - if (isset($args['detail'])) $this->detail = $args['detail']; |
|
| 55 | + if (isset($args['name'])) {
|
|
| 56 | + $this->name = $args['name']; |
|
| 57 | + } |
|
| 58 | + if (isset($args['callback'])) {
|
|
| 59 | + $this->callback = $args['callback']; |
|
| 60 | + } |
|
| 61 | + if (isset($args['target'])) {
|
|
| 62 | + $this->target = $args['target']; |
|
| 63 | + } |
|
| 64 | + if (isset($args['detail'])) {
|
|
| 65 | + $this->detail = $args['detail']; |
|
| 66 | + } |
|
| 59 | 67 | } |
| 60 | 68 | |
| 61 | 69 | /** |
@@ -145,8 +153,9 @@ discard block |
||
| 145 | 153 | */ |
| 146 | 154 | public function getTarget($key = null) |
| 147 | 155 | { |
| 148 | - if (!is_null($key)) |
|
| 149 | - return isset($this->target[$key]) ? $this->target[$key] : ''; |
|
| 156 | + if (!is_null($key)) {
|
|
| 157 | + return isset($this->target[$key]) ? $this->target[$key] : ''; |
|
| 158 | + } |
|
| 150 | 159 | return empty($this->target) ? '' : $this->target; |
| 151 | 160 | } |
| 152 | 161 | |
@@ -165,8 +174,9 @@ discard block |
||
| 165 | 174 | */ |
| 166 | 175 | public function hasTarget($key = null) |
| 167 | 176 | { |
| 168 | - if (!is_null($key)) |
|
| 169 | - return isset($this->target[$key]) ? true : false; |
|
| 177 | + if (!is_null($key)) {
|
|
| 178 | + return isset($this->target[$key]) ? true : false; |
|
| 179 | + } |
|
| 170 | 180 | return empty($this->target) ? false : true; |
| 171 | 181 | } |
| 172 | 182 | |
@@ -41,5 +41,5 @@ |
||
| 41 | 41 | * @param $class |
| 42 | 42 | * @return mixed |
| 43 | 43 | */ |
| 44 | - public function addDispatcher($method,$class); |
|
| 44 | + public function addDispatcher($method, $class); |
|
| 45 | 45 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | /** |
| 26 | 26 | * @param Route $route |
| 27 | 27 | */ |
| 28 | - public function __construct(Route $route,ResponseInterface $response) |
|
| 28 | + public function __construct(Route $route, ResponseInterface $response) |
|
| 29 | 29 | { |
| 30 | 30 | $this->route = $route; |
| 31 | 31 | $this->response = $response; |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | $this->response->setHeaders(['Content-Type' => 'text/html']); |
| 43 | 43 | } |
| 44 | 44 | $params = ($this->route->getParameters() == '') ? [] : $this->route->getParameters(); |
| 45 | - if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data',$content); |
|
| 46 | - elseif(!is_null($content)) $this->response->setContent($content); |
|
| 45 | + if (is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data', $content); |
|
| 46 | + elseif (!is_null($content)) $this->response->setContent($content); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | } |
@@ -42,8 +42,11 @@ |
||
| 42 | 42 | $this->response->setHeaders(['Content-Type' => 'text/html']); |
| 43 | 43 | } |
| 44 | 44 | $params = ($this->route->getParameters() == '') ? [] : $this->route->getParameters(); |
| 45 | - if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data',$content); |
|
| 46 | - elseif(!is_null($content)) $this->response->setContent($content); |
|
| 45 | + if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) {
|
|
| 46 | + $this->route->addTarget('data',$content);
|
|
| 47 | + } elseif(!is_null($content)) {
|
|
| 48 | + $this->response->setContent($content); |
|
| 49 | + } |
|
| 47 | 50 | } |
| 48 | 51 | |
| 49 | 52 | } |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | /** |
| 37 | 37 | * @param Route $route |
| 38 | 38 | */ |
| 39 | - public function __construct(Route $route,ResponseInterface $response) |
|
| 39 | + public function __construct(Route $route, ResponseInterface $response) |
|
| 40 | 40 | { |
| 41 | 41 | $this->route = $route; |
| 42 | 42 | $this->response = $response; |
@@ -53,8 +53,8 @@ discard block |
||
| 53 | 53 | $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route])); |
| 54 | 54 | else { |
| 55 | 55 | ob_start(); |
| 56 | - if(isset($this->route->getTarget()['data']))extract($this->route->getTarget('data')); |
|
| 57 | - if(isset($this->route->getParams()['data']))extract($this->route->getParams()['data']); |
|
| 56 | + if (isset($this->route->getTarget()['data']))extract($this->route->getTarget('data')); |
|
| 57 | + if (isset($this->route->getParams()['data']))extract($this->route->getParams()['data']); |
|
| 58 | 58 | require($this->route->getTarget('template')); |
| 59 | 59 | $this->response->setContent(ob_get_clean()); |
| 60 | 60 | } |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | /** |
| 64 | 64 | * @param $extension |
| 65 | 65 | */ |
| 66 | - public function setContentType($extension){ |
|
| 66 | + public function setContentType($extension) { |
|
| 67 | 67 | $this->response->setStatusCode(200); |
| 68 | 68 | isset($this->types[$extension]) |
| 69 | 69 | ? $this->response->setHeaders(['Content-Type' => $this->types[$extension]]) |
@@ -47,14 +47,19 @@ |
||
| 47 | 47 | */ |
| 48 | 48 | public function call() |
| 49 | 49 | { |
| 50 | - if ($this->response->getStatusCode() == 202) |
|
| 51 | - $this->setContentType($this->route->getTarget('extension')); |
|
| 52 | - if (isset($this->route->getTarget('callback')[$this->route->getTarget('extension')])) |
|
| 53 | - $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route])); |
|
| 54 | - else { |
|
| 50 | + if ($this->response->getStatusCode() == 202) {
|
|
| 51 | + $this->setContentType($this->route->getTarget('extension'));
|
|
| 52 | + } |
|
| 53 | + if (isset($this->route->getTarget('callback')[$this->route->getTarget('extension')])) {
|
|
| 54 | + $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route]));
|
|
| 55 | + } else { |
|
| 55 | 56 | ob_start(); |
| 56 | - if(isset($this->route->getTarget()['data']))extract($this->route->getTarget('data')); |
|
| 57 | - if(isset($this->route->getParams()['data']))extract($this->route->getParams()['data']); |
|
| 57 | + if(isset($this->route->getTarget()['data'])) {
|
|
| 58 | + extract($this->route->getTarget('data'));
|
|
| 59 | + } |
|
| 60 | + if(isset($this->route->getParams()['data'])) {
|
|
| 61 | + extract($this->route->getParams()['data']); |
|
| 62 | + } |
|
| 58 | 63 | require($this->route->getTarget('template')); |
| 59 | 64 | $this->response->setContent(ob_get_clean()); |
| 60 | 65 | } |
@@ -33,7 +33,9 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public function __construct($routes = null, $options = []) |
| 35 | 35 | { |
| 36 | - if (!is_null($routes) || !empty($options)) $this->addRoutes($routes, $options); |
|
| 36 | + if (!is_null($routes) || !empty($options)) {
|
|
| 37 | + $this->addRoutes($routes, $options); |
|
| 38 | + } |
|
| 37 | 39 | } |
| 38 | 40 | |
| 39 | 41 | /** |
@@ -43,10 +45,16 @@ discard block |
||
| 43 | 45 | public function addRoutes($routes = null, $options = []) |
| 44 | 46 | { |
| 45 | 47 | if (!is_null($routes) && !is_array($routes)) { |
| 46 | - if (strpos($routes, '.php') === false) $routes = trim($routes, '/') . '/'; |
|
| 47 | - if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) $routes = $routesFile; |
|
| 48 | - elseif (is_file($routes) && is_array($routesFile = include $routes)) $routes = $routesFile; |
|
| 49 | - else throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "' . $routes . '" given'); |
|
| 48 | + if (strpos($routes, '.php') === false) {
|
|
| 49 | + $routes = trim($routes, '/') . '/'; |
|
| 50 | + } |
|
| 51 | + if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) {
|
|
| 52 | + $routes = $routesFile; |
|
| 53 | + } elseif (is_file($routes) && is_array($routesFile = include $routes)) {
|
|
| 54 | + $routes = $routesFile; |
|
| 55 | + } else {
|
|
| 56 | + throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "' . $routes . '" given');
|
|
| 57 | + } |
|
| 50 | 58 | } |
| 51 | 59 | $this->routes['routes_' . $this->countRoutes] = is_array($routes) ? $routes : []; |
| 52 | 60 | $this->setRoutes($options, $this->countRoutes); |
@@ -59,8 +67,9 @@ discard block |
||
| 59 | 67 | */ |
| 60 | 68 | public function getRoutes($key = null) |
| 61 | 69 | { |
| 62 | - if (!is_null($key)) |
|
| 63 | - return isset($this->routes[$key]) ? $this->routes[$key] : ''; |
|
| 70 | + if (!is_null($key)) {
|
|
| 71 | + return isset($this->routes[$key]) ? $this->routes[$key] : ''; |
|
| 72 | + } |
|
| 64 | 73 | return $this->routes; |
| 65 | 74 | } |
| 66 | 75 | |
@@ -71,12 +80,18 @@ discard block |
||
| 71 | 80 | { |
| 72 | 81 | if (is_array($args)) { |
| 73 | 82 | $nbrArgs = count($args); |
| 74 | - for ($i = 0; $i < $nbrArgs; ++$i) |
|
| 75 | - $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/'); |
|
| 76 | - } elseif (is_string($args)) |
|
| 77 | - for ($i = 0; $i < $this->countRoutes; ++$i) |
|
| 78 | - $this->routes['prefix_' . $i] = '/' . trim($args, '/'); |
|
| 79 | - if ($this->countRoutes == 0) $this->countRoutes++; |
|
| 83 | + for ($i = 0; $i < $nbrArgs; ++$i) {
|
|
| 84 | + $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/'); |
|
| 85 | + } |
|
| 86 | + } elseif (is_string($args)) {
|
|
| 87 | + for ($i = 0; |
|
| 88 | + } |
|
| 89 | + $i < $this->countRoutes; ++$i) {
|
|
| 90 | + $this->routes['prefix_' . $i] = '/' . trim($args, '/'); |
|
| 91 | + } |
|
| 92 | + if ($this->countRoutes == 0) {
|
|
| 93 | + $this->countRoutes++; |
|
| 94 | + } |
|
| 80 | 95 | } |
| 81 | 96 | |
| 82 | 97 | /** |
@@ -88,10 +103,14 @@ discard block |
||
| 88 | 103 | for ($i = 0; $i < $nbrArgs; ++$i) { |
| 89 | 104 | if (is_array($args[$i])) { |
| 90 | 105 | $this->setRoutes($args[$i], $i); |
| 91 | - if (!isset($this->routes['routes_' . $i])) $this->routes['routes_' . $i] = []; |
|
| 106 | + if (!isset($this->routes['routes_' . $i])) {
|
|
| 107 | + $this->routes['routes_' . $i] = []; |
|
| 108 | + } |
|
| 92 | 109 | } |
| 93 | 110 | } |
| 94 | - if ($this->countRoutes == 0) $this->countRoutes++; |
|
| 111 | + if ($this->countRoutes == 0) {
|
|
| 112 | + $this->countRoutes++; |
|
| 113 | + } |
|
| 95 | 114 | } |
| 96 | 115 | |
| 97 | 116 | /** |
@@ -113,12 +132,16 @@ discard block |
||
| 113 | 132 | */ |
| 114 | 133 | public function setMiddleware($middleware) |
| 115 | 134 | { |
| 116 | - if (is_string($middleware)) $middleware = rtrim($middleware, '/'); |
|
| 117 | - if (is_array($middleware)) |
|
| 118 | - $this->middleware = $middleware; |
|
| 119 | - elseif (is_file($middleware) && is_array($mid = include $middleware)) |
|
| 120 | - $this->middleware = $mid; |
|
| 121 | - else throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file'); |
|
| 135 | + if (is_string($middleware)) {
|
|
| 136 | + $middleware = rtrim($middleware, '/'); |
|
| 137 | + } |
|
| 138 | + if (is_array($middleware)) {
|
|
| 139 | + $this->middleware = $middleware; |
|
| 140 | + } elseif (is_file($middleware) && is_array($mid = include $middleware)) {
|
|
| 141 | + $this->middleware = $mid; |
|
| 142 | + } else {
|
|
| 143 | + throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file');
|
|
| 144 | + } |
|
| 122 | 145 | } |
| 123 | 146 | |
| 124 | 147 | /** |
@@ -127,19 +150,21 @@ discard block |
||
| 127 | 150 | public function generateRoutesPath() |
| 128 | 151 | { |
| 129 | 152 | $root = (isset($_SERVER['REQUEST_SCHEME'])?$_SERVER['REQUEST_SCHEME']:'http') . '://' . ($domain = (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'])) . str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']); |
| 130 | - if (strpos($domain, ($new_domain = $this->getDomain($root))) !== false) |
|
| 131 | - $root = str_replace($domain, $new_domain, $root); |
|
| 153 | + if (strpos($domain, ($new_domain = $this->getDomain($root))) !== false) {
|
|
| 154 | + $root = str_replace($domain, $new_domain, $root); |
|
| 155 | + } |
|
| 132 | 156 | $count = 0; |
| 133 | 157 | for ($i = 0; $i < $this->countRoutes; ++$i) { |
| 134 | 158 | $prefix = (isset($this->routes['prefix_' . $i])) ? $this->routes['prefix_' . $i] : ''; |
| 135 | - if (isset($this->routes['routes_' . $i])) |
|
| 136 | - foreach ($this->routes['routes_' . $i] as $route => $dependencies) { |
|
| 159 | + if (isset($this->routes['routes_' . $i])) {
|
|
| 160 | + foreach ($this->routes['routes_' . $i] as $route => $dependencies) { |
|
| 137 | 161 | if (is_array($dependencies) && isset($dependencies['use'])) |
| 138 | - $use = (is_callable($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); |
|
| 139 | - elseif (!is_array($dependencies)) |
|
| 140 | - $use = (is_callable($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); |
|
| 141 | - else |
|
| 142 | - $use = $route; |
|
| 162 | + $use = (is_callable($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); |
|
| 163 | + } elseif (!is_array($dependencies)) {
|
|
| 164 | + $use = (is_callable($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); |
|
| 165 | + } else {
|
|
| 166 | + $use = $route; |
|
| 167 | + } |
|
| 143 | 168 | if (isset($route[0]) && $route[0] == '/') { |
| 144 | 169 | (!is_callable($dependencies) && isset($dependencies['name'])) ? $this->routesByName[$use . '#' . $dependencies['name']] = $root . $prefix . $route : $this->routesByName[$use] = $root . $prefix . $route; |
| 145 | 170 | } else { |
@@ -176,9 +201,14 @@ discard block |
||
| 176 | 201 | foreach ($this->routesByName as $key => $route) { |
| 177 | 202 | $param = explode('#', $key); |
| 178 | 203 | $route = str_replace('{subdomain}', $subdomain, $route); |
| 179 | - foreach ($params as $key2 => $value) $route = str_replace(':' . $key2, $value, $route); |
|
| 180 | - if ($param[0] == trim($name, '/')) return $route; |
|
| 181 | - else if (isset($param[1]) && $param[1] == $name) return $route; |
|
| 204 | + foreach ($params as $key2 => $value) {
|
|
| 205 | + $route = str_replace(':' . $key2, $value, $route);
|
|
| 206 | + } |
|
| 207 | + if ($param[0] == trim($name, '/')) {
|
|
| 208 | + return $route; |
|
| 209 | + } else if (isset($param[1]) && $param[1] == $name) {
|
|
| 210 | + return $route; |
|
| 211 | + } |
|
| 182 | 212 | } |
| 183 | 213 | return null; |
| 184 | 214 | } |
@@ -47,12 +47,12 @@ discard block |
||
| 47 | 47 | public function addRoutes($routes = null, $options = []) |
| 48 | 48 | { |
| 49 | 49 | if (!is_null($routes) && !is_array($routes)) { |
| 50 | - if (strpos($routes, '.php') === false) $routes = trim($routes, '/') . '/'; |
|
| 51 | - if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) $routes = $routesFile; |
|
| 50 | + if (strpos($routes, '.php') === false) $routes = trim($routes, '/').'/'; |
|
| 51 | + if (is_file($routes.'/routes.php') && is_array($routesFile = include $routes.'/routes.php')) $routes = $routesFile; |
|
| 52 | 52 | elseif (is_file($routes) && is_array($routesFile = include $routes)) $routes = $routesFile; |
| 53 | - else throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "' . $routes . '" given'); |
|
| 53 | + else throw new \InvalidArgumentException('Argument for "'.get_called_class().'" constructor is not recognized. Expected argument array or file containing array but "'.$routes.'" given'); |
|
| 54 | 54 | } |
| 55 | - $this->routes['routes_' . $this->countRoutes] = is_array($routes) ? $routes : []; |
|
| 55 | + $this->routes['routes_'.$this->countRoutes] = is_array($routes) ? $routes : []; |
|
| 56 | 56 | $this->setRoutes($options, $this->countRoutes); |
| 57 | 57 | $this->countRoutes++; |
| 58 | 58 | } |
@@ -76,10 +76,10 @@ discard block |
||
| 76 | 76 | if (is_array($args)) { |
| 77 | 77 | $nbrArgs = count($args); |
| 78 | 78 | for ($i = 0; $i < $nbrArgs; ++$i) |
| 79 | - $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/'); |
|
| 79 | + $this->routes['prefix_'.$i] = '/'.trim($args[$i], '/'); |
|
| 80 | 80 | } elseif (is_string($args)) |
| 81 | 81 | for ($i = 0; $i < $this->countRoutes; ++$i) |
| 82 | - $this->routes['prefix_' . $i] = '/' . trim($args, '/'); |
|
| 82 | + $this->routes['prefix_'.$i] = '/'.trim($args, '/'); |
|
| 83 | 83 | if ($this->countRoutes == 0) $this->countRoutes++; |
| 84 | 84 | } |
| 85 | 85 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | for ($i = 0; $i < $nbrArgs; ++$i) { |
| 93 | 93 | if (is_array($args[$i])) { |
| 94 | 94 | $this->setRoutes($args[$i], $i); |
| 95 | - if (!isset($this->routes['routes_' . $i])) $this->routes['routes_' . $i] = []; |
|
| 95 | + if (!isset($this->routes['routes_'.$i])) $this->routes['routes_'.$i] = []; |
|
| 96 | 96 | } |
| 97 | 97 | } |
| 98 | 98 | if ($this->countRoutes == 0) $this->countRoutes++; |
@@ -104,11 +104,11 @@ discard block |
||
| 104 | 104 | */ |
| 105 | 105 | private function setRoutes($args = [], $i) |
| 106 | 106 | { |
| 107 | - $this->routes['block_' . $i] = (isset($args['block']) && !empty($args['block'])) ? rtrim($args['block'], '/') . '/' : ''; |
|
| 108 | - $this->routes['view_dir_' . $i] = (isset($args['view_dir']) && !empty($args['view_dir'])) ? rtrim($args['view_dir'], '/') . '/' : ''; |
|
| 109 | - $this->routes['ctrl_namespace_' . $i] = (isset($args['ctrl_namespace']) && !empty($args['ctrl_namespace'])) ? trim($args['ctrl_namespace'], '\\') . '\\' : ''; |
|
| 110 | - $this->routes['prefix_' . $i] = (isset($args['prefix']) && !empty($args['prefix'])) ? '/' . trim($args['prefix'], '/') : ''; |
|
| 111 | - $this->routes['subdomain_' . $i] = (isset($args['subdomain'])) ? $args['subdomain'] : ''; |
|
| 107 | + $this->routes['block_'.$i] = (isset($args['block']) && !empty($args['block'])) ? rtrim($args['block'], '/').'/' : ''; |
|
| 108 | + $this->routes['view_dir_'.$i] = (isset($args['view_dir']) && !empty($args['view_dir'])) ? rtrim($args['view_dir'], '/').'/' : ''; |
|
| 109 | + $this->routes['ctrl_namespace_'.$i] = (isset($args['ctrl_namespace']) && !empty($args['ctrl_namespace'])) ? trim($args['ctrl_namespace'], '\\').'\\' : ''; |
|
| 110 | + $this->routes['prefix_'.$i] = (isset($args['prefix']) && !empty($args['prefix'])) ? '/'.trim($args['prefix'], '/') : ''; |
|
| 111 | + $this->routes['subdomain_'.$i] = (isset($args['subdomain'])) ? $args['subdomain'] : ''; |
|
| 112 | 112 | } |
| 113 | 113 | |
| 114 | 114 | /** |
@@ -130,30 +130,30 @@ discard block |
||
| 130 | 130 | */ |
| 131 | 131 | public function generateRoutesPath() |
| 132 | 132 | { |
| 133 | - $root = ($protocol = (isset($_SERVER['REQUEST_SCHEME'])?$_SERVER['REQUEST_SCHEME']:'http')) . '://' . ($domain = $_SERVER['SERVER_NAME']) . (!empty($_SERVER['SERVER_PORT']) ? ':'.$_SERVER['SERVER_PORT'] : '' ) . str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']); |
|
| 133 | + $root = ($protocol = (isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http')).'://'.($domain = $_SERVER['SERVER_NAME']).(!empty($_SERVER['SERVER_PORT']) ? ':'.$_SERVER['SERVER_PORT'] : '').str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']); |
|
| 134 | 134 | if (strpos($domain, ($new_domain = $this->getDomain($root))) !== false) |
| 135 | 135 | $root = str_replace($domain, $new_domain, $root); |
| 136 | 136 | $count = 0; |
| 137 | 137 | for ($i = 0; $i < $this->countRoutes; ++$i) { |
| 138 | - $prefix = (isset($this->routes['prefix_' . $i])) ? $this->routes['prefix_' . $i] : ''; |
|
| 139 | - $subdomain = (isset($this->routes['subdomain_' . $i])) ? $this->routes['subdomain_' . $i] : ''; |
|
| 140 | - $url = (!empty($subdomain)) ? str_replace($protocol.'://',$protocol.'://'.$subdomain.'.' ,$root) : $root; |
|
| 141 | - if (isset($this->routes['routes_' . $i])) |
|
| 142 | - foreach ($this->routes['routes_' . $i] as $route => $dependencies) { |
|
| 138 | + $prefix = (isset($this->routes['prefix_'.$i])) ? $this->routes['prefix_'.$i] : ''; |
|
| 139 | + $subdomain = (isset($this->routes['subdomain_'.$i])) ? $this->routes['subdomain_'.$i] : ''; |
|
| 140 | + $url = (!empty($subdomain)) ? str_replace($protocol.'://', $protocol.'://'.$subdomain.'.', $root) : $root; |
|
| 141 | + if (isset($this->routes['routes_'.$i])) |
|
| 142 | + foreach ($this->routes['routes_'.$i] as $route => $dependencies) { |
|
| 143 | 143 | if (is_array($dependencies) && isset($dependencies['use'])) |
| 144 | - $use = (is_callable($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); |
|
| 144 | + $use = (is_callable($dependencies['use'])) ? 'closure-'.$count : trim($dependencies['use'], '/'); |
|
| 145 | 145 | elseif (!is_array($dependencies)) |
| 146 | - $use = (is_callable($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); |
|
| 146 | + $use = (is_callable($dependencies)) ? 'closure-'.$count : trim($dependencies, '/'); |
|
| 147 | 147 | else |
| 148 | 148 | $use = $route; |
| 149 | 149 | if (isset($route[0]) && $route[0] == '/') { |
| 150 | 150 | (!is_callable($dependencies) && isset($dependencies['name'])) |
| 151 | - ? $this->routesByName[$use . '#' . $dependencies['name']] = $url . $prefix . $route |
|
| 152 | - : $this->routesByName[$use] = $url . $prefix . $route; |
|
| 151 | + ? $this->routesByName[$use.'#'.$dependencies['name']] = $url.$prefix.$route |
|
| 152 | + : $this->routesByName[$use] = $url.$prefix.$route; |
|
| 153 | 153 | } else { |
| 154 | 154 | (!is_callable($dependencies) && isset($dependencies['name'])) |
| 155 | - ? $this->routesByName[$use . '#' . $dependencies['name']] = $protocol . '://' . str_replace('{host}', $new_domain, $route) . $prefix |
|
| 156 | - : $this->routesByName[$use] = $protocol . '://' . str_replace('{host}', $new_domain, $route) . $prefix; |
|
| 155 | + ? $this->routesByName[$use.'#'.$dependencies['name']] = $protocol.'://'.str_replace('{host}', $new_domain, $route).$prefix |
|
| 156 | + : $this->routesByName[$use] = $protocol.'://'.str_replace('{host}', $new_domain, $route).$prefix; |
|
| 157 | 157 | } |
| 158 | 158 | $count++; |
| 159 | 159 | } |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | foreach ($this->routesByName as $key => $route) { |
| 187 | 187 | $param = explode('#', $key); |
| 188 | 188 | $route = str_replace('{subdomain}', $subdomain, $route); |
| 189 | - foreach ($params as $key2 => $value) $route = str_replace(':' . $key2, $value, $route); |
|
| 189 | + foreach ($params as $key2 => $value) $route = str_replace(':'.$key2, $value, $route); |
|
| 190 | 190 | if ($param[0] == trim($name, '/')) return $route; |
| 191 | 191 | else if (isset($param[1]) && $param[1] == $name) return $route; |
| 192 | 192 | } |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |
| 161 | - * @param $regex |
|
| 161 | + * @param string $regex |
|
| 162 | 162 | * @return bool |
| 163 | 163 | */ |
| 164 | 164 | private function routeMatch($regex) |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | /** |
| 179 | - * @return bool |
|
| 179 | + * @return null|boolean |
|
| 180 | 180 | */ |
| 181 | 181 | private function generateTarget() |
| 182 | 182 | { |
@@ -102,7 +102,9 @@ discard block |
||
| 102 | 102 | $this->request['route'] = preg_replace_callback('#:([\w]+)#', [$this, 'paramMatch'], '/' . trim(trim($this->request['prefix'], '/') . '/' . trim($route, '/'), '/')); |
| 103 | 103 | if ($this->routeMatch('#^' . $this->request['route'] . '$#')) { |
| 104 | 104 | $this->setCallback(); |
| 105 | - if(!is_null($response = $this->generateTarget())) return $response; |
|
| 105 | + if(!is_null($response = $this->generateTarget())) {
|
|
| 106 | + return $response; |
|
| 107 | + } |
|
| 106 | 108 | } |
| 107 | 109 | } |
| 108 | 110 | } |
@@ -117,10 +119,12 @@ discard block |
||
| 117 | 119 | private function checkSubdomain($route){ |
| 118 | 120 | $url = (isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http') . '://' . ($host = (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'])); |
| 119 | 121 | $domain = $this->router->collection->getDomain($url); |
| 120 | - if(!empty($this->request['subdomain']) && $route[0] == '/') $route = trim($this->request['subdomain'],'.').'.'.$domain.$route; |
|
| 122 | + if(!empty($this->request['subdomain']) && $route[0] == '/') {
|
|
| 123 | + $route = trim($this->request['subdomain'],'.').'.'.$domain.$route; |
|
| 124 | + } |
|
| 121 | 125 | if($route[0] == '/'){ |
| 122 | 126 | return ($host != $domain) ? false : true; |
| 123 | - }elseif($route[0] != '/' && $host != $domain){ |
|
| 127 | + } elseif($route[0] != '/' && $host != $domain){ |
|
| 124 | 128 | $route = substr($route, 0, strpos($route, "/")); |
| 125 | 129 | $route = str_replace('{host}', $domain, $route); |
| 126 | 130 | $route = preg_replace_callback('#{subdomain}#', [$this, 'subdomainMatch'], $route); |
@@ -165,8 +169,9 @@ discard block |
||
| 165 | 169 | { |
| 166 | 170 | if (substr($this->request['route'], -1) == '*') { |
| 167 | 171 | $pos = strpos($this->request['route'], '*'); |
| 168 | - if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos) && isset($this->request['params'])) |
|
| 169 | - return true; |
|
| 172 | + if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos) && isset($this->request['params'])) {
|
|
| 173 | + return true; |
|
| 174 | + } |
|
| 170 | 175 | } |
| 171 | 176 | if (preg_match($regex, $this->router->route->getUrl(), $this->request['parameters'])) { |
| 172 | 177 | array_shift($this->request['parameters']); |
@@ -184,8 +189,9 @@ discard block |
||
| 184 | 189 | foreach ($this->resolver as $resolver) { |
| 185 | 190 | if (is_array($target = call_user_func_array([$this, $resolver], [$this->router->route->getCallback()]))) { |
| 186 | 191 | $this->setTarget($target); |
| 187 | - if ($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false) |
|
| 188 | - return null; |
|
| 192 | + if ($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false) {
|
|
| 193 | + return null; |
|
| 194 | + } |
|
| 189 | 195 | $this->router->response->setStatusCode(202); |
| 190 | 196 | return true; |
| 191 | 197 | } |
@@ -212,14 +218,18 @@ discard block |
||
| 212 | 218 | */ |
| 213 | 219 | private function setCallback(){ |
| 214 | 220 | if (isset($this->request['params'])) { |
| 215 | - if(is_callable($this->request['params'])) |
|
| 216 | - $this->router->route->setCallback($this->request['params']); |
|
| 217 | - else { |
|
| 221 | + if(is_callable($this->request['params'])) {
|
|
| 222 | + $this->router->route->setCallback($this->request['params']); |
|
| 223 | + } else { |
|
| 218 | 224 | (is_array($this->request['params']) && isset($this->request['params']['use'])) |
| 219 | 225 | ? $this->router->route->setCallback($this->request['params']['use']) |
| 220 | 226 | : $this->router->route->setCallback($this->request['params']); |
| 221 | - if (isset($this->request['params']['name'])) $this->router->route->setName($this->request['params']['name']); |
|
| 222 | - if (isset($this->request['params']['method'])) $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']]; |
|
| 227 | + if (isset($this->request['params']['name'])) {
|
|
| 228 | + $this->router->route->setName($this->request['params']['name']); |
|
| 229 | + } |
|
| 230 | + if (isset($this->request['params']['method'])) {
|
|
| 231 | + $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']]; |
|
| 232 | + } |
|
| 223 | 233 | } |
| 224 | 234 | } |
| 225 | 235 | } |
@@ -229,9 +239,12 @@ discard block |
||
| 229 | 239 | */ |
| 230 | 240 | public function validMethod() |
| 231 | 241 | { |
| 232 | - if(is_callable($this->request['params']))return true; |
|
| 233 | - if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
|
| 234 | - return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
|
| 242 | + if(is_callable($this->request['params'])) {
|
|
| 243 | + return true; |
|
| 244 | + } |
|
| 245 | + if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
|
|
| 246 | + return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
|
| 247 | + } |
|
| 235 | 248 | $method = (isset($this->request['params']['method'])) ? $this->request['params']['method'] : ['GET']; |
| 236 | 249 | return (in_array($this->router->route->getMethod(), $method)) ? true : false; |
| 237 | 250 | } |
@@ -295,20 +308,25 @@ discard block |
||
| 295 | 308 | { |
| 296 | 309 | if (is_string($callback) && strpos($callback, '@') !== false) { |
| 297 | 310 | $routes = explode('@', $callback); |
| 298 | - if (!isset($routes[1])) $routes[1] = 'index'; |
|
| 311 | + if (!isset($routes[1])) {
|
|
| 312 | + $routes[1] = 'index'; |
|
| 313 | + } |
|
| 299 | 314 | if ($routes[1] == '{method}'){ |
| 300 | 315 | $this->request['parameters'] = explode('/',str_replace(str_replace('*','',$this->request['route']),'',$this->router->route->getUrl())); |
| 301 | 316 | $routes[1] = $this->request['parameters'][0]; |
| 302 | 317 | array_shift($this->request['parameters']); |
| 303 | - if(preg_match('/[A-Z]/', $routes[1])) return false; |
|
| 318 | + if(preg_match('/[A-Z]/', $routes[1])) {
|
|
| 319 | + return false; |
|
| 320 | + } |
|
| 304 | 321 | $routes[1] = lcfirst(str_replace('-','',ucwords($routes[1],'-'))); |
| 305 | 322 | } |
| 306 | 323 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 307 | 324 | $class = (class_exists($routes[0])) |
| 308 | 325 | ? $routes[0] |
| 309 | 326 | : $this->router->collection->getRoutes()['ctrl_namespace_' . $index] . $routes[0]; |
| 310 | - if (!class_exists($class)) |
|
| 311 | - throw new \Exception('Class "' . $class . '." is not found'); |
|
| 327 | + if (!class_exists($class)) {
|
|
| 328 | + throw new \Exception('Class "' . $class . '." is not found');
|
|
| 329 | + } |
|
| 312 | 330 | if (method_exists($class, $routes[1])) { |
| 313 | 331 | return [ |
| 314 | 332 | 'dispatcher' => $this->dispatcher['isController'], |
@@ -317,8 +335,9 @@ discard block |
||
| 317 | 335 | 'action' => $routes[1] |
| 318 | 336 | ]; |
| 319 | 337 | } |
| 320 | - if (!strpos($callback, '{method}') !== false) |
|
| 321 | - throw new \Exception('The required method "' . $routes[1] . '" is not found in "' . $class . '"'); |
|
| 338 | + if (!strpos($callback, '{method}') !== false) {
|
|
| 339 | + throw new \Exception('The required method "' . $routes[1] . '" is not found in "' . $class . '"');
|
|
| 340 | + } |
|
| 322 | 341 | } |
| 323 | 342 | return false; |
| 324 | 343 | } |
@@ -336,9 +355,9 @@ discard block |
||
| 336 | 355 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 337 | 356 | $viewDir = $this->router->collection->getRoutes('view_dir_' . $index); |
| 338 | 357 | $target = null; |
| 339 | - if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path))) |
|
| 340 | - $target = $fullPath; |
|
| 341 | - else { |
|
| 358 | + if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path))) {
|
|
| 359 | + $target = $fullPath; |
|
| 360 | + } else { |
|
| 342 | 361 | foreach ($this->router->getConfig()['templateExtension'] as $ext) { |
| 343 | 362 | if (is_file($fullPath = $viewDir . $path . $ext) || is_file($fullPath = $path . $ext)) { |
| 344 | 363 | $target = $fullPath; |
@@ -347,8 +366,9 @@ discard block |
||
| 347 | 366 | } |
| 348 | 367 | } |
| 349 | 368 | } |
| 350 | - if(is_null($target)) |
|
| 351 | - throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"'); |
|
| 369 | + if(is_null($target)) {
|
|
| 370 | + throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"');
|
|
| 371 | + } |
|
| 352 | 372 | return [ |
| 353 | 373 | 'dispatcher' => $this->dispatcher['isTemplate'], |
| 354 | 374 | 'template' => $target, |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | /** |
| 26 | 26 | * @var array |
| 27 | 27 | */ |
| 28 | - private $resolver = ['isClosureAndTemplate','isControllerAndTemplate','isTemplate']; |
|
| 28 | + private $resolver = ['isClosureAndTemplate', 'isControllerAndTemplate', 'isTemplate']; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * @var array |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | 'isClosure' => 'JetFire\Routing\Dispatcher\ClosureDispatcher', |
| 35 | 35 | 'isController' => 'JetFire\Routing\Dispatcher\ControllerDispatcher', |
| 36 | 36 | 'isTemplate' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', |
| 37 | - 'isControllerAndTemplate' => ['JetFire\Routing\Dispatcher\ControllerDispatcher','JetFire\Routing\Dispatcher\TemplateDispatcher'], |
|
| 38 | - 'isClosureAndTemplate' => ['JetFire\Routing\Dispatcher\ClosureDispatcher','JetFire\Routing\Dispatcher\TemplateDispatcher'], |
|
| 37 | + 'isControllerAndTemplate' => ['JetFire\Routing\Dispatcher\ControllerDispatcher', 'JetFire\Routing\Dispatcher\TemplateDispatcher'], |
|
| 38 | + 'isClosureAndTemplate' => ['JetFire\Routing\Dispatcher\ClosureDispatcher', 'JetFire\Routing\Dispatcher\TemplateDispatcher'], |
|
| 39 | 39 | ]; |
| 40 | 40 | |
| 41 | 41 | /** |
@@ -49,14 +49,14 @@ discard block |
||
| 49 | 49 | /** |
| 50 | 50 | * @param array $resolver |
| 51 | 51 | */ |
| 52 | - public function setResolver($resolver = []){ |
|
| 52 | + public function setResolver($resolver = []) { |
|
| 53 | 53 | $this->resolver = $resolver; |
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | /** |
| 57 | 57 | * @param string $resolver |
| 58 | 58 | */ |
| 59 | - public function addResolver($resolver){ |
|
| 59 | + public function addResolver($resolver) { |
|
| 60 | 60 | $this->resolver[] = $resolver; |
| 61 | 61 | } |
| 62 | 62 | |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | /** |
| 72 | 72 | * @param array $dispatcher |
| 73 | 73 | */ |
| 74 | - public function setDispatcher($dispatcher = []){ |
|
| 74 | + public function setDispatcher($dispatcher = []) { |
|
| 75 | 75 | $this->dispatcher = $dispatcher; |
| 76 | 76 | } |
| 77 | 77 | |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * @return mixed|void |
| 82 | 82 | * @internal param array $dispatcher |
| 83 | 83 | */ |
| 84 | - public function addDispatcher($method,$class){ |
|
| 84 | + public function addDispatcher($method, $class) { |
|
| 85 | 85 | $this->dispatcher[$method] = $class; |
| 86 | 86 | } |
| 87 | 87 | |
@@ -92,17 +92,17 @@ discard block |
||
| 92 | 92 | { |
| 93 | 93 | $this->request = []; |
| 94 | 94 | for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) { |
| 95 | - $this->request['prefix'] = ($this->router->collection->getRoutes('prefix_' . $i) != '') ? $this->router->collection->getRoutes('prefix_' . $i) : ''; |
|
| 96 | - $this->request['subdomain'] = ($this->router->collection->getRoutes('subdomain_' . $i) != '') ? $this->router->collection->getRoutes('subdomain_' . $i) : ''; |
|
| 97 | - foreach ($this->router->collection->getRoutes('routes_' . $i) as $route => $params) { |
|
| 95 | + $this->request['prefix'] = ($this->router->collection->getRoutes('prefix_'.$i) != '') ? $this->router->collection->getRoutes('prefix_'.$i) : ''; |
|
| 96 | + $this->request['subdomain'] = ($this->router->collection->getRoutes('subdomain_'.$i) != '') ? $this->router->collection->getRoutes('subdomain_'.$i) : ''; |
|
| 97 | + foreach ($this->router->collection->getRoutes('routes_'.$i) as $route => $params) { |
|
| 98 | 98 | $this->request['params'] = $params; |
| 99 | 99 | $this->request['collection_index'] = $i; |
| 100 | - if($this->checkSubdomain($route)) { |
|
| 100 | + if ($this->checkSubdomain($route)) { |
|
| 101 | 101 | $route = strstr($route, '/'); |
| 102 | - $this->request['route'] = preg_replace_callback('#:([\w]+)#', [$this, 'paramMatch'], '/' . trim(trim($this->request['prefix'], '/') . '/' . trim($route, '/'), '/')); |
|
| 103 | - if ($this->routeMatch('#^' . $this->request['route'] . '$#')) { |
|
| 102 | + $this->request['route'] = preg_replace_callback('#:([\w]+)#', [$this, 'paramMatch'], '/'.trim(trim($this->request['prefix'], '/').'/'.trim($route, '/'), '/')); |
|
| 103 | + if ($this->routeMatch('#^'.$this->request['route'].'$#')) { |
|
| 104 | 104 | $this->setCallback(); |
| 105 | - if(!is_null($response = $this->generateTarget())) return $response; |
|
| 105 | + if (!is_null($response = $this->generateTarget())) return $response; |
|
| 106 | 106 | } |
| 107 | 107 | } |
| 108 | 108 | } |
@@ -114,20 +114,20 @@ discard block |
||
| 114 | 114 | * @param $route |
| 115 | 115 | * @return bool |
| 116 | 116 | */ |
| 117 | - private function checkSubdomain($route){ |
|
| 118 | - $url = (isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http') . '://' . ($host = (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST'])); |
|
| 119 | - $host = explode(':',$host)[0]; |
|
| 117 | + private function checkSubdomain($route) { |
|
| 118 | + $url = (isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http').'://'.($host = (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST'])); |
|
| 119 | + $host = explode(':', $host)[0]; |
|
| 120 | 120 | $domain = $this->router->collection->getDomain($url); |
| 121 | - if(!empty($this->request['subdomain']) && $route[0] == '/') $route = trim($this->request['subdomain'],'.').'.'.$domain.$route; |
|
| 122 | - if($route[0] == '/'){ |
|
| 121 | + if (!empty($this->request['subdomain']) && $route[0] == '/') $route = trim($this->request['subdomain'], '.').'.'.$domain.$route; |
|
| 122 | + if ($route[0] == '/') { |
|
| 123 | 123 | return ($host != $domain) ? false : true; |
| 124 | - }elseif($route[0] != '/' && $host != $domain){ |
|
| 124 | + }elseif ($route[0] != '/' && $host != $domain) { |
|
| 125 | 125 | $route = substr($route, 0, strpos($route, "/")); |
| 126 | 126 | $route = str_replace('{host}', $domain, $route); |
| 127 | 127 | $route = preg_replace_callback('#{subdomain}#', [$this, 'subdomainMatch'], $route); |
| 128 | - if (preg_match('#^' . $route . '$#', $host, $this->request['called_subdomain'])) { |
|
| 128 | + if (preg_match('#^'.$route.'$#', $host, $this->request['called_subdomain'])) { |
|
| 129 | 129 | $this->request['called_subdomain'] = array_shift($this->request['called_subdomain']); |
| 130 | - $this->request['subdomain'] = str_replace('.'.$domain,'',$host); |
|
| 130 | + $this->request['subdomain'] = str_replace('.'.$domain, '', $host); |
|
| 131 | 131 | return true; |
| 132 | 132 | } |
| 133 | 133 | } |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | private function subdomainMatch() |
| 141 | 141 | { |
| 142 | 142 | if (is_array($this->request['params']) && isset($this->request['params']['subdomain'])) { |
| 143 | - return '(' . $this->request['params']['subdomain'] . ')'; |
|
| 143 | + return '('.$this->request['params']['subdomain'].')'; |
|
| 144 | 144 | } |
| 145 | 145 | return '([^/]+)'; |
| 146 | 146 | } |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | { |
| 154 | 154 | if (is_array($this->request['params']) && isset($this->request['params']['arguments'][$match[1]])) { |
| 155 | 155 | $this->request['params']['arguments'][$match[1]] = str_replace('(', '(?:', $this->request['params']['arguments'][$match[1]]); |
| 156 | - return '(' . $this->request['params']['arguments'][$match[1]] . ')'; |
|
| 156 | + return '('.$this->request['params']['arguments'][$match[1]].')'; |
|
| 157 | 157 | } |
| 158 | 158 | return '([^/]+)'; |
| 159 | 159 | } |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | private function generateTarget() |
| 183 | 183 | { |
| 184 | - if($this->validMethod()) { |
|
| 184 | + if ($this->validMethod()) { |
|
| 185 | 185 | foreach ($this->resolver as $resolver) { |
| 186 | 186 | if (is_array($target = call_user_func_array([$this, $resolver], [$this->router->route->getCallback()]))) { |
| 187 | 187 | $this->setTarget($target); |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | /** |
| 201 | 201 | * @param array $target |
| 202 | 202 | */ |
| 203 | - public function setTarget($target = []){ |
|
| 203 | + public function setTarget($target = []) { |
|
| 204 | 204 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 205 | 205 | $this->router->route->setDetail($this->request); |
| 206 | 206 | $this->router->route->setTarget($target); |
@@ -211,9 +211,9 @@ discard block |
||
| 211 | 211 | /** |
| 212 | 212 | * |
| 213 | 213 | */ |
| 214 | - private function setCallback(){ |
|
| 214 | + private function setCallback() { |
|
| 215 | 215 | if (isset($this->request['params'])) { |
| 216 | - if(is_callable($this->request['params'])) |
|
| 216 | + if (is_callable($this->request['params'])) |
|
| 217 | 217 | $this->router->route->setCallback($this->request['params']); |
| 218 | 218 | else { |
| 219 | 219 | (is_array($this->request['params']) && isset($this->request['params']['use'])) |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | */ |
| 231 | 231 | public function validMethod() |
| 232 | 232 | { |
| 233 | - if(is_callable($this->request['params']))return true; |
|
| 233 | + if (is_callable($this->request['params']))return true; |
|
| 234 | 234 | if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
| 235 | 235 | return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
| 236 | 236 | $method = (isset($this->request['params']['method'])) ? $this->request['params']['method'] : ['GET']; |
@@ -242,10 +242,10 @@ discard block |
||
| 242 | 242 | * @return array|bool |
| 243 | 243 | * @throws \Exception |
| 244 | 244 | */ |
| 245 | - public function isClosureAndTemplate($callback){ |
|
| 246 | - if(is_array($cls = $this->isClosure($callback))) { |
|
| 245 | + public function isClosureAndTemplate($callback) { |
|
| 246 | + if (is_array($cls = $this->isClosure($callback))) { |
|
| 247 | 247 | if (is_array($this->request['params']) && isset($this->request['params']['template']) && is_array($tpl = $this->isTemplate($this->request['params']['template']))) { |
| 248 | - return array_merge(array_merge($cls, $tpl),[ |
|
| 248 | + return array_merge(array_merge($cls, $tpl), [ |
|
| 249 | 249 | 'dispatcher' => $this->dispatcher['isClosureAndTemplate'] |
| 250 | 250 | ]); |
| 251 | 251 | } |
@@ -259,10 +259,10 @@ discard block |
||
| 259 | 259 | * @return array|bool |
| 260 | 260 | * @throws \Exception |
| 261 | 261 | */ |
| 262 | - public function isControllerAndTemplate($callback){ |
|
| 263 | - if(is_array($ctrl = $this->isController($callback))) { |
|
| 262 | + public function isControllerAndTemplate($callback) { |
|
| 263 | + if (is_array($ctrl = $this->isController($callback))) { |
|
| 264 | 264 | if (is_array($this->request['params']) && isset($this->request['params']['template']) && is_array($tpl = $this->isTemplate($this->request['params']['template']))) { |
| 265 | - return array_merge(array_merge($ctrl, $tpl),[ |
|
| 265 | + return array_merge(array_merge($ctrl, $tpl), [ |
|
| 266 | 266 | 'dispatcher' => $this->dispatcher['isControllerAndTemplate'] |
| 267 | 267 | ]); |
| 268 | 268 | } |
@@ -297,19 +297,19 @@ discard block |
||
| 297 | 297 | if (is_string($callback) && strpos($callback, '@') !== false) { |
| 298 | 298 | $routes = explode('@', $callback); |
| 299 | 299 | if (!isset($routes[1])) $routes[1] = 'index'; |
| 300 | - if ($routes[1] == '{method}'){ |
|
| 301 | - $this->request['parameters'] = explode('/',str_replace(str_replace('*','',$this->request['route']),'',$this->router->route->getUrl())); |
|
| 300 | + if ($routes[1] == '{method}') { |
|
| 301 | + $this->request['parameters'] = explode('/', str_replace(str_replace('*', '', $this->request['route']), '', $this->router->route->getUrl())); |
|
| 302 | 302 | $routes[1] = $this->request['parameters'][0]; |
| 303 | 303 | array_shift($this->request['parameters']); |
| 304 | - if(preg_match('/[A-Z]/', $routes[1])) return false; |
|
| 305 | - $routes[1] = lcfirst(str_replace(' ','',ucwords(str_replace('-',' ',$routes[1])))); |
|
| 304 | + if (preg_match('/[A-Z]/', $routes[1])) return false; |
|
| 305 | + $routes[1] = lcfirst(str_replace(' ', '', ucwords(str_replace('-', ' ', $routes[1])))); |
|
| 306 | 306 | } |
| 307 | 307 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 308 | 308 | $class = (class_exists($routes[0])) |
| 309 | 309 | ? $routes[0] |
| 310 | - : $this->router->collection->getRoutes()['ctrl_namespace_' . $index] . $routes[0]; |
|
| 310 | + : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0]; |
|
| 311 | 311 | if (!class_exists($class)) |
| 312 | - throw new \Exception('Class "' . $class . '." is not found'); |
|
| 312 | + throw new \Exception('Class "'.$class.'." is not found'); |
|
| 313 | 313 | if (method_exists($class, $routes[1])) { |
| 314 | 314 | return [ |
| 315 | 315 | 'dispatcher' => $this->dispatcher['isController'], |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | ]; |
| 320 | 320 | } |
| 321 | 321 | if (!strpos($callback, '{method}') !== false) |
| 322 | - throw new \Exception('The required method "' . $routes[1] . '" is not found in "' . $class . '"'); |
|
| 322 | + throw new \Exception('The required method "'.$routes[1].'" is not found in "'.$class.'"'); |
|
| 323 | 323 | } |
| 324 | 324 | return false; |
| 325 | 325 | } |
@@ -331,25 +331,25 @@ discard block |
||
| 331 | 331 | */ |
| 332 | 332 | public function isTemplate($callback) |
| 333 | 333 | { |
| 334 | - if(is_string($callback) && strpos($callback, '@') === false) { |
|
| 334 | + if (is_string($callback) && strpos($callback, '@') === false) { |
|
| 335 | 335 | $path = trim($callback, '/'); |
| 336 | 336 | $extension = substr(strrchr($path, "."), 1); |
| 337 | 337 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 338 | - $viewDir = $this->router->collection->getRoutes('view_dir_' . $index); |
|
| 338 | + $viewDir = $this->router->collection->getRoutes('view_dir_'.$index); |
|
| 339 | 339 | $target = null; |
| 340 | - if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path))) |
|
| 340 | + if (in_array('.'.$extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir.$path) || is_file($fullPath = $path))) |
|
| 341 | 341 | $target = $fullPath; |
| 342 | 342 | else { |
| 343 | 343 | foreach ($this->router->getConfig()['templateExtension'] as $ext) { |
| 344 | - if (is_file($fullPath = $viewDir . $path . $ext) || is_file($fullPath = $path . $ext)) { |
|
| 344 | + if (is_file($fullPath = $viewDir.$path.$ext) || is_file($fullPath = $path.$ext)) { |
|
| 345 | 345 | $target = $fullPath; |
| 346 | 346 | $extension = substr(strrchr($ext, "."), 1); |
| 347 | 347 | break; |
| 348 | 348 | } |
| 349 | 349 | } |
| 350 | 350 | } |
| 351 | - if(is_null($target)) |
|
| 352 | - throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"'); |
|
| 351 | + if (is_null($target)) |
|
| 352 | + throw new \Exception('Template file "'.$path.'" is not found in "'.$viewDir.'"'); |
|
| 353 | 353 | return [ |
| 354 | 354 | 'dispatcher' => $this->dispatcher['isTemplate'], |
| 355 | 355 | 'template' => $target, |
@@ -83,7 +83,7 @@ |
||
| 83 | 83 | } |
| 84 | 84 | |
| 85 | 85 | /** |
| 86 | - * @return bool |
|
| 86 | + * @return null|boolean |
|
| 87 | 87 | */ |
| 88 | 88 | public function match() |
| 89 | 89 | { |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | private $dispatcher = [ |
| 33 | 33 | 'isTemplate' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', |
| 34 | 34 | 'isController' => 'JetFire\Routing\Dispatcher\ControllerDispatcher', |
| 35 | - 'isControllerAndTemplate' => ['JetFire\Routing\Dispatcher\ControllerDispatcher','JetFire\Routing\Dispatcher\TemplateDispatcher'], |
|
| 35 | + 'isControllerAndTemplate' => ['JetFire\Routing\Dispatcher\ControllerDispatcher', 'JetFire\Routing\Dispatcher\TemplateDispatcher'], |
|
| 36 | 36 | ]; |
| 37 | 37 | |
| 38 | 38 | /** |
@@ -46,14 +46,14 @@ discard block |
||
| 46 | 46 | /** |
| 47 | 47 | * @param array $resolver |
| 48 | 48 | */ |
| 49 | - public function setResolver($resolver = []){ |
|
| 49 | + public function setResolver($resolver = []) { |
|
| 50 | 50 | $this->resolver = $resolver; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | /** |
| 54 | 54 | * @param string $resolver |
| 55 | 55 | */ |
| 56 | - public function addResolver($resolver){ |
|
| 56 | + public function addResolver($resolver) { |
|
| 57 | 57 | $this->resolver[] = $resolver; |
| 58 | 58 | } |
| 59 | 59 | |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | * @param $class |
| 79 | 79 | * @return mixed|void |
| 80 | 80 | */ |
| 81 | - public function addDispatcher($method,$class){ |
|
| 81 | + public function addDispatcher($method, $class) { |
|
| 82 | 82 | $this->dispatcher[$method] = $class; |
| 83 | 83 | } |
| 84 | 84 | |
@@ -87,10 +87,10 @@ discard block |
||
| 87 | 87 | */ |
| 88 | 88 | public function match() |
| 89 | 89 | { |
| 90 | - foreach($this->resolver as $resolver){ |
|
| 91 | - if(is_array($target = call_user_func([$this,$resolver]))) { |
|
| 90 | + foreach ($this->resolver as $resolver) { |
|
| 91 | + if (is_array($target = call_user_func([$this, $resolver]))) { |
|
| 92 | 92 | $this->setTarget($target); |
| 93 | - if($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false) |
|
| 93 | + if ($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false) |
|
| 94 | 94 | return null; |
| 95 | 95 | $this->router->response->setStatusCode(202); |
| 96 | 96 | return true; |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | /** |
| 103 | 103 | * @param array $target |
| 104 | 104 | */ |
| 105 | - public function setTarget($target = []){ |
|
| 105 | + public function setTarget($target = []) { |
|
| 106 | 106 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 107 | 107 | $this->router->route->setDetail($this->request); |
| 108 | 108 | $this->router->route->setTarget($target); |
@@ -113,10 +113,10 @@ discard block |
||
| 113 | 113 | /** |
| 114 | 114 | * @return array|bool |
| 115 | 115 | */ |
| 116 | - public function isControllerAndTemplate(){ |
|
| 117 | - if(is_array($ctrl = $this->isController())) { |
|
| 116 | + public function isControllerAndTemplate() { |
|
| 117 | + if (is_array($ctrl = $this->isController())) { |
|
| 118 | 118 | if (is_array($tpl = $this->isTemplate())) { |
| 119 | - return array_merge(array_merge($ctrl, $tpl),[ |
|
| 119 | + return array_merge(array_merge($ctrl, $tpl), [ |
|
| 120 | 120 | 'dispatcher' => $this->dispatcher['isControllerAndTemplate'] |
| 121 | 121 | ]); |
| 122 | 122 | } |
@@ -132,10 +132,10 @@ discard block |
||
| 132 | 132 | { |
| 133 | 133 | foreach ($this->router->getConfig()['templateExtension'] as $extension) { |
| 134 | 134 | for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) { |
| 135 | - $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl())); |
|
| 135 | + $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_'.$i), '', $this->router->route->getUrl())); |
|
| 136 | 136 | $end = array_pop($url); |
| 137 | 137 | $url = implode('/', array_map('ucwords', $url)).'/'.$end; |
| 138 | - if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_' . $i), '/') . $url . $extension))) { |
|
| 138 | + if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_'.$i), '/').$url.$extension))) { |
|
| 139 | 139 | $this->request['collection_index'] = $i; |
| 140 | 140 | return [ |
| 141 | 141 | 'dispatcher' => $this->dispatcher['isTemplate'], |
@@ -156,13 +156,13 @@ discard block |
||
| 156 | 156 | { |
| 157 | 157 | $routes = array_slice(explode('/', $this->router->route->getUrl()), 1); |
| 158 | 158 | $i = 0; |
| 159 | - do{ |
|
| 160 | - $route = ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes; |
|
| 159 | + do { |
|
| 160 | + $route = ('/'.$routes[0] == $this->router->collection->getRoutes('prefix_'.$i)) ? array_slice($routes, 1) : $routes; |
|
| 161 | 161 | if (isset($route[0])) { |
| 162 | - $class = (class_exists($this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller')) |
|
| 163 | - ? $this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller' |
|
| 164 | - : ucfirst($route[0]) . 'Controller'; |
|
| 165 | - $route[1] = isset($route[1])?$route[1]:'index'; |
|
| 162 | + $class = (class_exists($this->router->collection->getRoutes('ctrl_namespace_'.$i).ucfirst($route[0]).'Controller')) |
|
| 163 | + ? $this->router->collection->getRoutes('ctrl_namespace_'.$i).ucfirst($route[0]).'Controller' |
|
| 164 | + : ucfirst($route[0]).'Controller'; |
|
| 165 | + $route[1] = isset($route[1]) ? $route[1] : 'index'; |
|
| 166 | 166 | if (method_exists($class, $route[1])) { |
| 167 | 167 | $this->request['parameters'] = array_slice($route, 2); |
| 168 | 168 | $this->request['collection_index'] = $i; |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | 177 | ++$i; |
| 178 | - }while($i < $this->router->collection->countRoutes); |
|
| 178 | + }while ($i < $this->router->collection->countRoutes); |
|
| 179 | 179 | return false; |
| 180 | 180 | } |
| 181 | 181 | |
@@ -90,8 +90,9 @@ |
||
| 90 | 90 | foreach($this->resolver as $resolver){ |
| 91 | 91 | if(is_array($target = call_user_func([$this,$resolver]))) { |
| 92 | 92 | $this->setTarget($target); |
| 93 | - if($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false) |
|
| 94 | - return null; |
|
| 93 | + if($this->router->middleware->globalMiddleware() === false || $this->router->middleware->blockMiddleware() === false || $this->router->middleware->classMiddleware() === false || $this->router->middleware->routeMiddleware() === false) {
|
|
| 94 | + return null; |
|
| 95 | + } |
|
| 95 | 96 | $this->router->response->setStatusCode(202); |
| 96 | 97 | return true; |
| 97 | 98 | } |