@@ -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 | * @param Router $router |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * @param string $matcher |
39 | 39 | */ |
40 | - public function addMatcher($matcher){ |
|
40 | + public function addMatcher($matcher) { |
|
41 | 41 | $this->matcher[] = $matcher; |
42 | 42 | } |
43 | 43 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | private function generateTarget() |
108 | 108 | { |
109 | - if(is_callable($this->request['path'])){ |
|
109 | + if (is_callable($this->request['path'])) { |
|
110 | 110 | $this->router->route->setCallback($this->request['path']); |
111 | 111 | $this->router->route->setDetail($this->request); |
112 | 112 | $this->matchClosure(); |
@@ -119,11 +119,11 @@ discard block |
||
119 | 119 | ? $this->router->route->setCallback($this->request['path']['use']) |
120 | 120 | : $this->router->route->setCallback($this->request['path']); |
121 | 121 | $this->router->route->setDetail($this->request); |
122 | - if($this->validMethod()) { |
|
123 | - foreach($this->matcher as $matcher) |
|
124 | - call_user_func([$this,$matcher]); |
|
122 | + if ($this->validMethod()) { |
|
123 | + foreach ($this->matcher as $matcher) |
|
124 | + call_user_func([$this, $matcher]); |
|
125 | 125 | $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']); |
126 | - }else |
|
126 | + } else |
|
127 | 127 | $this->router->route->setResponse(['code' => 405, 'message' => 'Method Not Allowed']); |
128 | 128 | } |
129 | 129 | return $this->router->route->hasTarget(); |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | $index = isset($this->request['index']) ? $this->request['index'] : 0; |
166 | 166 | $class = (class_exists($routes[0])) |
167 | 167 | ? $routes[0] |
168 | - : $this->router->collection->getRoutes()['namespace_'.$index].$routes[0]; |
|
168 | + : $this->router->collection->getRoutes()['namespace_' . $index] . $routes[0]; |
|
169 | 169 | if (!class_exists($class)) |
170 | 170 | throw new \Exception('Class "' . $class . '." is not found'); |
171 | 171 | if (method_exists($class, $routes[1])) { |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | $extension = explode('.', $path); |
194 | 194 | $extension = end($extension); |
195 | 195 | $index = isset($this->request['index']) ? $this->request['index'] : 0; |
196 | - $block = $this->router->collection->getRoutes('path_'.$index); |
|
196 | + $block = $this->router->collection->getRoutes('path_' . $index); |
|
197 | 197 | if (in_array('.' . $extension, $this->router->getConfig()['viewExtension'])) { |
198 | 198 | if (is_file($block . $path)) { |
199 | 199 | $target = $block . $path; |
@@ -209,13 +209,13 @@ discard block |
||
209 | 209 | throw new \Exception('Template file "' . $path . '" is not found in "' . $block . '"'); |
210 | 210 | } else { |
211 | 211 | foreach ($this->router->getConfig()['viewExtension'] as $ext) { |
212 | - if (is_file($block . $path . $ext)){ |
|
212 | + if (is_file($block . $path . $ext)) { |
|
213 | 213 | $target = $block . $path . $ext; |
214 | - $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', 'template' => $target,'block' => $block, 'extension' => str_replace('.', '', $ext),'callback' => $this->router->getConfig()['viewCallback']]); |
|
214 | + $this->router->route->setTarget(['dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', 'template' => $target, 'block' => $block, 'extension' => str_replace('.', '', $ext), 'callback' => $this->router->getConfig()['viewCallback']]); |
|
215 | 215 | return true; |
216 | 216 | } |
217 | 217 | } |
218 | - throw new \Exception('Template file "' . $path . '" is not found in "' .$block . '"'); |
|
218 | + throw new \Exception('Template file "' . $path . '" is not found in "' . $block . '"'); |
|
219 | 219 | } |
220 | 220 | } |
221 | 221 | return false; |
@@ -62,8 +62,9 @@ discard block |
||
62 | 62 | $this->request['path'] = $dependencies; |
63 | 63 | $this->request['index'] = $i; |
64 | 64 | $this->request['route'] = preg_replace_callback('#:([\w]+)#', [$this, 'paramMatch'], '/' . trim(trim($this->request['prefix'], '/') . '/' . trim($route, '/'), '/')); |
65 | - if ($this->routeMatch('#^' . $this->request['route'] . '$#')) |
|
66 | - return $this->generateTarget(); |
|
65 | + if ($this->routeMatch('#^' . $this->request['route'] . '$#')) { |
|
66 | + return $this->generateTarget(); |
|
67 | + } |
|
67 | 68 | } |
68 | 69 | } |
69 | 70 | unset($this->request); |
@@ -91,8 +92,9 @@ discard block |
||
91 | 92 | { |
92 | 93 | if (substr($this->request['route'], -1) == '*') { |
93 | 94 | $pos = strpos($this->request['route'], '*'); |
94 | - if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos)) |
|
95 | - if (isset($this->request)) return true; |
|
95 | + if (substr($this->router->route->getUrl(), 0, $pos) == substr($this->request['route'], 0, $pos)) { |
|
96 | + if (isset($this->request)) return true; |
|
97 | + } |
|
96 | 98 | } |
97 | 99 | if (preg_match($regex, $this->router->route->getUrl(), $this->request['parameters'])) { |
98 | 100 | array_shift($this->request['parameters']); |
@@ -112,19 +114,26 @@ discard block |
||
112 | 114 | $this->matchClosure(); |
113 | 115 | $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']); |
114 | 116 | } else { |
115 | - if (isset($this->request['path']['name'])) $this->router->route->setName($this->request['path']['name']); |
|
116 | - if (isset($this->request['path']['method'])) $this->request['path']['method'] = is_array($this->request['path']['method']) ? $this->request['path']['method'] : [$this->request['path']['method']]; |
|
117 | - if (isset($this->request['path'])) |
|
118 | - (is_array($this->request['path']) && isset($this->request['path']['use'])) |
|
117 | + if (isset($this->request['path']['name'])) { |
|
118 | + $this->router->route->setName($this->request['path']['name']); |
|
119 | + } |
|
120 | + if (isset($this->request['path']['method'])) { |
|
121 | + $this->request['path']['method'] = is_array($this->request['path']['method']) ? $this->request['path']['method'] : [$this->request['path']['method']]; |
|
122 | + } |
|
123 | + if (isset($this->request['path'])) { |
|
124 | + (is_array($this->request['path']) && isset($this->request['path']['use'])) |
|
119 | 125 | ? $this->router->route->setCallback($this->request['path']['use']) |
120 | - : $this->router->route->setCallback($this->request['path']); |
|
126 | + : $this->router->route->setCallback($this->request['path']); |
|
127 | + } |
|
121 | 128 | $this->router->route->setDetail($this->request); |
122 | 129 | if($this->validMethod()) { |
123 | - foreach($this->matcher as $matcher) |
|
124 | - call_user_func([$this,$matcher]); |
|
130 | + foreach($this->matcher as $matcher) { |
|
131 | + call_user_func([$this,$matcher]); |
|
132 | + } |
|
125 | 133 | $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']); |
126 | - }else |
|
127 | - $this->router->route->setResponse(['code' => 405, 'message' => 'Method Not Allowed']); |
|
134 | + } else { |
|
135 | + $this->router->route->setResponse(['code' => 405, 'message' => 'Method Not Allowed']); |
|
136 | + } |
|
128 | 137 | } |
129 | 138 | return $this->router->route->hasTarget(); |
130 | 139 | } |
@@ -134,8 +143,9 @@ discard block |
||
134 | 143 | */ |
135 | 144 | public function validMethod() |
136 | 145 | { |
137 | - if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') |
|
138 | - return (isset($this->request['path']['ajax']) && $this->request['path']['ajax'] === true) ? true : false; |
|
146 | + if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest') { |
|
147 | + return (isset($this->request['path']['ajax']) && $this->request['path']['ajax'] === true) ? true : false; |
|
148 | + } |
|
139 | 149 | $method = (isset($this->router->route->getDetail()['path']['method'])) ? $this->router->route->getDetail()['path']['method'] : ['GET']; |
140 | 150 | return (in_array($this->router->route->getMethod(), $method)) ? true : false; |
141 | 151 | } |
@@ -161,13 +171,16 @@ discard block |
||
161 | 171 | { |
162 | 172 | if (!$this->router->route->hasTarget() && strpos($this->router->route->getCallback(), '@') !== false) { |
163 | 173 | $routes = explode('@', $this->router->route->getCallback()); |
164 | - if (!isset($routes[1])) $routes[1] = 'index'; |
|
174 | + if (!isset($routes[1])) { |
|
175 | + $routes[1] = 'index'; |
|
176 | + } |
|
165 | 177 | $index = isset($this->request['index']) ? $this->request['index'] : 0; |
166 | 178 | $class = (class_exists($routes[0])) |
167 | 179 | ? $routes[0] |
168 | 180 | : $this->router->collection->getRoutes()['namespace_'.$index].$routes[0]; |
169 | - if (!class_exists($class)) |
|
170 | - throw new \Exception('Class "' . $class . '." is not found'); |
|
181 | + if (!class_exists($class)) { |
|
182 | + throw new \Exception('Class "' . $class . '." is not found'); |
|
183 | + } |
|
171 | 184 | if (method_exists($class, $routes[1])) { |
172 | 185 | $this->router->route->setTarget([ |
173 | 186 | 'dispatcher' => 'JetFire\Routing\Dispatcher\ControllerDispatcher', |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | /** |
21 | 21 | * @var array |
22 | 22 | */ |
23 | - private $matcher = ['matchTemplate','matchController']; |
|
23 | + private $matcher = ['matchTemplate', 'matchController']; |
|
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param Router $router |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | /** |
34 | 34 | * @param string $matcher |
35 | 35 | */ |
36 | - public function addMatcher($matcher){ |
|
36 | + public function addMatcher($matcher) { |
|
37 | 37 | $this->matcher[] = $matcher; |
38 | 38 | } |
39 | 39 | |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | */ |
51 | 51 | public function match() |
52 | 52 | { |
53 | - foreach($this->matcher as $matcher){ |
|
54 | - if(call_user_func([$this,$matcher])) { |
|
53 | + foreach ($this->matcher as $matcher) { |
|
54 | + if (call_user_func([$this, $matcher])) { |
|
55 | 55 | $this->router->route->setResponse(['code' => 202, 'message' => 'Accepted']); |
56 | 56 | return true; |
57 | 57 | } |
@@ -66,9 +66,9 @@ discard block |
||
66 | 66 | { |
67 | 67 | foreach ($this->router->getConfig()['viewExtension'] as $extension) { |
68 | 68 | for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) { |
69 | - $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl())); |
|
69 | + $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '', $this->router->route->getUrl())); |
|
70 | 70 | $end = array_pop($url); |
71 | - $url = implode('/', array_map('ucwords', $url)).'/'.$end; |
|
71 | + $url = implode('/', array_map('ucwords', $url)) . '/' . $end; |
|
72 | 72 | if (is_file(($template = rtrim($this->router->collection->getRoutes('path_' . $i), '/') . $url . $extension))) { |
73 | 73 | $this->router->route->setTarget([ |
74 | 74 | 'dispatcher' => 'JetFire\Routing\Dispatcher\TemplateDispatcher', |
@@ -91,12 +91,12 @@ discard block |
||
91 | 91 | { |
92 | 92 | $routes = array_slice(explode('/', $this->router->route->getUrl()), 1); |
93 | 93 | $i = 0; |
94 | - do{ |
|
95 | - $route = ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) |
|
94 | + do { |
|
95 | + $route = ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) |
|
96 | 96 | ? array_slice($routes, 1) : $routes; |
97 | 97 | if (isset($route[0])) { |
98 | - $class = (class_exists($this->router->collection->getRoutes('namespace_' . $i). ucfirst($route[0]) . 'Controller')) |
|
99 | - ? $this->router->collection->getRoutes('namespace_' . $i). ucfirst($route[0]) . 'Controller' |
|
98 | + $class = (class_exists($this->router->collection->getRoutes('namespace_' . $i) . ucfirst($route[0]) . 'Controller')) |
|
99 | + ? $this->router->collection->getRoutes('namespace_' . $i) . ucfirst($route[0]) . 'Controller' |
|
100 | 100 | : ucfirst($route[0]) . 'Controller'; |
101 | 101 | if (isset($route[1]) && method_exists($class, $route[1])) { |
102 | 102 | $this->router->route->setTarget([ |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | } |
111 | 111 | } |
112 | 112 | ++$i; |
113 | - }while($i < $this->router->collection->countRoutes); |
|
113 | + }while ($i < $this->router->collection->countRoutes); |
|
114 | 114 | return false; |
115 | 115 | } |
116 | 116 |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | { |
45 | 45 | $this->collection = $collection; |
46 | 46 | $this->route = new Route(); |
47 | - $this->config['di'] = function($class){ |
|
47 | + $this->config['di'] = function($class) { |
|
48 | 48 | return new $class; |
49 | 49 | }; |
50 | 50 | } |
@@ -139,9 +139,9 @@ discard block |
||
139 | 139 | { |
140 | 140 | if (isset($this->route->getResponse()['templates']) && isset($this->route->getResponse()['templates'][$this->route->getResponse('code')])) { |
141 | 141 | $this->route->setCallback($this->route->getResponse()['templates'][$this->route->getResponse('code')]); |
142 | - foreach($this->config['matcherInstance'] as $matcher) { |
|
142 | + foreach ($this->config['matcherInstance'] as $matcher) { |
|
143 | 143 | foreach (call_user_func([$matcher, 'getMatcher']) as $match) |
144 | - if (call_user_func([$matcher, $match])){ $this->callTarget(); break; } |
|
144 | + if (call_user_func([$matcher, $match])) { $this->callTarget(); break; } |
|
145 | 145 | } |
146 | 146 | } |
147 | 147 | http_response_code($this->route->getResponse('code')); |
@@ -71,7 +71,9 @@ discard block |
||
71 | 71 | public function run() |
72 | 72 | { |
73 | 73 | $this->setUrl(); |
74 | - if ($this->config['generateRoutesPath']) $this->collection->generateRoutesPath(); |
|
74 | + if ($this->config['generateRoutesPath']) { |
|
75 | + $this->collection->generateRoutesPath(); |
|
76 | + } |
|
75 | 77 | if ($this->match()) { |
76 | 78 | $this->handle(); |
77 | 79 | $this->callTarget(); |
@@ -84,8 +86,9 @@ discard block |
||
84 | 86 | */ |
85 | 87 | public function setUrl($url = null) |
86 | 88 | { |
87 | - if (is_null($url)) |
|
88 | - $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1); |
|
89 | + if (is_null($url)) { |
|
90 | + $url = (isset($_GET['url'])) ? $_GET['url'] : substr(str_replace(str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']), '', $_SERVER['REQUEST_URI']), 1); |
|
91 | + } |
|
89 | 92 | $this->route->setUrl('/' . trim(explode('?', $url)[0], '/')); |
90 | 93 | } |
91 | 94 | |
@@ -96,8 +99,9 @@ discard block |
||
96 | 99 | { |
97 | 100 | foreach ($this->config['matcher'] as $matcher) { |
98 | 101 | $this->config['matcherInstance'][$matcher] = new $matcher($this); |
99 | - if (call_user_func([$this->config['matcherInstance'][$matcher], 'match'])) |
|
100 | - return true; |
|
102 | + if (call_user_func([$this->config['matcherInstance'][$matcher], 'match'])) { |
|
103 | + return true; |
|
104 | + } |
|
101 | 105 | } |
102 | 106 | return false; |
103 | 107 | } |
@@ -140,8 +144,10 @@ discard block |
||
140 | 144 | if (isset($this->route->getResponse()['templates']) && isset($this->route->getResponse()['templates'][$this->route->getResponse('code')])) { |
141 | 145 | $this->route->setCallback($this->route->getResponse()['templates'][$this->route->getResponse('code')]); |
142 | 146 | foreach($this->config['matcherInstance'] as $matcher) { |
143 | - foreach (call_user_func([$matcher, 'getMatcher']) as $match) |
|
144 | - if (call_user_func([$matcher, $match])){ $this->callTarget(); break; } |
|
147 | + foreach (call_user_func([$matcher, 'getMatcher']) as $match) { |
|
148 | + if (call_user_func([$matcher, $match])){ $this->callTarget(); |
|
149 | + } |
|
150 | + break; } |
|
145 | 151 | } |
146 | 152 | } |
147 | 153 | http_response_code($this->route->getResponse('code')); |