Completed
Push — master ( 220ceb...ab9a78 )
by Sinnarasa
02:32
created
src/Routing/Match/RoutesMatch.php 1 patch
Braces   +31 added lines, -18 removed lines patch added patch discarded remove patch
@@ -62,8 +62,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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',
Please login to merge, or discard this patch.
src/Routing/Router.php 1 patch
Braces   +13 added lines, -7 removed lines patch added patch discarded remove patch
@@ -71,7 +71,9 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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'));
Please login to merge, or discard this patch.