@@ -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 | /** |
@@ -144,8 +144,8 @@ discard block |
||
144 | 144 | public function __toString() |
145 | 145 | { |
146 | 146 | return |
147 | - sprintf('HTTP/%s %s %s', $this->version, $this->statusCode, $this->statusText)."\r\n". |
|
148 | - $this->headers."\r\n". |
|
147 | + sprintf('HTTP/%s %s %s', $this->version, $this->statusCode, $this->statusText) . "\r\n" . |
|
148 | + $this->headers . "\r\n" . |
|
149 | 149 | $this->getContent(); |
150 | 150 | } |
151 | 151 | |
@@ -166,8 +166,8 @@ discard block |
||
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 | http_response_code($this->getStatusCode()); |
172 | 172 | return $this; |
173 | 173 | } |
@@ -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 | } |
@@ -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; |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | /** |
59 | 59 | * @param $extension |
60 | 60 | */ |
61 | - public function setContentType($extension){ |
|
61 | + public function setContentType($extension) { |
|
62 | 62 | $this->response->setStatusCode(200); |
63 | 63 | isset($this->types[$extension]) |
64 | 64 | ? $this->response->setHeaders(['Content-Type' => $this->types[$extension]]) |
@@ -47,11 +47,12 @@ |
||
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 | 57 | require($this->route->getTarget('template')); |
57 | 58 | $this->response->setContent(ob_get_clean()); |
@@ -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 |
@@ -25,7 +25,7 @@ |
||
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; |
@@ -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 |
@@ -46,13 +46,13 @@ discard block |
||
46 | 46 | * @param ResponseInterface $response |
47 | 47 | * @param Route $route |
48 | 48 | */ |
49 | - public function __construct(RouteCollection $collection,ResponseInterface $response = null,Route $route = null) |
|
49 | + public function __construct(RouteCollection $collection, ResponseInterface $response = null, Route $route = null) |
|
50 | 50 | { |
51 | 51 | $this->collection = $collection; |
52 | - $this->response = is_null($response)? new Response() : $response; |
|
52 | + $this->response = is_null($response) ? new Response() : $response; |
|
53 | 53 | $this->response->setStatusCode(404); |
54 | - $this->route = is_null($route)? new Route() : $route; |
|
55 | - $this->config['di'] = function($class){ |
|
54 | + $this->route = is_null($route) ? new Route() : $route; |
|
55 | + $this->config['di'] = function($class) { |
|
56 | 56 | return new $class; |
57 | 57 | }; |
58 | 58 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | /** |
77 | 77 | * @param string $matcher |
78 | 78 | */ |
79 | - public function addMatcher($matcher){ |
|
79 | + public function addMatcher($matcher) { |
|
80 | 80 | $this->config['matcher'][] = $matcher; |
81 | 81 | } |
82 | 82 | |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | public function callTarget() |
124 | 124 | { |
125 | 125 | $target = $this->route->getTarget('dispatcher'); |
126 | - if(!empty($target)) { |
|
126 | + if (!empty($target)) { |
|
127 | 127 | $this->dispatcher = new $target($this->route, $this->response); |
128 | 128 | return call_user_func([$this->dispatcher, 'call']); |
129 | 129 | } |
@@ -157,12 +157,12 @@ discard block |
||
157 | 157 | { |
158 | 158 | if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) { |
159 | 159 | $this->route->setCallback($this->route->getDetail()['response_templates'][$code]); |
160 | - if(!isset($this->config['matcherInstance'])) |
|
160 | + if (!isset($this->config['matcherInstance'])) |
|
161 | 161 | foreach ($this->config['matcher'] as $matcher) |
162 | 162 | $this->config['matcherInstance'][$matcher] = new $matcher($this); |
163 | - foreach($this->config['matcherInstance'] as $instance) { |
|
163 | + foreach ($this->config['matcherInstance'] as $instance) { |
|
164 | 164 | foreach (call_user_func([$instance, 'getMatcher']) as $match) |
165 | - if (call_user_func([$instance, $match])){ $this->callTarget(); break; } |
|
165 | + if (call_user_func([$instance, $match])) { $this->callTarget(); break; } |
|
166 | 166 | } |
167 | 167 | $this->response->setStatusCode($code); |
168 | 168 | } |
@@ -86,7 +86,9 @@ discard block |
||
86 | 86 | public function run() |
87 | 87 | { |
88 | 88 | $this->setUrl(); |
89 | - if ($this->config['generateRoutesPath']) $this->collection->generateRoutesPath(); |
|
89 | + if ($this->config['generateRoutesPath']) { |
|
90 | + $this->collection->generateRoutesPath(); |
|
91 | + } |
|
90 | 92 | if ($this->match()) { |
91 | 93 | $this->handle(); |
92 | 94 | $this->callTarget(); |
@@ -99,8 +101,9 @@ discard block |
||
99 | 101 | */ |
100 | 102 | public function setUrl($url = null) |
101 | 103 | { |
102 | - if (is_null($url)) |
|
103 | - $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1); |
|
104 | + if (is_null($url)) { |
|
105 | + $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1); |
|
106 | + } |
|
104 | 107 | $this->route->setUrl('/' . trim(explode('?', $url)[0], '/')); |
105 | 108 | } |
106 | 109 | |
@@ -111,8 +114,9 @@ discard block |
||
111 | 114 | { |
112 | 115 | foreach ($this->config['matcher'] as $matcher) { |
113 | 116 | $this->config['matcherInstance'][$matcher] = new $matcher($this); |
114 | - if (call_user_func([$this->config['matcherInstance'][$matcher], 'match'])) |
|
115 | - return true; |
|
117 | + if (call_user_func([$this->config['matcherInstance'][$matcher], 'match'])) { |
|
118 | + return true; |
|
119 | + } |
|
116 | 120 | } |
117 | 121 | return false; |
118 | 122 | } |
@@ -157,12 +161,15 @@ discard block |
||
157 | 161 | { |
158 | 162 | if (isset($this->route->getDetail()['response_templates']) && isset($this->route->getDetail()['response_templates'][$code = $this->response->getStatusCode()])) { |
159 | 163 | $this->route->setCallback($this->route->getDetail()['response_templates'][$code]); |
160 | - if(!isset($this->config['matcherInstance'])) |
|
161 | - foreach ($this->config['matcher'] as $matcher) |
|
162 | - $this->config['matcherInstance'][$matcher] = new $matcher($this); |
|
164 | + if(!isset($this->config['matcherInstance'])) { |
|
165 | + foreach ($this->config['matcher'] as $matcher) |
|
166 | + $this->config['matcherInstance'][$matcher] = new $matcher($this); |
|
167 | + } |
|
163 | 168 | foreach($this->config['matcherInstance'] as $instance) { |
164 | - foreach (call_user_func([$instance, 'getMatcher']) as $match) |
|
165 | - if (call_user_func([$instance, $match])){ $this->callTarget(); break; } |
|
169 | + foreach (call_user_func([$instance, 'getMatcher']) as $match) { |
|
170 | + if (call_user_func([$instance, $match])){ $this->callTarget(); |
|
171 | + } |
|
172 | + break; } |
|
166 | 173 | } |
167 | 174 | $this->response->setStatusCode($code); |
168 | 175 | } |
@@ -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) |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | /** |
25 | 25 | * @var array |
26 | 26 | */ |
27 | - private $matcher = ['matchClosure','matchController','matchTemplate']; |
|
27 | + private $matcher = ['matchClosure', 'matchController', 'matchTemplate']; |
|
28 | 28 | |
29 | 29 | /** |
30 | 30 | * @var array |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | /** |
47 | 47 | * @param string $matcher |
48 | 48 | */ |
49 | - public function addMatcher($matcher){ |
|
49 | + public function addMatcher($matcher) { |
|
50 | 50 | $this->matcher[] = $matcher; |
51 | 51 | } |
52 | 52 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | /** |
62 | 62 | * @param array $dispatcher |
63 | 63 | */ |
64 | - public function setDispatcher($dispatcher = []){ |
|
64 | + public function setDispatcher($dispatcher = []) { |
|
65 | 65 | $this->dispatcher = $dispatcher; |
66 | 66 | } |
67 | 67 | |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * @return mixed|void |
72 | 72 | * @internal param array $dispatcher |
73 | 73 | */ |
74 | - public function addDispatcher($method,$class){ |
|
74 | + public function addDispatcher($method, $class) { |
|
75 | 75 | $this->dispatcher[$method] = $class; |
76 | 76 | } |
77 | 77 | |
@@ -133,13 +133,13 @@ discard block |
||
133 | 133 | */ |
134 | 134 | private function generateTarget() |
135 | 135 | { |
136 | - if($this->validMethod()) { |
|
137 | - foreach($this->matcher as $match) if(call_user_func([$this,$match])) break; |
|
136 | + if ($this->validMethod()) { |
|
137 | + foreach ($this->matcher as $match) if (call_user_func([$this, $match])) break; |
|
138 | 138 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
139 | - $this->router->route->addTarget('block',$this->router->collection->getRoutes('block_'.$index)); |
|
140 | - $this->router->route->addTarget('view_dir',$this->router->collection->getRoutes('view_dir_'.$index)); |
|
139 | + $this->router->route->addTarget('block', $this->router->collection->getRoutes('block_' . $index)); |
|
140 | + $this->router->route->addTarget('view_dir', $this->router->collection->getRoutes('view_dir_' . $index)); |
|
141 | 141 | $this->router->response->setStatusCode(202); |
142 | - }else |
|
142 | + } else |
|
143 | 143 | $this->router->response->setStatusCode(405); |
144 | 144 | return $this->router->route->hasTarget(); |
145 | 145 | } |
@@ -147,9 +147,9 @@ discard block |
||
147 | 147 | /** |
148 | 148 | * |
149 | 149 | */ |
150 | - private function setRoute(){ |
|
150 | + private function setRoute() { |
|
151 | 151 | if (isset($this->request['params'])) { |
152 | - if(is_callable($this->request['params'])) |
|
152 | + if (is_callable($this->request['params'])) |
|
153 | 153 | $this->router->route->setCallback($this->request['params']); |
154 | 154 | else { |
155 | 155 | (is_array($this->request['params']) && isset($this->request['params']['use'])) |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | */ |
168 | 168 | public function validMethod() |
169 | 169 | { |
170 | - if(is_callable($this->request['params']))return true; |
|
170 | + if (is_callable($this->request['params']))return true; |
|
171 | 171 | if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
172 | 172 | return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
173 | 173 | $method = (isset($this->router->route->getDetail()['params']['method'])) ? $this->router->route->getDetail()['params']['method'] : ['GET']; |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
203 | 203 | $class = (class_exists($routes[0])) |
204 | 204 | ? $routes[0] |
205 | - : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0]; |
|
205 | + : $this->router->collection->getRoutes()['ctrl_namespace_' . $index] . $routes[0]; |
|
206 | 206 | if (!class_exists($class)) |
207 | 207 | throw new \Exception('Class "' . $class . '." is not found'); |
208 | 208 | if (method_exists($class, $routes[1])) { |
@@ -225,7 +225,7 @@ discard block |
||
225 | 225 | */ |
226 | 226 | public function matchTemplate() |
227 | 227 | { |
228 | - if(is_string($this->router->route->getCallback())) { |
|
228 | + if (is_string($this->router->route->getCallback())) { |
|
229 | 229 | $path = trim($this->router->route->getCallback(), '/'); |
230 | 230 | $extension = substr(strrchr($path, "."), 1); |
231 | 231 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | } |
243 | 243 | } |
244 | 244 | } |
245 | - if(is_null($target)) |
|
245 | + if (is_null($target)) |
|
246 | 246 | throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"'); |
247 | 247 | $this->router->route->setTarget([ |
248 | 248 | 'dispatcher' => $this->dispatcher['matchTemplate'], |
@@ -118,8 +118,9 @@ discard block |
||
118 | 118 | { |
119 | 119 | if (substr($this->request['route'], -1) == '*') { |
120 | 120 | $pos = strpos($this->request['route'], '*'); |
121 | - if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos)) |
|
122 | - if (isset($this->request)) return true; |
|
121 | + if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos)) { |
|
122 | + if (isset($this->request)) return true; |
|
123 | + } |
|
123 | 124 | } |
124 | 125 | if (preg_match($regex, $this->router->route->getUrl(), $this->request['parameters'])) { |
125 | 126 | array_shift($this->request['parameters']); |
@@ -134,13 +135,16 @@ discard block |
||
134 | 135 | private function generateTarget() |
135 | 136 | { |
136 | 137 | if($this->validMethod()) { |
137 | - foreach($this->matcher as $match) if(call_user_func([$this,$match])) break; |
|
138 | + foreach($this->matcher as $match) { |
|
139 | + if(call_user_func([$this,$match])) break; |
|
140 | + } |
|
138 | 141 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
139 | 142 | $this->router->route->addTarget('block',$this->router->collection->getRoutes('block_'.$index)); |
140 | 143 | $this->router->route->addTarget('view_dir',$this->router->collection->getRoutes('view_dir_'.$index)); |
141 | 144 | $this->router->response->setStatusCode(202); |
142 | - }else |
|
143 | - $this->router->response->setStatusCode(405); |
|
145 | + } else { |
|
146 | + $this->router->response->setStatusCode(405); |
|
147 | + } |
|
144 | 148 | return $this->router->route->hasTarget(); |
145 | 149 | } |
146 | 150 | |
@@ -149,14 +153,18 @@ discard block |
||
149 | 153 | */ |
150 | 154 | private function setRoute(){ |
151 | 155 | if (isset($this->request['params'])) { |
152 | - if(is_callable($this->request['params'])) |
|
153 | - $this->router->route->setCallback($this->request['params']); |
|
154 | - else { |
|
156 | + if(is_callable($this->request['params'])) { |
|
157 | + $this->router->route->setCallback($this->request['params']); |
|
158 | + } else { |
|
155 | 159 | (is_array($this->request['params']) && isset($this->request['params']['use'])) |
156 | 160 | ? $this->router->route->setCallback($this->request['params']['use']) |
157 | 161 | : $this->router->route->setCallback($this->request['params']); |
158 | - if (isset($this->request['params']['name'])) $this->router->route->setName($this->request['params']['name']); |
|
159 | - if (isset($this->request['params']['method'])) $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']]; |
|
162 | + if (isset($this->request['params']['name'])) { |
|
163 | + $this->router->route->setName($this->request['params']['name']); |
|
164 | + } |
|
165 | + if (isset($this->request['params']['method'])) { |
|
166 | + $this->request['params']['method'] = is_array($this->request['params']['method']) ? $this->request['params']['method'] : [$this->request['params']['method']]; |
|
167 | + } |
|
160 | 168 | } |
161 | 169 | } |
162 | 170 | $this->router->route->setDetail($this->request); |
@@ -167,9 +175,12 @@ discard block |
||
167 | 175 | */ |
168 | 176 | public function validMethod() |
169 | 177 | { |
170 | - if(is_callable($this->request['params']))return true; |
|
171 | - if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
|
172 | - return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
|
178 | + if(is_callable($this->request['params'])) { |
|
179 | + return true; |
|
180 | + } |
|
181 | + if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { |
|
182 | + return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false; |
|
183 | + } |
|
173 | 184 | $method = (isset($this->router->route->getDetail()['params']['method'])) ? $this->router->route->getDetail()['params']['method'] : ['GET']; |
174 | 185 | return (in_array($this->router->route->getMethod(), $method)) ? true : false; |
175 | 186 | } |
@@ -198,13 +209,16 @@ discard block |
||
198 | 209 | { |
199 | 210 | if (strpos($this->router->route->getCallback(), '@') !== false) { |
200 | 211 | $routes = explode('@', $this->router->route->getCallback()); |
201 | - if (!isset($routes[1])) $routes[1] = 'index'; |
|
212 | + if (!isset($routes[1])) { |
|
213 | + $routes[1] = 'index'; |
|
214 | + } |
|
202 | 215 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
203 | 216 | $class = (class_exists($routes[0])) |
204 | 217 | ? $routes[0] |
205 | 218 | : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0]; |
206 | - if (!class_exists($class)) |
|
207 | - throw new \Exception('Class "' . $class . '." is not found'); |
|
219 | + if (!class_exists($class)) { |
|
220 | + throw new \Exception('Class "' . $class . '." is not found'); |
|
221 | + } |
|
208 | 222 | if (method_exists($class, $routes[1])) { |
209 | 223 | $this->router->route->setTarget([ |
210 | 224 | 'dispatcher' => $this->dispatcher['matchController'], |
@@ -231,9 +245,9 @@ discard block |
||
231 | 245 | $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0; |
232 | 246 | $viewDir = $this->router->collection->getRoutes('view_dir_' . $index); |
233 | 247 | $target = null; |
234 | - if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && is_file($viewDir . $path)) |
|
235 | - $target = $viewDir . $path; |
|
236 | - else { |
|
248 | + if (in_array('.' . $extension, $this->router->getConfig()['templateExtension']) && is_file($viewDir . $path)) { |
|
249 | + $target = $viewDir . $path; |
|
250 | + } else { |
|
237 | 251 | foreach ($this->router->getConfig()['templateExtension'] as $ext) { |
238 | 252 | if (is_file($viewDir . $path . $ext)) { |
239 | 253 | $target = $viewDir . $path . $ext; |
@@ -242,8 +256,9 @@ discard block |
||
242 | 256 | } |
243 | 257 | } |
244 | 258 | } |
245 | - if(is_null($target)) |
|
246 | - throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"'); |
|
259 | + if(is_null($target)) { |
|
260 | + throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"'); |
|
261 | + } |
|
247 | 262 | $this->router->route->setTarget([ |
248 | 263 | 'dispatcher' => $this->dispatcher['matchTemplate'], |
249 | 264 | 'template' => $target, |
@@ -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->routes['path_' . $this->countRoutes] = (isset($options['path']) && !empty($options['path'])) ? rtrim($options['path'], '/') . '/' : ''; |
@@ -61,8 +69,9 @@ discard block |
||
61 | 69 | */ |
62 | 70 | public function getRoutes($key = null) |
63 | 71 | { |
64 | - if(!is_null($key)) |
|
65 | - return isset($this->routes[$key])?$this->routes[$key]:''; |
|
72 | + if(!is_null($key)) { |
|
73 | + return isset($this->routes[$key])?$this->routes[$key]:''; |
|
74 | + } |
|
66 | 75 | return $this->routes; |
67 | 76 | } |
68 | 77 | |
@@ -73,12 +82,18 @@ discard block |
||
73 | 82 | { |
74 | 83 | if (is_array($args)) { |
75 | 84 | $nbrArgs = count($args); |
76 | - for ($i = 0; $i < $nbrArgs; ++$i) |
|
77 | - $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/'); |
|
78 | - } elseif (is_string($args)) |
|
79 | - for ($i = 0; $i < $this->countRoutes; ++$i) |
|
80 | - $this->routes['prefix_' . $i] = '/' . trim($args, '/'); |
|
81 | - if($this->countRoutes == 0)$this->countRoutes++; |
|
85 | + for ($i = 0; $i < $nbrArgs; ++$i) { |
|
86 | + $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/'); |
|
87 | + } |
|
88 | + } elseif (is_string($args)) { |
|
89 | + for ($i = 0; |
|
90 | + } |
|
91 | + $i < $this->countRoutes; ++$i) { |
|
92 | + $this->routes['prefix_' . $i] = '/' . trim($args, '/'); |
|
93 | + } |
|
94 | + if($this->countRoutes == 0) { |
|
95 | + $this->countRoutes++; |
|
96 | + } |
|
82 | 97 | } |
83 | 98 | |
84 | 99 | /** |
@@ -92,10 +107,14 @@ discard block |
||
92 | 107 | $this->routes['path_' . $i] = (isset($args[$i]['path']) && !empty($args[$i]['path'])) ? rtrim($args[$i]['path'], '/') . '/' : ''; |
93 | 108 | $this->routes['namespace_' . $i] = (isset($args[$i]['namespace']) && !empty($args[$i]['namespace'])) ? trim($args[$i]['namespace'], '\\') . '\\' : ''; |
94 | 109 | $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/'.trim($args[$i]['prefix'], '/') : ''; |
95 | - if(!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = []; |
|
110 | + if(!isset($this->routes['routes_' . $i])) { |
|
111 | + $this->routes['routes_' . $i] = []; |
|
112 | + } |
|
96 | 113 | } |
97 | 114 | } |
98 | - if($this->countRoutes == 0)$this->countRoutes++; |
|
115 | + if($this->countRoutes == 0) { |
|
116 | + $this->countRoutes++; |
|
117 | + } |
|
99 | 118 | } |
100 | 119 | |
101 | 120 | /** |
@@ -104,12 +123,16 @@ discard block |
||
104 | 123 | */ |
105 | 124 | public function setMiddleware($middleware) |
106 | 125 | { |
107 | - if (is_string($middleware)) $middleware = rtrim($middleware, '/'); |
|
108 | - if(is_array($middleware)) |
|
109 | - $this->middleware = $middleware; |
|
110 | - elseif (is_file($middleware) && is_array($mid = include $middleware)) |
|
111 | - $this->middleware = $mid; |
|
112 | - else throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file'); |
|
126 | + if (is_string($middleware)) { |
|
127 | + $middleware = rtrim($middleware, '/'); |
|
128 | + } |
|
129 | + if(is_array($middleware)) { |
|
130 | + $this->middleware = $middleware; |
|
131 | + } elseif (is_file($middleware) && is_array($mid = include $middleware)) { |
|
132 | + $this->middleware = $mid; |
|
133 | + } else { |
|
134 | + throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file'); |
|
135 | + } |
|
113 | 136 | } |
114 | 137 | |
115 | 138 | /** |
@@ -121,14 +144,15 @@ discard block |
||
121 | 144 | $count = 0; |
122 | 145 | for ($i = 0; $i < $this->countRoutes; ++$i) { |
123 | 146 | $prefix = (isset($this->routes['prefix_' . $i])) ? $this->routes['prefix_' . $i] : ''; |
124 | - if (isset($this->routes['routes_' . $i])) |
|
125 | - foreach ($this->routes['routes_' . $i] as $route => $dependencies) { |
|
147 | + if (isset($this->routes['routes_' . $i])) { |
|
148 | + foreach ($this->routes['routes_' . $i] as $route => $dependencies) { |
|
126 | 149 | if (is_array($dependencies) && isset($dependencies['use'])) |
127 | - $use = (is_callable($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); |
|
128 | - elseif(!is_array($dependencies)) |
|
129 | - $use = (is_callable($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); |
|
130 | - else |
|
131 | - $use = $route; |
|
150 | + $use = (is_callable($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); |
|
151 | + } elseif(!is_array($dependencies)) { |
|
152 | + $use = (is_callable($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); |
|
153 | + } else { |
|
154 | + $use = $route; |
|
155 | + } |
|
132 | 156 | (!is_callable($dependencies) && isset($dependencies['name'])) ? $this->routesByName[$use . '#' . $dependencies['name']] = $root . $prefix . $route : $this->routesByName[$use] = $root . $prefix . $route; |
133 | 157 | $count++; |
134 | 158 | } |
@@ -145,9 +169,14 @@ discard block |
||
145 | 169 | { |
146 | 170 | foreach ($this->routesByName as $key => $route) { |
147 | 171 | $param = explode('#', $key); |
148 | - foreach ($params as $key2 => $value) $route = str_replace(':' . $key2, $value, $route); |
|
149 | - if ($param[0] == trim($name, '/')) return $route; |
|
150 | - else if (isset($param[1]) && $param[1] == $name) return $route; |
|
172 | + foreach ($params as $key2 => $value) { |
|
173 | + $route = str_replace(':' . $key2, $value, $route); |
|
174 | + } |
|
175 | + if ($param[0] == trim($name, '/')) { |
|
176 | + return $route; |
|
177 | + } else if (isset($param[1]) && $param[1] == $name) { |
|
178 | + return $route; |
|
179 | + } |
|
151 | 180 | } |
152 | 181 | return null; |
153 | 182 | } |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | */ |
43 | 43 | public function addRoutes($routes = null, $options = []) |
44 | 44 | { |
45 | - if(!is_null($routes) && !is_array($routes)) { |
|
45 | + if (!is_null($routes) && !is_array($routes)) { |
|
46 | 46 | if (strpos($routes, '.php') === false) $routes = trim($routes, '/') . '/'; |
47 | 47 | if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) $routes = $routesFile; |
48 | 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'); |
|
49 | + else throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "' . $routes . '" given'); |
|
50 | 50 | } |
51 | 51 | $this->routes['routes_' . $this->countRoutes] = is_array($routes) ? $routes : []; |
52 | 52 | $this->routes['path_' . $this->countRoutes] = (isset($options['path']) && !empty($options['path'])) ? rtrim($options['path'], '/') . '/' : ''; |
@@ -61,8 +61,8 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public function getRoutes($key = null) |
63 | 63 | { |
64 | - if(!is_null($key)) |
|
65 | - return isset($this->routes[$key])?$this->routes[$key]:''; |
|
64 | + if (!is_null($key)) |
|
65 | + return isset($this->routes[$key]) ? $this->routes[$key] : ''; |
|
66 | 66 | return $this->routes; |
67 | 67 | } |
68 | 68 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | } elseif (is_string($args)) |
79 | 79 | for ($i = 0; $i < $this->countRoutes; ++$i) |
80 | 80 | $this->routes['prefix_' . $i] = '/' . trim($args, '/'); |
81 | - if($this->countRoutes == 0)$this->countRoutes++; |
|
81 | + if ($this->countRoutes == 0)$this->countRoutes++; |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | /** |
@@ -88,14 +88,14 @@ discard block |
||
88 | 88 | { |
89 | 89 | $nbrArgs = count($args); |
90 | 90 | for ($i = 0; $i < $nbrArgs; ++$i) { |
91 | - if(is_array($args[$i])){ |
|
91 | + if (is_array($args[$i])) { |
|
92 | 92 | $this->routes['path_' . $i] = (isset($args[$i]['path']) && !empty($args[$i]['path'])) ? rtrim($args[$i]['path'], '/') . '/' : ''; |
93 | 93 | $this->routes['namespace_' . $i] = (isset($args[$i]['namespace']) && !empty($args[$i]['namespace'])) ? trim($args[$i]['namespace'], '\\') . '\\' : ''; |
94 | - $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/'.trim($args[$i]['prefix'], '/') : ''; |
|
95 | - if(!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = []; |
|
94 | + $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/' . trim($args[$i]['prefix'], '/') : ''; |
|
95 | + if (!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = []; |
|
96 | 96 | } |
97 | 97 | } |
98 | - if($this->countRoutes == 0)$this->countRoutes++; |
|
98 | + if ($this->countRoutes == 0)$this->countRoutes++; |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | public function setMiddleware($middleware) |
106 | 106 | { |
107 | 107 | if (is_string($middleware)) $middleware = rtrim($middleware, '/'); |
108 | - if(is_array($middleware)) |
|
108 | + if (is_array($middleware)) |
|
109 | 109 | $this->middleware = $middleware; |
110 | 110 | elseif (is_file($middleware) && is_array($mid = include $middleware)) |
111 | 111 | $this->middleware = $mid; |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | */ |
118 | 118 | public function generateRoutesPath() |
119 | 119 | { |
120 | - $root = 'http://' . (isset($_SERVER['HTTP_HOST'])?$_SERVER['HTTP_HOST']:$_SERVER['SERVER_NAME']) . str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']); |
|
120 | + $root = 'http://' . (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME']) . str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']); |
|
121 | 121 | $count = 0; |
122 | 122 | for ($i = 0; $i < $this->countRoutes; ++$i) { |
123 | 123 | $prefix = (isset($this->routes['prefix_' . $i])) ? $this->routes['prefix_' . $i] : ''; |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | foreach ($this->routes['routes_' . $i] as $route => $dependencies) { |
126 | 126 | if (is_array($dependencies) && isset($dependencies['use'])) |
127 | 127 | $use = (is_callable($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); |
128 | - elseif(!is_array($dependencies)) |
|
128 | + elseif (!is_array($dependencies)) |
|
129 | 129 | $use = (is_callable($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); |
130 | 130 | else |
131 | 131 | $use = $route; |
@@ -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,8 +44,8 @@ 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 | 51 | return $this->response->setContent($reflectionMethod->invokeArgs($this->getController(), $dependencies)); |
@@ -64,13 +64,13 @@ discard block |
||
64 | 64 | $constructor = $reflector->getConstructor(); |
65 | 65 | if (is_null($constructor)) { |
66 | 66 | $class = $this->route->getTarget('controller'); |
67 | - return call_user_func_array($this->route->getTarget('di'),[$class]); |
|
67 | + return call_user_func_array($this->route->getTarget('di'), [$class]); |
|
68 | 68 | } |
69 | 69 | $dependencies = $constructor->getParameters(); |
70 | 70 | $arguments = []; |
71 | 71 | foreach ($dependencies as $dep) { |
72 | 72 | $class = $dep->getClass()->name; |
73 | - array_push($arguments, call_user_func_array($this->route->getTarget('di'),[$class])); |
|
73 | + array_push($arguments, call_user_func_array($this->route->getTarget('di'), [$class])); |
|
74 | 74 | } |
75 | 75 | return $reflector->newInstanceArgs($arguments); |
76 | 76 | } |
@@ -42,12 +42,14 @@ 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); |
|
50 | + if ($this->response->getStatusCode() == 202) { |
|
51 | + $this->response->setStatusCode(200); |
|
52 | + } |
|
51 | 53 | return $this->response->setContent($reflectionMethod->invokeArgs($this->getController(), $dependencies)); |
52 | 54 | } |
53 | 55 | |
@@ -59,8 +61,9 @@ discard block |
||
59 | 61 | private function getController() |
60 | 62 | { |
61 | 63 | $reflector = new ReflectionClass($this->route->getTarget('controller')); |
62 | - if (!$reflector->isInstantiable()) |
|
63 | - throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.'); |
|
64 | + if (!$reflector->isInstantiable()) { |
|
65 | + throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.'); |
|
66 | + } |
|
64 | 67 | $constructor = $reflector->getConstructor(); |
65 | 68 | if (is_null($constructor)) { |
66 | 69 | $class = $this->route->getTarget('controller'); |