@@ -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 | } |
@@ -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 |
@@ -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 | /** |
@@ -41,5 +41,5 @@ |
||
41 | 41 | * @param $class |
42 | 42 | * @return mixed |
43 | 43 | */ |
44 | - public function addDispatcher($method,$class); |
|
44 | + public function addDispatcher($method, $class); |
|
45 | 45 | } |
@@ -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['view_dir_' . $this->countRoutes] = (isset($options['view_dir']) && !empty($options['view_dir'])) ? rtrim($options['view_dir'], '/') . '/' : ''; |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | */ |
63 | 63 | public function getRoutes($key = null) |
64 | 64 | { |
65 | - if(!is_null($key)) |
|
66 | - return isset($this->routes[$key])?$this->routes[$key]:''; |
|
65 | + if (!is_null($key)) |
|
66 | + return isset($this->routes[$key]) ? $this->routes[$key] : ''; |
|
67 | 67 | return $this->routes; |
68 | 68 | } |
69 | 69 | |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } elseif (is_string($args)) |
80 | 80 | for ($i = 0; $i < $this->countRoutes; ++$i) |
81 | 81 | $this->routes['prefix_' . $i] = '/' . trim($args, '/'); |
82 | - if($this->countRoutes == 0)$this->countRoutes++; |
|
82 | + if ($this->countRoutes == 0)$this->countRoutes++; |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | /** |
@@ -89,15 +89,15 @@ discard block |
||
89 | 89 | { |
90 | 90 | $nbrArgs = count($args); |
91 | 91 | for ($i = 0; $i < $nbrArgs; ++$i) { |
92 | - if(is_array($args[$i])){ |
|
92 | + if (is_array($args[$i])) { |
|
93 | 93 | $this->routes['block_' . $i] = (isset($args[$i]['block']) && !empty($args[$i]['block'])) ? rtrim($args[$i]['block'], '/') . '/' : ''; |
94 | 94 | $this->routes['view_dir_' . $i] = (isset($args[$i]['view_dir']) && !empty($args[$i]['view_dir'])) ? rtrim($args[$i]['view_dir'], '/') . '/' : ''; |
95 | 95 | $this->routes['ctrl_namespace_' . $i] = (isset($args[$i]['ctrl_namespace']) && !empty($args[$i]['ctrl_namespace'])) ? trim($args[$i]['ctrl_namespace'], '\\') . '\\' : ''; |
96 | - $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/'.trim($args[$i]['prefix'], '/') : ''; |
|
97 | - if(!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = []; |
|
96 | + $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/' . trim($args[$i]['prefix'], '/') : ''; |
|
97 | + if (!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = []; |
|
98 | 98 | } |
99 | 99 | } |
100 | - if($this->countRoutes == 0)$this->countRoutes++; |
|
100 | + if ($this->countRoutes == 0)$this->countRoutes++; |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | */ |
120 | 120 | public function generateRoutesPath() |
121 | 121 | { |
122 | - $root = 'http://' . (isset($_SERVER['HTTP_HOST'])?$_SERVER['HTTP_HOST']:$_SERVER['SERVER_NAME']) . str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']); |
|
122 | + $root = 'http://' . (isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : $_SERVER['SERVER_NAME']) . str_replace('/index.php', '', $_SERVER['SCRIPT_NAME']); |
|
123 | 123 | $count = 0; |
124 | 124 | for ($i = 0; $i < $this->countRoutes; ++$i) { |
125 | 125 | $prefix = (isset($this->routes['prefix_' . $i])) ? $this->routes['prefix_' . $i] : ''; |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | foreach ($this->routes['routes_' . $i] as $route => $dependencies) { |
128 | 128 | if (is_array($dependencies) && isset($dependencies['use'])) |
129 | 129 | $use = (is_callable($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); |
130 | - elseif(!is_array($dependencies)) |
|
130 | + elseif (!is_array($dependencies)) |
|
131 | 131 | $use = (is_callable($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); |
132 | 132 | else |
133 | 133 | $use = $route; |
@@ -76,8 +76,8 @@ discard block |
||
76 | 76 | * @param $class |
77 | 77 | * @return mixed |
78 | 78 | */ |
79 | - private function callHandler($class){ |
|
80 | - $instance = call_user_func($this->router->getConfig()['di'],$class); |
|
79 | + private function callHandler($class) { |
|
80 | + $instance = call_user_func($this->router->getConfig()['di'], $class); |
|
81 | 81 | if (method_exists($instance, 'handle')) { |
82 | 82 | $reflectionMethod = new ReflectionMethod($instance, 'handle'); |
83 | 83 | $dependencies = []; |
@@ -93,8 +93,8 @@ discard block |
||
93 | 93 | * @param $class |
94 | 94 | * @return Route|RouteCollection|Router|mixed |
95 | 95 | */ |
96 | - private function getClass($class){ |
|
97 | - switch($class){ |
|
96 | + private function getClass($class) { |
|
97 | + switch ($class) { |
|
98 | 98 | case 'JetFire\Routing\Route': |
99 | 99 | return $this->router->route; |
100 | 100 | break; |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | return $this->router->collection; |
106 | 106 | break; |
107 | 107 | default: |
108 | - return call_user_func_array($this->router->getConfig()['di'],[$class]); |
|
108 | + return call_user_func_array($this->router->getConfig()['di'], [$class]); |
|
109 | 109 | break; |
110 | 110 | } |
111 | 111 | } |
@@ -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,12 +44,12 @@ 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 | - if(is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data',$content); |
|
52 | - elseif(!is_null($content))$this->response->setContent($content); |
|
51 | + if (is_array($content = $reflectionMethod->invokeArgs($this->getController(), $dependencies))) $this->route->addTarget('data', $content); |
|
52 | + elseif (!is_null($content))$this->response->setContent($content); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | |
@@ -65,13 +65,13 @@ discard block |
||
65 | 65 | $constructor = $reflector->getConstructor(); |
66 | 66 | if (is_null($constructor)) { |
67 | 67 | $class = $this->route->getTarget('controller'); |
68 | - return call_user_func_array($this->route->getTarget('di'),[$class]); |
|
68 | + return call_user_func_array($this->route->getTarget('di'), [$class]); |
|
69 | 69 | } |
70 | 70 | $dependencies = $constructor->getParameters(); |
71 | 71 | $arguments = []; |
72 | 72 | foreach ($dependencies as $dep) { |
73 | 73 | $class = $dep->getClass()->name; |
74 | - array_push($arguments, call_user_func_array($this->route->getTarget('di'),[$class])); |
|
74 | + array_push($arguments, call_user_func_array($this->route->getTarget('di'), [$class])); |
|
75 | 75 | } |
76 | 76 | return $reflector->newInstanceArgs($arguments); |
77 | 77 | } |
@@ -25,7 +25,7 @@ discard block |
||
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; |
@@ -42,8 +42,8 @@ discard block |
||
42 | 42 | $this->response->setHeaders(['Content-Type' => 'text/html']); |
43 | 43 | } |
44 | 44 | $params = ($this->route->getParameters() == '') ? [] : $this->route->getParameters(); |
45 | - if(is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data',$content); |
|
46 | - elseif(!is_null($content)) $this->response->setContent($content); |
|
45 | + if (is_array($content = call_user_func_array($this->route->getTarget('closure'), $params))) $this->route->addTarget('data', $content); |
|
46 | + elseif (!is_null($content)) $this->response->setContent($content); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | } |
@@ -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; |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | $this->response->setContent(call_user_func_array($this->route->getTarget('callback')[$this->route->getTarget('extension')], [$this->route])); |
54 | 54 | else { |
55 | 55 | ob_start(); |
56 | - if(isset($this->route->getTarget()['data']))extract($this->route->getTarget('data')); |
|
56 | + if (isset($this->route->getTarget()['data']))extract($this->route->getTarget('data')); |
|
57 | 57 | require($this->route->getTarget('template')); |
58 | 58 | $this->response->setContent(ob_get_clean()); |
59 | 59 | } |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | /** |
63 | 63 | * @param $extension |
64 | 64 | */ |
65 | - public function setContentType($extension){ |
|
65 | + public function setContentType($extension) { |
|
66 | 66 | $this->response->setStatusCode(200); |
67 | 67 | isset($this->types[$extension]) |
68 | 68 | ? $this->response->setHeaders(['Content-Type' => $this->types[$extension]]) |