@@ -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 | } |
@@ -48,8 +48,9 @@ discard block |
||
48 | 48 | array_unshift($dependencies, call_user_func_array($this->route->getTarget('di'),[$class])); |
49 | 49 | } |
50 | 50 | } |
51 | - if ($this->response->getStatusCode() == 202) |
|
52 | - $this->response->setStatusCode(200); |
|
51 | + if ($this->response->getStatusCode() == 202) { |
|
52 | + $this->response->setStatusCode(200); |
|
53 | + } |
|
53 | 54 | return $this->response->setContent($reflectionMethod->invokeArgs($this->getController(), $dependencies)); |
54 | 55 | } |
55 | 56 | |
@@ -61,8 +62,9 @@ discard block |
||
61 | 62 | private function getController() |
62 | 63 | { |
63 | 64 | $reflector = new ReflectionClass($this->route->getTarget('controller')); |
64 | - if (!$reflector->isInstantiable()) |
|
65 | - throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.'); |
|
65 | + if (!$reflector->isInstantiable()) { |
|
66 | + throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.'); |
|
67 | + } |
|
66 | 68 | $constructor = $reflector->getConstructor(); |
67 | 69 | if (is_null($constructor)) { |
68 | 70 | $class = $this->route->getTarget('controller'); |
@@ -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 |
@@ -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()); |
@@ -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 | } |
@@ -78,8 +78,9 @@ discard block |
||
78 | 78 | $this->request['path'] = $dependencies; |
79 | 79 | $this->request['index'] = $i; |
80 | 80 | $this->request['route'] = preg_replace_callback('#:([\w]+)#', [$this, 'paramMatch'], '/' . trim(trim($this->request['prefix'], '/') . '/' . trim($route, '/'), '/')); |
81 | - if ($this->routeMatch('#^' . $this->request['route'] . '$#')) |
|
82 | - return $this->generateTarget(); |
|
81 | + if ($this->routeMatch('#^' . $this->request['route'] . '$#')) { |
|
82 | + return $this->generateTarget(); |
|
83 | + } |
|
83 | 84 | } |
84 | 85 | } |
85 | 86 | unset($this->request); |
@@ -107,8 +108,9 @@ discard block |
||
107 | 108 | { |
108 | 109 | if (substr($this->request['route'], -1) == '*') { |
109 | 110 | $pos = strpos($this->request['route'], '*'); |
110 | - if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos)) |
|
111 | - if (isset($this->request)) return true; |
|
111 | + if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos)) { |
|
112 | + if (isset($this->request)) return true; |
|
113 | + } |
|
112 | 114 | } |
113 | 115 | if (preg_match($regex, $this->router->route->getUrl(), $this->request['parameters'])) { |
114 | 116 | array_shift($this->request['parameters']); |
@@ -128,19 +130,26 @@ discard block |
||
128 | 130 | $this->matchClosure(); |
129 | 131 | $this->router->response->setStatusCode(202); |
130 | 132 | } else { |
131 | - if (isset($this->request['path']['name'])) $this->router->route->setName($this->request['path']['name']); |
|
132 | - if (isset($this->request['path']['method'])) $this->request['path']['method'] = is_array($this->request['path']['method']) ? $this->request['path']['method'] : [$this->request['path']['method']]; |
|
133 | - if (isset($this->request['path'])) |
|
134 | - (is_array($this->request['path']) && isset($this->request['path']['use'])) |
|
133 | + if (isset($this->request['path']['name'])) { |
|
134 | + $this->router->route->setName($this->request['path']['name']); |
|
135 | + } |
|
136 | + if (isset($this->request['path']['method'])) { |
|
137 | + $this->request['path']['method'] = is_array($this->request['path']['method']) ? $this->request['path']['method'] : [$this->request['path']['method']]; |
|
138 | + } |
|
139 | + if (isset($this->request['path'])) { |
|
140 | + (is_array($this->request['path']) && isset($this->request['path']['use'])) |
|
135 | 141 | ? $this->router->route->setCallback($this->request['path']['use']) |
136 | - : $this->router->route->setCallback($this->request['path']); |
|
142 | + : $this->router->route->setCallback($this->request['path']); |
|
143 | + } |
|
137 | 144 | $this->router->route->setDetail($this->request); |
138 | 145 | if($this->validMethod()) { |
139 | - foreach($this->matcher as $matcher) |
|
140 | - call_user_func([$this,$matcher]); |
|
146 | + foreach($this->matcher as $matcher) { |
|
147 | + call_user_func([$this,$matcher]); |
|
148 | + } |
|
141 | 149 | $this->router->response->setStatusCode(202); |
142 | - }else |
|
143 | - $this->router->response->setStatusCode(405); |
|
150 | + } else { |
|
151 | + $this->router->response->setStatusCode(405); |
|
152 | + } |
|
144 | 153 | } |
145 | 154 | return $this->router->route->hasTarget(); |
146 | 155 | } |
@@ -150,8 +159,9 @@ discard block |
||
150 | 159 | */ |
151 | 160 | public function validMethod() |
152 | 161 | { |
153 | - if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
|
154 | - return (isset($this->request['path']['ajax']) && $this->request['path']['ajax'] === true) ? true : false; |
|
162 | + if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { |
|
163 | + return (isset($this->request['path']['ajax']) && $this->request['path']['ajax'] === true) ? true : false; |
|
164 | + } |
|
155 | 165 | $method = (isset($this->router->route->getDetail()['path']['method'])) ? $this->router->route->getDetail()['path']['method'] : ['GET']; |
156 | 166 | return (in_array($this->router->route->getMethod(), $method)) ? true : false; |
157 | 167 | } |
@@ -177,13 +187,16 @@ discard block |
||
177 | 187 | { |
178 | 188 | if (!$this->router->route->hasTarget() && strpos($this->router->route->getCallback(), '@') !== false) { |
179 | 189 | $routes = explode('@', $this->router->route->getCallback()); |
180 | - if (!isset($routes[1])) $routes[1] = 'index'; |
|
190 | + if (!isset($routes[1])) { |
|
191 | + $routes[1] = 'index'; |
|
192 | + } |
|
181 | 193 | $index = isset($this->request['index']) ? $this->request['index'] : 0; |
182 | 194 | $class = (class_exists($routes[0])) |
183 | 195 | ? $routes[0] |
184 | 196 | : $this->router->collection->getRoutes()['namespace_'.$index].$routes[0]; |
185 | - if (!class_exists($class)) |
|
186 | - throw new \Exception('Class "' . $class . '." is not found'); |
|
197 | + if (!class_exists($class)) { |
|
198 | + throw new \Exception('Class "' . $class . '." is not found'); |
|
199 | + } |
|
187 | 200 | if (method_exists($class, $routes[1])) { |
188 | 201 | $this->router->route->setTarget([ |
189 | 202 | 'dispatcher' => $this->dispatcher['matchController'], |
@@ -29,11 +29,14 @@ 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 $mid) { |
|
32 | + if (isset($this->router->collection->middleware['global_middleware'])) { |
|
33 | + foreach ($this->router->collection->middleware['global_middleware'] as $mid) { |
|
34 | 34 | if (class_exists($mid)) { |
35 | - $mid_global = call_user_func($this->router->getConfig()['di'],$mid); |
|
36 | - if (method_exists($mid_global, 'handle')) $this->callHandler($mid_global); |
|
35 | + $mid_global = call_user_func($this->router->getConfig()['di'],$mid); |
|
36 | + } |
|
37 | + if (method_exists($mid_global, 'handle')) { |
|
38 | + $this->callHandler($mid_global); |
|
39 | + } |
|
37 | 40 | } |
38 | 41 | } |
39 | 42 | } |
@@ -43,11 +46,14 @@ discard block |
||
43 | 46 | */ |
44 | 47 | public function blockMiddleware() |
45 | 48 | { |
46 | - if (isset($this->router->collection->middleware['block_middleware'])) |
|
47 | - if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()])) { |
|
48 | - $class = $this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]; |
|
49 | + if (isset($this->router->collection->middleware['block_middleware'])) { |
|
50 | + if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()])) { |
|
51 | + $class = $this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]; |
|
52 | + } |
|
49 | 53 | $mid_block = call_user_func($this->router->getConfig()['di'],$class); |
50 | - if (method_exists($mid_block, 'handle')) $this->callHandler($mid_block); |
|
54 | + if (method_exists($mid_block, 'handle')) { |
|
55 | + $this->callHandler($mid_block); |
|
56 | + } |
|
51 | 57 | } |
52 | 58 | } |
53 | 59 | |
@@ -61,7 +67,9 @@ discard block |
||
61 | 67 | if (isset($this->router->collection->middleware['class_middleware'][$ctrl]) && class_exists($this->router->route->getTarget('controller'))) { |
62 | 68 | $class = $this->router->collection->middleware['class_middleware'][$ctrl]; |
63 | 69 | $mid_class = call_user_func($this->router->getConfig()['di'],$class); |
64 | - if (method_exists($mid_class, 'handle')) $this->callHandler($mid_class); |
|
70 | + if (method_exists($mid_class, 'handle')) { |
|
71 | + $this->callHandler($mid_class); |
|
72 | + } |
|
65 | 73 | } |
66 | 74 | } |
67 | 75 | } |
@@ -71,11 +79,14 @@ discard block |
||
71 | 79 | */ |
72 | 80 | public function routeMiddleware() |
73 | 81 | { |
74 | - if (isset($this->router->collection->middleware['route_middleware'])) |
|
75 | - if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) { |
|
76 | - $class = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']]; |
|
82 | + if (isset($this->router->collection->middleware['route_middleware'])) { |
|
83 | + if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) { |
|
84 | + $class = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']]; |
|
85 | + } |
|
77 | 86 | $mid_route = call_user_func($this->router->getConfig()['di'],$class); |
78 | - if (method_exists($mid_route, 'handle')) $this->callHandler($mid_route); |
|
87 | + if (method_exists($mid_route, 'handle')) { |
|
88 | + $this->callHandler($mid_route); |
|
89 | + } |
|
79 | 90 | } |
80 | 91 | } |
81 | 92 |
@@ -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 | } |