@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | |
5 | 5 | use Exception; |
6 | 6 | |
7 | -trait Helper{ |
|
7 | +trait Helper { |
|
8 | 8 | use CheckTrait, ControllerTrait; |
9 | 9 | |
10 | 10 | private $currentRoute = null; |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | protected function getProtocol(): string |
29 | 29 | { |
30 | 30 | $protocol = ((isset($_SERVER['HTTP_X_REQUESTED_WITH']) && strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')) ? 'ajax' : 'get'; |
31 | - $protocol = (array_key_existS('HTTP_REQUESTED_METHOD',$_SERVER)) ? strtolower($_SERVER['HTTP_REQUESTED_METHOD']) : $protocol; |
|
31 | + $protocol = (array_key_existS('HTTP_REQUESTED_METHOD', $_SERVER)) ? strtolower($_SERVER['HTTP_REQUESTED_METHOD']) : $protocol; |
|
32 | 32 | |
33 | 33 | return $protocol; |
34 | 34 | } |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | { |
48 | 48 | $this->checkRole(); |
49 | 49 | $method = ($method !== 'method') ? $method : $this->getData()['POST']['role']; |
50 | - $data = (array_key_exists('data',$values)) ? json_decode($values['data'], true) : []; |
|
50 | + $data = (array_key_exists('data', $values)) ? json_decode($values['data'], true) : []; |
|
51 | 51 | |
52 | - call_user_func_array([$controller,$method], $data); |
|
52 | + call_user_func_array([$controller, $method], $data); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | protected function Controller(string $controll) |
@@ -57,36 +57,36 @@ discard block |
||
57 | 57 | $data = $this->getData(); |
58 | 58 | |
59 | 59 | foreach ($data['GET'] as $name => $value) { |
60 | - $controll = str_replace('{'.$name.'}',$value,$controll); |
|
60 | + $controll = str_replace('{'.$name.'}', $value, $controll); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | $this->checkControllSettable($controll)->checkControllExist($controll)->checkControllMethod($controll); |
64 | 64 | |
65 | - $controller = ucfirst(explode(':',$controll)[0]); |
|
65 | + $controller = ucfirst(explode(':', $controll)[0]); |
|
66 | 66 | $controller = new $controller(); |
67 | - $method = explode(':',$controll)[1]; |
|
67 | + $method = explode(':', $controll)[1]; |
|
68 | 68 | |
69 | - if( ($this->getProtocol() == 'form') ){ |
|
69 | + if (($this->getProtocol() == 'form')) { |
|
70 | 70 | $this->ControllerForm($controller, $method, $data['POST']); |
71 | 71 | }else { |
72 | - $data = (array_key_exists('data',$data['POST'])) ? json_decode($data['POST']['data'], true) : $data['GET']; |
|
73 | - call_user_func_array([$controller,$method], $data); |
|
72 | + $data = (array_key_exists('data', $data['POST'])) ? json_decode($data['POST']['data'], true) : $data['GET']; |
|
73 | + call_user_func_array([$controller, $method], $data); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | return $this; |
77 | 77 | } |
78 | 78 | |
79 | - protected function explodeRoutes(bool $bar, string $url ,bool $bar_, string $url_): array |
|
79 | + protected function explodeRoutes(bool $bar, string $url, bool $bar_, string $url_): array |
|
80 | 80 | { |
81 | - $url = $bar ? substr($url, 0, -1) : $url ; |
|
82 | - $url = explode('/',$url); |
|
81 | + $url = $bar ? substr($url, 0, -1) : $url; |
|
82 | + $url = explode('/', $url); |
|
83 | 83 | |
84 | - $url_ = $bar_ ? substr($url_, 0, -1) : $url_ ; |
|
85 | - $url_ = explode('/',$url_); |
|
84 | + $url_ = $bar_ ? substr($url_, 0, -1) : $url_; |
|
85 | + $url_ = explode('/', $url_); |
|
86 | 86 | |
87 | - foreach($url as $ur => $u){ |
|
88 | - if(substr($u,0,2) === '{?'){ |
|
89 | - if(!array_key_exists($ur,$url_)){ |
|
87 | + foreach ($url as $ur => $u) { |
|
88 | + if (substr($u, 0, 2) === '{?') { |
|
89 | + if (!array_key_exists($ur, $url_)) { |
|
90 | 90 | $url_[$ur] = ''; |
91 | 91 | }; |
92 | 92 | } |
@@ -97,25 +97,25 @@ discard block |
||
97 | 97 | |
98 | 98 | protected function toHiking(array $route): bool |
99 | 99 | { |
100 | - $this->callOnRoute($route,'beforeAll')->callOnRoute($route,'before'); |
|
100 | + $this->callOnRoute($route, 'beforeAll')->callOnRoute($route, 'before'); |
|
101 | 101 | |
102 | - if(is_string($route['role'])){ |
|
103 | - $this->Controller($route['role'])->callOnRoute($route,'after')->callOnRoute($route,'afterAll'); |
|
102 | + if (is_string($route['role'])) { |
|
103 | + $this->Controller($route['role'])->callOnRoute($route, 'after')->callOnRoute($route, 'afterAll'); |
|
104 | 104 | return true; |
105 | 105 | } |
106 | 106 | |
107 | - call_user_func_array($route['role'],$this->getData()['GET']); |
|
107 | + call_user_func_array($route['role'], $this->getData()['GET']); |
|
108 | 108 | |
109 | - $this->callOnRoute($route,'after')->callOnRoute($route,'afterAll'); |
|
109 | + $this->callOnRoute($route, 'after')->callOnRoute($route, 'afterAll'); |
|
110 | 110 | return true; |
111 | 111 | } |
112 | 112 | |
113 | - protected function callOnRoute(array $route,string $state) |
|
113 | + protected function callOnRoute(array $route, string $state) |
|
114 | 114 | { |
115 | - if($route[$state] !== null){ |
|
116 | - if(is_string($route[$state])){ |
|
115 | + if ($route[$state] !== null) { |
|
116 | + if (is_string($route[$state])) { |
|
117 | 117 | $this->Controller($route[$state]); |
118 | - }else{ |
|
118 | + }else { |
|
119 | 119 | $route[$state](); |
120 | 120 | } |
121 | 121 | } |
@@ -126,12 +126,12 @@ discard block |
||
126 | 126 | { |
127 | 127 | $currentProtocol = $this->getProtocol(); |
128 | 128 | |
129 | - foreach(array_reverse($this->routers) as $r => $route){ |
|
129 | + foreach (array_reverse($this->routers) as $r => $route) { |
|
130 | 130 | |
131 | 131 | $this->currentRoute = $route; |
132 | 132 | $this->currentRoute['name'] = $r; |
133 | 133 | |
134 | - if(!$this->checkProtocol($route['protocol'], $currentProtocol)){ |
|
134 | + if (!$this->checkProtocol($route['protocol'], $currentProtocol)) { |
|
135 | 135 | continue; |
136 | 136 | } |
137 | 137 | |
@@ -141,11 +141,11 @@ discard block |
||
141 | 141 | |
142 | 142 | |
143 | 143 | $routs = $this->explodeRoutes( |
144 | - (substr($route['url'],strlen($route['url'])-1,1) === '/') , $route['url'], |
|
145 | - (substr($_SERVER['REQUEST_URI'],strlen($_SERVER['REQUEST_URI'])-1,1) === '/') , $_SERVER['REQUEST_URI'] |
|
144 | + (substr($route['url'], strlen($route['url'])-1, 1) === '/'), $route['url'], |
|
145 | + (substr($_SERVER['REQUEST_URI'], strlen($_SERVER['REQUEST_URI'])-1, 1) === '/'), $_SERVER['REQUEST_URI'] |
|
146 | 146 | ); |
147 | 147 | |
148 | - if(!$this->checkToHiking($route, $routs['routeRequest'], $routs['routeLoop'])){ |
|
148 | + if (!$this->checkToHiking($route, $routs['routeRequest'], $routs['routeLoop'])) { |
|
149 | 149 | continue; |
150 | 150 | } |
151 | 151 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | } |
155 | 155 | |
156 | 156 | $this->currentRoute = null; |
157 | - throw new Exception('Page not found.',404); |
|
157 | + throw new Exception('Page not found.', 404); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | protected function loadByName(string $routName) |
@@ -163,8 +163,8 @@ discard block |
||
163 | 163 | $this->checkName($routName); |
164 | 164 | $route = $this->routers[$routName]; |
165 | 165 | |
166 | - if(!$this->checkProtocol($route['protocol'], $currentProtocol)){ |
|
167 | - throw new Exception('Page not found.',404); |
|
166 | + if (!$this->checkProtocol($route['protocol'], $currentProtocol)) { |
|
167 | + throw new Exception('Page not found.', 404); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | $this->currentRoute = $route; |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | namespace HnrAzevedo\Router; |
4 | 4 | |
5 | -class Router{ |
|
5 | +class Router { |
|
6 | 6 | use Helper, DefinitionsTrait, ExtraJobsTrait; |
7 | 7 | |
8 | 8 | private static $instance = null; |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | |
21 | 21 | public static function create(): Router |
22 | 22 | { |
23 | - if(!self::getInstance()->instanced){ |
|
23 | + if (!self::getInstance()->instanced) { |
|
24 | 24 | self::getInstance()->instanced = true; |
25 | 25 | } |
26 | 26 | |
@@ -33,13 +33,13 @@ discard block |
||
33 | 33 | return self::$instance; |
34 | 34 | } |
35 | 35 | |
36 | - public function set(string $url ,$walking , string $protocol): Router |
|
36 | + public function set(string $url, $walking, string $protocol): Router |
|
37 | 37 | { |
38 | 38 | $this->lastReturn = null; |
39 | 39 | |
40 | - $url = (substr($url,0,1) !=='/' and strlen($url) > 0) ? "/{$url}" : $url; |
|
40 | + $url = (substr($url, 0, 1) !== '/' and strlen($url) > 0) ? "/{$url}" : $url; |
|
41 | 41 | |
42 | - $this->checkExistence($url,$protocol); |
|
42 | + $this->checkExistence($url, $protocol); |
|
43 | 43 | $this->checkTypeRole($walking); |
44 | 44 | |
45 | 45 | $route = [ |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | public static function group(string $prefix, callable $callback): Router |
64 | 64 | { |
65 | - self::getInstance()->prefix = (substr($prefix,0,1) !== '/') ? "/{$prefix}" : $prefix; |
|
65 | + self::getInstance()->prefix = (substr($prefix, 0, 1) !== '/') ? "/{$prefix}" : $prefix; |
|
66 | 66 | self::getInstance()->group = sha1(date('d/m/Y h:m:i')); |
67 | 67 | $callback(); |
68 | 68 | self::getInstance()->group = null; |
@@ -82,11 +82,11 @@ discard block |
||
82 | 82 | |
83 | 83 | $currentRoute = end(self::getInstance()->routers); |
84 | 84 | |
85 | - if(in_array($name,self::getInstance()->beforeExcepts)){ |
|
85 | + if (in_array($name, self::getInstance()->beforeExcepts)) { |
|
86 | 86 | $currentRoute['beforeAll'] = null; |
87 | 87 | } |
88 | 88 | |
89 | - if(in_array($name,self::getInstance()->afterExcepts)){ |
|
89 | + if (in_array($name, self::getInstance()->afterExcepts)) { |
|
90 | 90 | $currentRoute['afterAll'] = null; |
91 | 91 | } |
92 | 92 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | { |
107 | 107 | $instance = self::create()->getInstance(); |
108 | 108 | |
109 | - if(!$instance->loaded){ |
|
109 | + if (!$instance->loaded) { |
|
110 | 110 | self::load($routeName); |
111 | 111 | } |
112 | 112 | |
@@ -117,36 +117,36 @@ discard block |
||
117 | 117 | |
118 | 118 | public function middleware($filters): Router |
119 | 119 | { |
120 | - if($this->lastReturn !== null){ |
|
120 | + if ($this->lastReturn !== null) { |
|
121 | 121 | $currentGroup = end($this->routers)['group']; |
122 | 122 | |
123 | 123 | foreach ($this->routers as $key => $value) { |
124 | - if($value['group'] === $currentGroup){ |
|
125 | - $this->routers[$key] = $this->addMiddleware($this->routers[$key],$filters); |
|
124 | + if ($value['group'] === $currentGroup) { |
|
125 | + $this->routers[$key] = $this->addMiddleware($this->routers[$key], $filters); |
|
126 | 126 | } |
127 | 127 | } |
128 | 128 | |
129 | 129 | return $this; |
130 | 130 | } |
131 | 131 | |
132 | - $this->routers[count($this->routers)-1] = $this->addMiddleware(end($this->routers),$filters); |
|
132 | + $this->routers[count($this->routers)-1] = $this->addMiddleware(end($this->routers), $filters); |
|
133 | 133 | return $this; |
134 | 134 | } |
135 | 135 | |
136 | 136 | public static function addMiddleware(array $route, $filter): array |
137 | 137 | { |
138 | - if(is_null($route['filters'])){ |
|
138 | + if (is_null($route['filters'])) { |
|
139 | 139 | $route['filters'] = $filter; |
140 | 140 | return $route; |
141 | 141 | } |
142 | 142 | |
143 | 143 | $filters = (is_array($filter)) ? $filter : [0 => $filter]; |
144 | 144 | |
145 | - if(is_array($route['filters'])){ |
|
145 | + if (is_array($route['filters'])) { |
|
146 | 146 | foreach ($route['filters'] as $key => $value) { |
147 | 147 | $filters[] = $value; |
148 | 148 | } |
149 | - }else{ |
|
149 | + }else { |
|
150 | 150 | $filters[] = $route['filters']; |
151 | 151 | } |
152 | 152 |