@@ -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 | |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | - * @param $regex |
|
| 67 | + * @param string $regex |
|
| 68 | 68 | * @return bool |
| 69 | 69 | */ |
| 70 | 70 | private function routeMatch($regex) |
@@ -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,15 +92,15 @@ 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 | 105 | return $this->generateTarget(); |
| 106 | 106 | } |
@@ -114,17 +114,17 @@ 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['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'])); |
|
| 117 | + private function checkSubdomain($route) { |
|
| 118 | + $url = (isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http').'://'.($host = (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'])); |
|
| 119 | 119 | $domain = $this->router->collection->getDomain($url); |
| 120 | - if(!empty($this->request['subdomain']) && $route[0] == '/') $route = trim($this->request['subdomain'],'.').'.'.$domain.$route; |
|
| 121 | - if($route[0] == '/'){ |
|
| 120 | + if (!empty($this->request['subdomain']) && $route[0] == '/') $route = trim($this->request['subdomain'], '.').'.'.$domain.$route; |
|
| 121 | + if ($route[0] == '/') { |
|
| 122 | 122 | return ($host != $domain) ? false : true; |
| 123 | - }elseif($route[0] != '/' && $host != $domain){ |
|
| 123 | + }elseif ($route[0] != '/' && $host != $domain) { |
|
| 124 | 124 | $route = substr($route, 0, strpos($route, "/")); |
| 125 | 125 | $route = str_replace('{host}', $domain, $route); |
| 126 | 126 | $route = preg_replace_callback('#{subdomain}#', [$this, 'subdomainMatch'], $route); |
| 127 | - if (preg_match('#^' . $route . '$#', $host, $this->request['called_subdomain'])) { |
|
| 127 | + if (preg_match('#^'.$route.'$#', $host, $this->request['called_subdomain'])) { |
|
| 128 | 128 | $this->request['called_subdomain'] = array_shift($this->request['called_subdomain']); |
| 129 | 129 | return true; |
| 130 | 130 | } |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | { |
| 140 | 140 | if (is_array($this->request['params']) && isset($this->request['params']['subdomain'])) { |
| 141 | 141 | $this->request['params']['subdomain'] = str_replace('(', '(?:', $this->request['params']['subdomain']); |
| 142 | - return '(' . $this->request['params']['subdomain'] . ')'; |
|
| 142 | + return '('.$this->request['params']['subdomain'].')'; |
|
| 143 | 143 | } |
| 144 | 144 | return '([^/]+)'; |
| 145 | 145 | } |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | { |
| 153 | 153 | if (is_array($this->request['params']) && isset($this->request['params']['arguments'][$match[1]])) { |
| 154 | 154 | $this->request['params']['arguments'][$match[1]] = str_replace('(', '(?:', $this->request['params']['arguments'][$match[1]]); |
| 155 | - return '(' . $this->request['params']['arguments'][$match[1]] . ')'; |
|
| 155 | + return '('.$this->request['params']['arguments'][$match[1]].')'; |
|
| 156 | 156 | } |
| 157 | 157 | return '([^/]+)'; |
| 158 | 158 | } |
@@ -180,9 +180,9 @@ discard block |
||
| 180 | 180 | */ |
| 181 | 181 | private function generateTarget() |
| 182 | 182 | { |
| 183 | - if($this->validMethod()) |
|
| 184 | - foreach($this->resolver as $resolver) |
|
| 185 | - if (is_array($target = call_user_func_array([$this,$resolver],[$this->router->route->getCallback()]))) { |
|
| 183 | + if ($this->validMethod()) |
|
| 184 | + foreach ($this->resolver as $resolver) |
|
| 185 | + if (is_array($target = call_user_func_array([$this, $resolver], [$this->router->route->getCallback()]))) { |
|
| 186 | 186 | $this->setTarget($target); |
| 187 | 187 | $this->router->response->setStatusCode(202); |
| 188 | 188 | return true; |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | /** |
| 195 | 195 | * @param array $target |
| 196 | 196 | */ |
| 197 | - public function setTarget($target = []){ |
|
| 197 | + public function setTarget($target = []) { |
|
| 198 | 198 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 199 | 199 | $this->router->route->setDetail($this->request); |
| 200 | 200 | $this->router->route->setTarget($target); |
@@ -205,9 +205,9 @@ discard block |
||
| 205 | 205 | /** |
| 206 | 206 | * |
| 207 | 207 | */ |
| 208 | - private function setCallback(){ |
|
| 208 | + private function setCallback() { |
|
| 209 | 209 | if (isset($this->request['params'])) { |
| 210 | - if(is_callable($this->request['params'])) |
|
| 210 | + if (is_callable($this->request['params'])) |
|
| 211 | 211 | $this->router->route->setCallback($this->request['params']); |
| 212 | 212 | else { |
| 213 | 213 | (is_array($this->request['params']) && isset($this->request['params']['use'])) |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | */ |
| 225 | 225 | public function validMethod() |
| 226 | 226 | { |
| 227 | - if(is_callable($this->request['params']))return true; |
|
| 227 | + if (is_callable($this->request['params']))return true; |
|
| 228 | 228 | if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
| 229 | 229 | return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
| 230 | 230 | $method = (isset($this->request['params']['method'])) ? $this->request['params']['method'] : ['GET']; |
@@ -236,10 +236,10 @@ discard block |
||
| 236 | 236 | * @return array|bool |
| 237 | 237 | * @throws \Exception |
| 238 | 238 | */ |
| 239 | - public function isClosureAndTemplate($callback){ |
|
| 240 | - if(is_array($cls = $this->isClosure($callback))) { |
|
| 239 | + public function isClosureAndTemplate($callback) { |
|
| 240 | + if (is_array($cls = $this->isClosure($callback))) { |
|
| 241 | 241 | if (is_array($this->request['params']) && isset($this->request['params']['template']) && is_array($tpl = $this->isTemplate($this->request['params']['template']))) { |
| 242 | - return array_merge(array_merge($cls, $tpl),[ |
|
| 242 | + return array_merge(array_merge($cls, $tpl), [ |
|
| 243 | 243 | 'dispatcher' => $this->dispatcher['isClosureAndTemplate'] |
| 244 | 244 | ]); |
| 245 | 245 | } |
@@ -253,10 +253,10 @@ discard block |
||
| 253 | 253 | * @return array|bool |
| 254 | 254 | * @throws \Exception |
| 255 | 255 | */ |
| 256 | - public function isControllerAndTemplate($callback){ |
|
| 257 | - if(is_array($ctrl = $this->isController($callback))) { |
|
| 256 | + public function isControllerAndTemplate($callback) { |
|
| 257 | + if (is_array($ctrl = $this->isController($callback))) { |
|
| 258 | 258 | if (is_array($this->request['params']) && isset($this->request['params']['template']) && is_array($tpl = $this->isTemplate($this->request['params']['template']))) { |
| 259 | - return array_merge(array_merge($ctrl, $tpl),[ |
|
| 259 | + return array_merge(array_merge($ctrl, $tpl), [ |
|
| 260 | 260 | 'dispatcher' => $this->dispatcher['isControllerAndTemplate'] |
| 261 | 261 | ]); |
| 262 | 262 | } |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | ? $routes[0] |
| 297 | 297 | : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0]; |
| 298 | 298 | if (!class_exists($class)) |
| 299 | - throw new \Exception('Class "' . $class . '." is not found'); |
|
| 299 | + throw new \Exception('Class "'.$class.'." is not found'); |
|
| 300 | 300 | if (method_exists($class, $routes[1])) { |
| 301 | 301 | return [ |
| 302 | 302 | 'dispatcher' => $this->dispatcher['isController'], |
@@ -305,7 +305,7 @@ discard block |
||
| 305 | 305 | 'action' => $routes[1] |
| 306 | 306 | ]; |
| 307 | 307 | } |
| 308 | - throw new \Exception('The required method "' . $routes[1] . '" is not found in "' . $class . '"'); |
|
| 308 | + throw new \Exception('The required method "'.$routes[1].'" is not found in "'.$class.'"'); |
|
| 309 | 309 | } |
| 310 | 310 | return false; |
| 311 | 311 | } |
@@ -317,25 +317,25 @@ discard block |
||
| 317 | 317 | */ |
| 318 | 318 | public function isTemplate($callback) |
| 319 | 319 | { |
| 320 | - if(is_string($callback)) { |
|
| 320 | + if (is_string($callback)) { |
|
| 321 | 321 | $path = trim($callback, '/'); |
| 322 | 322 | $extension = substr(strrchr($path, "."), 1); |
| 323 | 323 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 324 | - $viewDir = $this->router->collection->getRoutes('view_dir_' . $index); |
|
| 324 | + $viewDir = $this->router->collection->getRoutes('view_dir_'.$index); |
|
| 325 | 325 | $target = null; |
| 326 | - if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path))) |
|
| 326 | + if (in_array('.'.$extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir.$path) || is_file($fullPath = $path))) |
|
| 327 | 327 | $target = $fullPath; |
| 328 | 328 | else { |
| 329 | 329 | foreach ($this->router->getConfig()['templateExtension'] as $ext) { |
| 330 | - if (is_file($fullPath = $viewDir . $path . $ext) || is_file($fullPath = $path . $ext)) { |
|
| 330 | + if (is_file($fullPath = $viewDir.$path.$ext) || is_file($fullPath = $path.$ext)) { |
|
| 331 | 331 | $target = $fullPath; |
| 332 | 332 | $extension = substr(strrchr($ext, "."), 1); |
| 333 | 333 | break; |
| 334 | 334 | } |
| 335 | 335 | } |
| 336 | 336 | } |
| 337 | - if(is_null($target)) |
|
| 338 | - throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"'); |
|
| 337 | + if (is_null($target)) |
|
| 338 | + throw new \Exception('Template file "'.$path.'" is not found in "'.$viewDir.'"'); |
|
| 339 | 339 | return [ |
| 340 | 340 | 'dispatcher' => $this->dispatcher['isTemplate'], |
| 341 | 341 | 'template' => $target, |
@@ -117,10 +117,12 @@ discard block |
||
| 117 | 117 | private function checkSubdomain($route){ |
| 118 | 118 | $url = (isset($_SERVER['REQUEST_SCHEME']) ? $_SERVER['REQUEST_SCHEME'] : 'http') . '://' . ($host = (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME'])); |
| 119 | 119 | $domain = $this->router->collection->getDomain($url); |
| 120 | - if(!empty($this->request['subdomain']) && $route[0] == '/') $route = trim($this->request['subdomain'],'.').'.'.$domain.$route; |
|
| 120 | + if(!empty($this->request['subdomain']) && $route[0] == '/') {
|
|
| 121 | + $route = trim($this->request['subdomain'],'.').'.'.$domain.$route; |
|
| 122 | + } |
|
| 121 | 123 | if($route[0] == '/'){ |
| 122 | 124 | return ($host != $domain) ? false : true; |
| 123 | - }elseif($route[0] != '/' && $host != $domain){ |
|
| 125 | + } elseif($route[0] != '/' && $host != $domain){ |
|
| 124 | 126 | $route = substr($route, 0, strpos($route, "/")); |
| 125 | 127 | $route = str_replace('{host}', $domain, $route); |
| 126 | 128 | $route = preg_replace_callback('#{subdomain}#', [$this, 'subdomainMatch'], $route); |
@@ -165,8 +167,9 @@ discard block |
||
| 165 | 167 | { |
| 166 | 168 | if (substr($this->request['route'], -1) == '*') { |
| 167 | 169 | $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; |
|
| 170 | + if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos) && isset($this->request['params'])) {
|
|
| 171 | + return true; |
|
| 172 | + } |
|
| 170 | 173 | } |
| 171 | 174 | if (preg_match($regex, $this->router->route->getUrl(), $this->request['parameters'])) { |
| 172 | 175 | array_shift($this->request['parameters']); |
@@ -180,10 +183,11 @@ discard block |
||
| 180 | 183 | */ |
| 181 | 184 | private function generateTarget() |
| 182 | 185 | { |
| 183 | - if($this->validMethod()) |
|
| 184 | - foreach($this->resolver as $resolver) |
|
| 186 | + if($this->validMethod()) {
|
|
| 187 | + foreach($this->resolver as $resolver) |
|
| 185 | 188 | if (is_array($target = call_user_func_array([$this,$resolver],[$this->router->route->getCallback()]))) { |
| 186 | - $this->setTarget($target); |
|
| 189 | + $this->setTarget($target); |
|
| 190 | + } |
|
| 187 | 191 | $this->router->response->setStatusCode(202); |
| 188 | 192 | return true; |
| 189 | 193 | } |
@@ -207,14 +211,18 @@ discard block |
||
| 207 | 211 | */ |
| 208 | 212 | private function setCallback(){ |
| 209 | 213 | if (isset($this->request['params'])) { |
| 210 | - if(is_callable($this->request['params'])) |
|
| 211 | - $this->router->route->setCallback($this->request['params']); |
|
| 212 | - else { |
|
| 214 | + if(is_callable($this->request['params'])) {
|
|
| 215 | + $this->router->route->setCallback($this->request['params']); |
|
| 216 | + } else { |
|
| 213 | 217 | (is_array($this->request['params']) && isset($this->request['params']['use'])) |
| 214 | 218 | ? $this->router->route->setCallback($this->request['params']['use']) |
| 215 | 219 | : $this->router->route->setCallback($this->request['params']); |
| 216 | - if (isset($this->request['params']['name'])) $this->router->route->setName($this->request['params']['name']); |
|
| 217 | - if (isset($this->request['params']['method'])) $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']]; |
|
| 220 | + if (isset($this->request['params']['name'])) {
|
|
| 221 | + $this->router->route->setName($this->request['params']['name']); |
|
| 222 | + } |
|
| 223 | + if (isset($this->request['params']['method'])) {
|
|
| 224 | + $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']]; |
|
| 225 | + } |
|
| 218 | 226 | } |
| 219 | 227 | } |
| 220 | 228 | } |
@@ -224,9 +232,12 @@ discard block |
||
| 224 | 232 | */ |
| 225 | 233 | public function validMethod() |
| 226 | 234 | { |
| 227 | - if(is_callable($this->request['params']))return true; |
|
| 228 | - if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
|
| 229 | - return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
|
| 235 | + if(is_callable($this->request['params'])) {
|
|
| 236 | + return true; |
|
| 237 | + } |
|
| 238 | + if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') {
|
|
| 239 | + return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
|
| 240 | + } |
|
| 230 | 241 | $method = (isset($this->request['params']['method'])) ? $this->request['params']['method'] : ['GET']; |
| 231 | 242 | return (in_array($this->router->route->getMethod(), $method)) ? true : false; |
| 232 | 243 | } |
@@ -290,13 +301,16 @@ discard block |
||
| 290 | 301 | { |
| 291 | 302 | if (is_string($callback) && strpos($callback, '@') !== false) { |
| 292 | 303 | $routes = explode('@', $callback); |
| 293 | - if (!isset($routes[1])) $routes[1] = 'index'; |
|
| 304 | + if (!isset($routes[1])) {
|
|
| 305 | + $routes[1] = 'index'; |
|
| 306 | + } |
|
| 294 | 307 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 295 | 308 | $class = (class_exists($routes[0])) |
| 296 | 309 | ? $routes[0] |
| 297 | 310 | : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0]; |
| 298 | - if (!class_exists($class)) |
|
| 299 | - throw new \Exception('Class "' . $class . '." is not found'); |
|
| 311 | + if (!class_exists($class)) {
|
|
| 312 | + throw new \Exception('Class "' . $class . '." is not found');
|
|
| 313 | + } |
|
| 300 | 314 | if (method_exists($class, $routes[1])) { |
| 301 | 315 | return [ |
| 302 | 316 | 'dispatcher' => $this->dispatcher['isController'], |
@@ -323,9 +337,9 @@ discard block |
||
| 323 | 337 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
| 324 | 338 | $viewDir = $this->router->collection->getRoutes('view_dir_' . $index); |
| 325 | 339 | $target = null; |
| 326 | - if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path))) |
|
| 327 | - $target = $fullPath; |
|
| 328 | - else { |
|
| 340 | + if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && (is_file($fullPath = $viewDir . $path) || is_file($fullPath = $path))) {
|
|
| 341 | + $target = $fullPath; |
|
| 342 | + } else { |
|
| 329 | 343 | foreach ($this->router->getConfig()['templateExtension'] as $ext) { |
| 330 | 344 | if (is_file($fullPath = $viewDir . $path . $ext) || is_file($fullPath = $path . $ext)) { |
| 331 | 345 | $target = $fullPath; |
@@ -334,8 +348,9 @@ discard block |
||
| 334 | 348 | } |
| 335 | 349 | } |
| 336 | 350 | } |
| 337 | - if(is_null($target)) |
|
| 338 | - 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 | + } |
|
| 339 | 354 | return [ |
| 340 | 355 | 'dispatcher' => $this->dispatcher['isTemplate'], |
| 341 | 356 | 'template' => $target, |
@@ -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 | } |
@@ -76,8 +76,8 @@ discard block |
||
| 76 | 76 | * @param $class |
| 77 | 77 | * @return mixed |
| 78 | 78 | */ |
| 79 | - private function callHandler($class){ |
|
| 80 | - $instance = call_user_func($this->router->getConfig()['di'],$class); |
|
| 79 | + private function callHandler($class) { |
|
| 80 | + $instance = call_user_func($this->router->getConfig()['di'], $class); |
|
| 81 | 81 | if (method_exists($instance, 'handle')) { |
| 82 | 82 | $reflectionMethod = new ReflectionMethod($instance, 'handle'); |
| 83 | 83 | $dependencies = []; |
@@ -93,8 +93,8 @@ discard block |
||
| 93 | 93 | * @param $class |
| 94 | 94 | * @return Route|RouteCollection|Router|mixed |
| 95 | 95 | */ |
| 96 | - private function getClass($class){ |
|
| 97 | - switch($class){ |
|
| 96 | + private function getClass($class) { |
|
| 97 | + switch ($class) { |
|
| 98 | 98 | case 'JetFire\Routing\Route': |
| 99 | 99 | return $this->router->route; |
| 100 | 100 | break; |
@@ -105,7 +105,7 @@ discard block |
||
| 105 | 105 | return $this->router->collection; |
| 106 | 106 | break; |
| 107 | 107 | default: |
| 108 | - return call_user_func_array($this->router->getConfig()['di'],[$class]); |
|
| 108 | + return call_user_func_array($this->router->getConfig()['di'], [$class]); |
|
| 109 | 109 | break; |
| 110 | 110 | } |
| 111 | 111 | } |
@@ -29,9 +29,10 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | public function globalMiddleware() |
| 31 | 31 | { |
| 32 | - if (isset($this->router->collection->middleware['global_middleware'])) |
|
| 33 | - foreach ($this->router->collection->middleware['global_middleware'] as $class) |
|
| 34 | - if (class_exists($class)) $this->callHandler($class); |
|
| 32 | + if (isset($this->router->collection->middleware['global_middleware'])) {
|
|
| 33 | + foreach ($this->router->collection->middleware['global_middleware'] as $class) |
|
| 34 | + if (class_exists($class)) $this->callHandler($class); |
|
| 35 | + } |
|
| 35 | 36 | } |
| 36 | 37 | |
| 37 | 38 | /** |
@@ -39,9 +40,10 @@ discard block |
||
| 39 | 40 | */ |
| 40 | 41 | public function blockMiddleware() |
| 41 | 42 | { |
| 42 | - if (isset($this->router->collection->middleware['block_middleware'])) |
|
| 43 | - if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getTarget('block')]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getTarget('block')])) { |
|
| 44 | - $class = $this->router->collection->middleware['block_middleware'][$this->router->route->getTarget('block')]; |
|
| 43 | + if (isset($this->router->collection->middleware['block_middleware'])) {
|
|
| 44 | + if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getTarget('block')]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getTarget('block')])) { |
|
| 45 | + $class = $this->router->collection->middleware['block_middleware'][$this->router->route->getTarget('block')];
|
|
| 46 | + } |
|
| 45 | 47 | $this->callHandler($class); |
| 46 | 48 | } |
| 47 | 49 | } |
@@ -65,9 +67,10 @@ discard block |
||
| 65 | 67 | */ |
| 66 | 68 | public function routeMiddleware() |
| 67 | 69 | { |
| 68 | - if (isset($this->router->collection->middleware['route_middleware'])) |
|
| 69 | - if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) { |
|
| 70 | - $class = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']]; |
|
| 70 | + if (isset($this->router->collection->middleware['route_middleware'])) {
|
|
| 71 | + if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) { |
|
| 72 | + $class = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']]; |
|
| 73 | + } |
|
| 71 | 74 | $this->callHandler($class); |
| 72 | 75 | } |
| 73 | 76 | } |
@@ -81,9 +84,10 @@ discard block |
||
| 81 | 84 | if (method_exists($instance, 'handle')) { |
| 82 | 85 | $reflectionMethod = new ReflectionMethod($instance, 'handle'); |
| 83 | 86 | $dependencies = []; |
| 84 | - foreach ($reflectionMethod->getParameters() as $arg) |
|
| 85 | - if (!is_null($arg->getClass())) |
|
| 86 | - $dependencies[] = $this->getClass($arg->getClass()->name); |
|
| 87 | + foreach ($reflectionMethod->getParameters() as $arg) {
|
|
| 88 | + if (!is_null($arg->getClass())) |
|
| 89 | + $dependencies[] = $this->getClass($arg->getClass()->name); |
|
| 90 | + } |
|
| 87 | 91 | $dependencies = array_merge($dependencies, [$this->router->route]); |
| 88 | 92 | $reflectionMethod->invokeArgs($instance, $dependencies); |
| 89 | 93 | } |
@@ -42,14 +42,19 @@ discard block |
||
| 42 | 42 | { |
| 43 | 43 | $reflectionMethod = new ReflectionMethod($this->route->getTarget('controller'), $this->route->getTarget('action')); |
| 44 | 44 | $dependencies = []; |
| 45 | - foreach ($reflectionMethod->getParameters() as $arg) |
|
| 46 | - if (!is_null($arg->getClass())) |
|
| 47 | - $dependencies[] = call_user_func_array($this->route->getTarget('di'),[$arg->getClass()->name]); |
|
| 45 | + foreach ($reflectionMethod->getParameters() as $arg) {
|
|
| 46 | + if (!is_null($arg->getClass())) |
|
| 47 | + $dependencies[] = call_user_func_array($this->route->getTarget('di'),[$arg->getClass()->name]);
|
|
| 48 | + } |
|
| 48 | 49 | $dependencies = array_merge($dependencies,($this->route->getParameters() == '') ? [] : $this->route->getParameters()); |
| 49 | - if ($this->response->getStatusCode() == 202) |
|
| 50 | - $this->response->setStatusCode(200); |
|
| 51 | - if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data',$content); |
|
| 52 | - elseif(!is_null($content))$this->response->setContent($content); |
|
| 50 | + if ($this->response->getStatusCode() == 202) {
|
|
| 51 | + $this->response->setStatusCode(200); |
|
| 52 | + } |
|
| 53 | + if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) {
|
|
| 54 | + $this->route->addTarget('data',$content);
|
|
| 55 | + } elseif(!is_null($content)) {
|
|
| 56 | + $this->response->setContent($content); |
|
| 57 | + } |
|
| 53 | 58 | } |
| 54 | 59 | |
| 55 | 60 | |
@@ -60,8 +65,9 @@ discard block |
||
| 60 | 65 | private function getController() |
| 61 | 66 | { |
| 62 | 67 | $reflector = new ReflectionClass($this->route->getTarget('controller')); |
| 63 | - if (!$reflector->isInstantiable()) |
|
| 64 | - throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.'); |
|
| 68 | + if (!$reflector->isInstantiable()) {
|
|
| 69 | + throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.');
|
|
| 70 | + } |
|
| 65 | 71 | $constructor = $reflector->getConstructor(); |
| 66 | 72 | if (is_null($constructor)) { |
| 67 | 73 | $class = $this->route->getTarget('controller'); |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | /** |
| 28 | 28 | * @param Route $route |
| 29 | 29 | */ |
| 30 | - public function __construct(Route $route,ResponseInterface $response) |
|
| 30 | + public function __construct(Route $route, ResponseInterface $response) |
|
| 31 | 31 | { |
| 32 | 32 | $this->route = $route; |
| 33 | 33 | $this->response = $response; |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | $dependencies = []; |
| 45 | 45 | foreach ($reflectionMethod->getParameters() as $arg) |
| 46 | 46 | if (!is_null($arg->getClass())) |
| 47 | - $dependencies[] = call_user_func_array($this->route->getTarget('di'),[$arg->getClass()->name]); |
|
| 48 | - $dependencies = array_merge($dependencies,($this->route->getParameters() == '') ? [] : $this->route->getParameters()); |
|
| 47 | + $dependencies[] = call_user_func_array($this->route->getTarget('di'), [$arg->getClass()->name]); |
|
| 48 | + $dependencies = array_merge($dependencies, ($this->route->getParameters() == '') ? [] : $this->route->getParameters()); |
|
| 49 | 49 | if ($this->response->getStatusCode() == 202) |
| 50 | 50 | $this->response->setStatusCode(200); |
| 51 | - if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data',$content); |
|
| 52 | - elseif(!is_null($content))$this->response->setContent($content); |
|
| 51 | + if (is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data', $content); |
|
| 52 | + elseif (!is_null($content))$this->response->setContent($content); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | |
@@ -61,17 +61,17 @@ discard block |
||
| 61 | 61 | { |
| 62 | 62 | $reflector = new ReflectionClass($this->route->getTarget('controller')); |
| 63 | 63 | if (!$reflector->isInstantiable()) |
| 64 | - throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.'); |
|
| 64 | + throw new \Exception('Target ['.$this->route->getTarget('controller').'] is not instantiable.'); |
|
| 65 | 65 | $constructor = $reflector->getConstructor(); |
| 66 | 66 | if (is_null($constructor)) { |
| 67 | 67 | $class = $this->route->getTarget('controller'); |
| 68 | - return call_user_func_array($this->route->getTarget('di'),[$class]); |
|
| 68 | + return call_user_func_array($this->route->getTarget('di'), [$class]); |
|
| 69 | 69 | } |
| 70 | 70 | $dependencies = $constructor->getParameters(); |
| 71 | 71 | $arguments = []; |
| 72 | 72 | foreach ($dependencies as $dep) { |
| 73 | 73 | $class = $dep->getClass()->name; |
| 74 | - array_push($arguments, call_user_func_array($this->route->getTarget('di'),[$class])); |
|
| 74 | + array_push($arguments, call_user_func_array($this->route->getTarget('di'), [$class])); |
|
| 75 | 75 | } |
| 76 | 76 | return $reflector->newInstanceArgs($arguments); |
| 77 | 77 | } |
@@ -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 | } |
@@ -80,8 +80,9 @@ discard block |
||
| 80 | 80 | * @param object|array $matcher |
| 81 | 81 | */ |
| 82 | 82 | public function setMatcher($matcher){ |
| 83 | - if(is_object($matcher)) |
|
| 84 | - $matcher = [$matcher]; |
|
| 83 | + if(is_object($matcher)) {
|
|
| 84 | + $matcher = [$matcher]; |
|
| 85 | + } |
|
| 85 | 86 | $this->matcher = $matcher; |
| 86 | 87 | } |
| 87 | 88 | |
@@ -98,7 +99,9 @@ discard block |
||
| 98 | 99 | public function run() |
| 99 | 100 | { |
| 100 | 101 | $this->setUrl(); |
| 101 | - if ($this->config['generateRoutesPath']) $this->collection->generateRoutesPath(); |
|
| 102 | + if ($this->config['generateRoutesPath']) {
|
|
| 103 | + $this->collection->generateRoutesPath(); |
|
| 104 | + } |
|
| 102 | 105 | if ($this->match()) { |
| 103 | 106 | $this->handle(); |
| 104 | 107 | $this->callTarget(); |
@@ -111,8 +114,9 @@ discard block |
||
| 111 | 114 | */ |
| 112 | 115 | public function setUrl($url = null) |
| 113 | 116 | { |
| 114 | - if (is_null($url)) |
|
| 115 | - $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1); |
|
| 117 | + if (is_null($url)) {
|
|
| 118 | + $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1);
|
|
| 119 | + } |
|
| 116 | 120 | $this->route->setUrl('/' . trim(explode('?', $url)[0], '/')); |
| 117 | 121 | } |
| 118 | 122 | |
@@ -122,8 +126,9 @@ discard block |
||
| 122 | 126 | public function match() |
| 123 | 127 | { |
| 124 | 128 | foreach ($this->matcher as $key => $matcher) { |
| 125 | - if (call_user_func([$this->matcher[$key], 'match'])) |
|
| 126 | - return true; |
|
| 129 | + if (call_user_func([$this->matcher[$key], 'match'])) {
|
|
| 130 | + return true; |
|
| 131 | + } |
|
| 127 | 132 | } |
| 128 | 133 | return false; |
| 129 | 134 | } |
@@ -170,11 +175,16 @@ discard block |
||
| 170 | 175 | if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) { |
| 171 | 176 | $this->route->setCallback($this->route->getDetail()['response_templates'][$code]); |
| 172 | 177 | $matcher = null; |
| 173 | - foreach($this->matcher as $instance) if($instance instanceof ArrayMatcher) $matcher = $instance; |
|
| 174 | - if(is_null($matcher))$matcher = new ArrayMatcher($this); |
|
| 175 | - foreach (call_user_func([$matcher, 'getResolver']) as $match) |
|
| 176 | - if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))){ |
|
| 177 | - call_user_func_array([$matcher, 'setTarget'],[$target]); |
|
| 178 | + foreach($this->matcher as $instance) {
|
|
| 179 | + if($instance instanceof ArrayMatcher) $matcher = $instance; |
|
| 180 | + } |
|
| 181 | + if(is_null($matcher)) {
|
|
| 182 | + $matcher = new ArrayMatcher($this); |
|
| 183 | + } |
|
| 184 | + foreach (call_user_func([$matcher, 'getResolver']) as $match) {
|
|
| 185 | + if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))){ |
|
| 186 | + call_user_func_array([$matcher, 'setTarget'],[$target]); |
|
| 187 | + } |
|
| 178 | 188 | $this->callTarget(); |
| 179 | 189 | break; |
| 180 | 190 | } |
@@ -49,13 +49,13 @@ discard block |
||
| 49 | 49 | * @param ResponseInterface $response |
| 50 | 50 | * @param Route $route |
| 51 | 51 | */ |
| 52 | - public function __construct(RouteCollection $collection,ResponseInterface $response = null,Route $route = null) |
|
| 52 | + public function __construct(RouteCollection $collection, ResponseInterface $response = null, Route $route = null) |
|
| 53 | 53 | { |
| 54 | 54 | $this->collection = $collection; |
| 55 | - $this->response = is_null($response)? new Response() : $response; |
|
| 55 | + $this->response = is_null($response) ? new Response() : $response; |
|
| 56 | 56 | $this->response->setStatusCode(404); |
| 57 | - $this->route = is_null($route)? new Route() : $route; |
|
| 58 | - $this->config['di'] = function($class){ |
|
| 57 | + $this->route = is_null($route) ? new Route() : $route; |
|
| 58 | + $this->config['di'] = function($class) { |
|
| 59 | 59 | return new $class; |
| 60 | 60 | }; |
| 61 | 61 | } |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | /** |
| 80 | 80 | * @param object|array $matcher |
| 81 | 81 | */ |
| 82 | - public function setMatcher($matcher){ |
|
| 83 | - if(is_object($matcher)) |
|
| 82 | + public function setMatcher($matcher) { |
|
| 83 | + if (is_object($matcher)) |
|
| 84 | 84 | $matcher = [$matcher]; |
| 85 | 85 | $this->matcher = $matcher; |
| 86 | 86 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | /** |
| 89 | 89 | * @param string $matcher |
| 90 | 90 | */ |
| 91 | - public function addMatcher($matcher){ |
|
| 91 | + public function addMatcher($matcher) { |
|
| 92 | 92 | $this->matcher[] = $matcher; |
| 93 | 93 | } |
| 94 | 94 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | { |
| 114 | 114 | if (is_null($url)) |
| 115 | 115 | $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1); |
| 116 | - $this->route->setUrl('/' . trim(explode('?', $url)[0], '/')); |
|
| 116 | + $this->route->setUrl('/'.trim(explode('?', $url)[0], '/')); |
|
| 117 | 117 | } |
| 118 | 118 | |
| 119 | 119 | /** |
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | */ |
| 134 | 134 | public function callTarget() |
| 135 | 135 | { |
| 136 | - $target = is_array($this->route->getTarget('dispatcher'))?$this->route->getTarget('dispatcher'):[$this->route->getTarget('dispatcher')]; |
|
| 137 | - if(!empty($target)) { |
|
| 138 | - foreach($target as $call) { |
|
| 136 | + $target = is_array($this->route->getTarget('dispatcher')) ? $this->route->getTarget('dispatcher') : [$this->route->getTarget('dispatcher')]; |
|
| 137 | + if (!empty($target)) { |
|
| 138 | + foreach ($target as $call) { |
|
| 139 | 139 | $this->dispatcher = new $call($this->route, $this->response); |
| 140 | 140 | call_user_func([$this->dispatcher, 'call']); |
| 141 | 141 | } |
@@ -170,11 +170,11 @@ discard block |
||
| 170 | 170 | if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) { |
| 171 | 171 | $this->route->setCallback($this->route->getDetail()['response_templates'][$code]); |
| 172 | 172 | $matcher = null; |
| 173 | - foreach($this->matcher as $instance) if($instance instanceof ArrayMatcher) $matcher = $instance; |
|
| 174 | - if(is_null($matcher))$matcher = new ArrayMatcher($this); |
|
| 173 | + foreach ($this->matcher as $instance) if ($instance instanceof ArrayMatcher) $matcher = $instance; |
|
| 174 | + if (is_null($matcher))$matcher = new ArrayMatcher($this); |
|
| 175 | 175 | foreach (call_user_func([$matcher, 'getResolver']) as $match) |
| 176 | - if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))){ |
|
| 177 | - call_user_func_array([$matcher, 'setTarget'],[$target]); |
|
| 176 | + if (is_array($target = call_user_func_array([$matcher, $match], [$this->route->getCallback()]))) { |
|
| 177 | + call_user_func_array([$matcher, 'setTarget'], [$target]); |
|
| 178 | 178 | $this->callTarget(); |
| 179 | 179 | break; |
| 180 | 180 | } |