Completed
Push — master ( d708fb...6202fd )
by Sinnarasa
02:37
created
src/Routing/Response.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Routing/Dispatcher/TemplateDispatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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]])
Please login to merge, or discard this patch.
src/Routing/Dispatcher/DispatcherInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Routing/Dispatcher/ClosureDispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Routing/Route.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
src/Routing/Dispatcher/ControllerDispatcher.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/Routing/Matcher/MatcherInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,5 +41,5 @@
 block discarded – undo
41 41
      * @param $class
42 42
      * @return mixed
43 43
      */
44
-    public function addDispatcher($method,$class);
44
+    public function addDispatcher($method, $class);
45 45
 }
Please login to merge, or discard this patch.
src/Routing/Matcher/UriMatcher.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
     /**
21 21
      * @var array
22 22
      */
23
-    private $matcher = ['matchController','matchTemplate'];
23
+    private $matcher = ['matchController', 'matchTemplate'];
24 24
 
25 25
     /**
26 26
      * @var array
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     /**
42 42
      * @param string $matcher
43 43
      */
44
-    public function addMatcher($matcher){
44
+    public function addMatcher($matcher) {
45 45
         $this->matcher[] = $matcher;
46 46
     }
47 47
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      * @param $class
67 67
      * @return mixed|void
68 68
      */
69
-    public function addDispatcher($method,$class){
69
+    public function addDispatcher($method, $class) {
70 70
         $this->dispatcher[$method] = $class;
71 71
     }
72 72
 
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function match()
77 77
     {
78
-        foreach($this->matcher as $matcher){
79
-            if(call_user_func([$this,$matcher])) {
78
+        foreach ($this->matcher as $matcher) {
79
+            if (call_user_func([$this, $matcher])) {
80 80
                 $this->router->response->setStatusCode(202);
81 81
                 return true;
82 82
             }
@@ -91,14 +91,14 @@  discard block
 block discarded – undo
91 91
     {
92 92
         foreach ($this->router->getConfig()['templateExtension'] as $extension) {
93 93
             for ($i = 0; $i < $this->router->collection->countRoutes; ++$i) {
94
-                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '',$this->router->route->getUrl()));
94
+                $url = explode('/', str_replace($this->router->collection->getRoutes('prefix_' . $i), '', $this->router->route->getUrl()));
95 95
                 $end = array_pop($url);
96
-                $url = implode('/', array_map('ucwords', $url)).'/'.$end;
96
+                $url = implode('/', array_map('ucwords', $url)) . '/' . $end;
97 97
                 if (is_file(($template = rtrim($this->router->collection->getRoutes('view_dir_' . $i), '/') . $url . $extension))) {
98 98
                     $this->router->route->setTarget([
99 99
                         'dispatcher' => $this->dispatcher['matchTemplate'],
100
-                        'block' => $this->router->collection->getRoutes('block_'.$i),
101
-                        'view_dir' => $this->router->collection->getRoutes('view_dir_'.$i),
100
+                        'block' => $this->router->collection->getRoutes('block_' . $i),
101
+                        'view_dir' => $this->router->collection->getRoutes('view_dir_' . $i),
102 102
                         'template' => $template,
103 103
                         'extension' => str_replace('.', '', $extension),
104 104
                         'callback' => $this->router->getConfig()['templateCallback']
@@ -117,18 +117,18 @@  discard block
 block discarded – undo
117 117
     {
118 118
         $routes = array_slice(explode('/', $this->router->route->getUrl()), 1);
119 119
         $i = 0;
120
-        do{
121
-            $route =  ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
120
+        do {
121
+            $route = ('/' . $routes[0] == $this->router->collection->getRoutes('prefix_' . $i)) ? array_slice($routes, 1) : $routes;
122 122
             if (isset($route[0])) {
123
-                $class =  (class_exists($this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'))
124
-                    ? $this->router->collection->getRoutes('ctrl_namespace_' . $i). ucfirst($route[0]) . 'Controller'
123
+                $class = (class_exists($this->router->collection->getRoutes('ctrl_namespace_' . $i) . ucfirst($route[0]) . 'Controller'))
124
+                    ? $this->router->collection->getRoutes('ctrl_namespace_' . $i) . ucfirst($route[0]) . 'Controller'
125 125
                     : ucfirst($route[0]) . 'Controller';
126
-                $route[1] = isset($route[1])?$route[1]:'index';
126
+                $route[1] = isset($route[1]) ? $route[1] : 'index';
127 127
                 if (method_exists($class, $route[1])) {
128 128
                     $this->router->route->setTarget([
129 129
                         'dispatcher' => $this->dispatcher['matchController'],
130
-                        'block' => $this->router->collection->getRoutes('block_'.$i),
131
-                        'view_dir' => $this->router->collection->getRoutes('view_dir_'.$i),
130
+                        'block' => $this->router->collection->getRoutes('block_' . $i),
131
+                        'view_dir' => $this->router->collection->getRoutes('view_dir_' . $i),
132 132
                         'di' => $this->router->getConfig()['di'],
133 133
                         'controller' => $class,
134 134
                         'action' => $route[1]
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
                 }
139 139
             }
140 140
             ++$i;
141
-        }while($i < $this->router->collection->countRoutes);
141
+        }while ($i < $this->router->collection->countRoutes);
142 142
         return false;
143 143
     }
144 144
 
Please login to merge, or discard this patch.
src/Routing/Matcher/ArrayMatcher.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,14 +133,14 @@  discard block
 block discarded – undo
133 133
      */
134 134
     private function generateTarget()
135 135
     {
136
-        if($this->validMethod()) {
137
-            foreach($this->matcher as $match)
138
-                if(call_user_func_array([$this,$match],[$this->router->route->getCallback()])) break;
136
+        if ($this->validMethod()) {
137
+            foreach ($this->matcher as $match)
138
+                if (call_user_func_array([$this, $match], [$this->router->route->getCallback()])) break;
139 139
             $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
140
-            $this->router->route->addTarget('block',$this->router->collection->getRoutes('block_'.$index));
141
-            $this->router->route->addTarget('view_dir',$this->router->collection->getRoutes('view_dir_'.$index));
140
+            $this->router->route->addTarget('block', $this->router->collection->getRoutes('block_' . $index));
141
+            $this->router->route->addTarget('view_dir', $this->router->collection->getRoutes('view_dir_' . $index));
142 142
             $this->router->response->setStatusCode(202);
143
-        }else
143
+        } else
144 144
             $this->router->response->setStatusCode(405);
145 145
         return $this->router->route->hasTarget();
146 146
     }
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
     /**
149 149
      *
150 150
      */
151
-    private function setRoute(){
151
+    private function setRoute() {
152 152
         if (isset($this->request['params'])) {
153
-            if(is_callable($this->request['params']))
153
+            if (is_callable($this->request['params']))
154 154
                 $this->router->route->setCallback($this->request['params']);
155 155
             else {
156 156
                 (is_array($this->request['params']) && isset($this->request['params']['use']))
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
      */
169 169
     public function validMethod()
170 170
     {
171
-        if(is_callable($this->request['params']))return true;
171
+        if (is_callable($this->request['params']))return true;
172 172
         if (!empty($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')
173 173
             return (isset($this->request['params']['ajax']) && $this->request['params']['ajax'] === true) ? true : false;
174 174
         $method = (isset($this->router->route->getDetail()['params']['method'])) ? $this->router->route->getDetail()['params']['method'] : ['GET'];
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
             $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
206 206
             $class = (class_exists($routes[0]))
207 207
                 ? $routes[0]
208
-                : $this->router->collection->getRoutes()['ctrl_namespace_'.$index].$routes[0];
208
+                : $this->router->collection->getRoutes()['ctrl_namespace_' . $index] . $routes[0];
209 209
             if (!class_exists($class))
210 210
                 throw new \Exception('Class "' . $class . '." is not found');
211 211
             if (method_exists($class, $routes[1])) {
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
      */
230 230
     public function matchTemplate($callback)
231 231
     {
232
-        if(is_string($callback)) {
232
+        if (is_string($callback)) {
233 233
             $path = trim($callback, '/');
234 234
             $extension = substr(strrchr($path, "."), 1);
235 235
             $index = isset($this->request['collection_index']) ? $this->request['collection_index'] : 0;
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                     }
247 247
                 }
248 248
             }
249
-            if(is_null($target))
249
+            if (is_null($target))
250 250
                 throw new \Exception('Template file "' . $path . '" is not found in "' . $viewDir . '"');
251 251
             $this->router->route->setTarget([
252 252
                 'dispatcher' => $this->dispatcher['matchTemplate'],
Please login to merge, or discard this patch.