| @@ -64,7 +64,7 @@ | ||
| 64 | 64 | } | 
| 65 | 65 | |
| 66 | 66 | /** | 
| 67 | - * @param $regex | |
| 67 | + * @param string $regex | |
| 68 | 68 | * @return bool | 
| 69 | 69 | */ | 
| 70 | 70 | private function routeMatch($regex) | 
| @@ -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', | 
| @@ -30,10 +30,11 @@ discard block | ||
| 30 | 30 | */ | 
| 31 | 31 | public function call() | 
| 32 | 32 |      { | 
| 33 | -        if ($this->route->getResponse('code') == 202) | |
| 34 | -            switch ($this->route->getTarget('extension')) { | |
| 33 | +        if ($this->route->getResponse('code') == 202) {
 | |
| 34 | +                    switch ($this->route->getTarget('extension')) { | |
| 35 | 35 | case 'json': | 
| 36 | - $this->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'application/json']); | |
| 36 | + $this->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'application/json']); | |
| 37 | + } | |
| 37 | 38 |                      header('Content-Type: application/json'); | 
| 38 | 39 | break; | 
| 39 | 40 | case 'xml': | 
| @@ -44,10 +45,11 @@ discard block | ||
| 44 | 45 | $this->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']); | 
| 45 | 46 | break; | 
| 46 | 47 | } | 
| 47 | -        if (isset($this->route->getTarget()['callback'][$this->route->getTarget('extension')])) | |
| 48 | -            call_user_func_array($this->route->getTarget()['callback'][$this->route->getTarget('extension')], [$this->route]); | |
| 49 | - else | |
| 50 | -            require($this->route->getTarget('template')); | |
| 48 | +        if (isset($this->route->getTarget()['callback'][$this->route->getTarget('extension')])) {
 | |
| 49 | +                    call_user_func_array($this->route->getTarget()['callback'][$this->route->getTarget('extension')], [$this->route]);
 | |
| 50 | +        } else {
 | |
| 51 | +                    require($this->route->getTarget('template'));
 | |
| 52 | + } | |
| 51 | 53 | } | 
| 52 | 54 | |
| 53 | 55 | } | 
| @@ -28,11 +28,14 @@ discard block | ||
| 28 | 28 | */ | 
| 29 | 29 | public function globalMiddleware() | 
| 30 | 30 |      { | 
| 31 | - if (isset($this->router->collection->middleware['global_middleware'])) | |
| 32 | -            foreach ($this->router->collection->middleware['global_middleware'] as $mid) { | |
| 31 | +        if (isset($this->router->collection->middleware['global_middleware'])) {
 | |
| 32 | +                    foreach ($this->router->collection->middleware['global_middleware'] as $mid) { | |
| 33 | 33 |                  if (class_exists($mid)) { | 
| 34 | - $mid_global = new $mid; | |
| 35 | - if (method_exists($mid_global, 'handle')) $mid_global->handle($this->router->route); | |
| 34 | + $mid_global = new $mid; | |
| 35 | + } | |
| 36 | +                    if (method_exists($mid_global, 'handle')) {
 | |
| 37 | + $mid_global->handle($this->router->route); | |
| 38 | + } | |
| 36 | 39 | } | 
| 37 | 40 | } | 
| 38 | 41 | } | 
| @@ -42,11 +45,14 @@ discard block | ||
| 42 | 45 | */ | 
| 43 | 46 | public function blockMiddleware() | 
| 44 | 47 |      { | 
| 45 | - if (isset($this->router->collection->middleware['block_middleware'])) | |
| 46 | -            if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()])) { | |
| 47 | - $class = $this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]; | |
| 48 | +        if (isset($this->router->collection->middleware['block_middleware'])) {
 | |
| 49 | +                    if (isset($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]) && class_exists($this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()])) { | |
| 50 | + $class = $this->router->collection->middleware['block_middleware'][$this->router->route->getBlock()]; | |
| 51 | + } | |
| 48 | 52 | $mid_block = new $class; | 
| 49 | - if (method_exists($mid_block, 'handle')) $mid_block->handle($this->router->route); | |
| 53 | +                if (method_exists($mid_block, 'handle')) {
 | |
| 54 | + $mid_block->handle($this->router->route); | |
| 55 | + } | |
| 50 | 56 | } | 
| 51 | 57 | } | 
| 52 | 58 | |
| @@ -60,7 +66,9 @@ discard block | ||
| 60 | 66 |              if (isset($this->router->collection->middleware['class_middleware'][$ctrl]) && class_exists($this->router->route->getTarget('controller'))) { | 
| 61 | 67 | $class = $this->router->collection->middleware['class_middleware'][$ctrl]; | 
| 62 | 68 | $mid_class = new $class; | 
| 63 | - if (method_exists($mid_class, 'handle')) $mid_class->handle($this->router->route); | |
| 69 | +                if (method_exists($mid_class, 'handle')) {
 | |
| 70 | + $mid_class->handle($this->router->route); | |
| 71 | + } | |
| 64 | 72 | } | 
| 65 | 73 | } | 
| 66 | 74 | } | 
| @@ -70,11 +78,14 @@ discard block | ||
| 70 | 78 | */ | 
| 71 | 79 | public function routeMiddleware() | 
| 72 | 80 |      { | 
| 73 | - if (isset($this->router->collection->middleware['route_middleware'])) | |
| 74 | -            if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) { | |
| 75 | - $class = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']]; | |
| 81 | +        if (isset($this->router->collection->middleware['route_middleware'])) {
 | |
| 82 | +                    if (isset($this->router->route->getPath()['middleware']) && class_exists($this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']])) { | |
| 83 | + $class = $this->router->collection->middleware['route_middleware'][$this->router->route->getPath()['middleware']]; | |
| 84 | + } | |
| 76 | 85 | $mid_route = new $class; | 
| 77 | - if (method_exists($mid_route, 'handle')) $mid_route->handle($this->router->route); | |
| 86 | +                if (method_exists($mid_route, 'handle')) {
 | |
| 87 | + $mid_route->handle($this->router->route); | |
| 88 | + } | |
| 78 | 89 | } | 
| 79 | 90 | } | 
| 80 | 91 | |
| @@ -62,11 +62,21 @@ discard block | ||
| 62 | 62 | */ | 
| 63 | 63 | public function set($args = []) | 
| 64 | 64 |      { | 
| 65 | - if (isset($args['name'])) $this->name = $args['name']; | |
| 66 | - if (isset($args['callback'])) $this->callback = $args['callback']; | |
| 67 | - if (isset($args['code'])) $this->response['code'] = $args['code']; | |
| 68 | - if (isset($args['target'])) $this->target = $args['target']; | |
| 69 | - if (isset($args['detail'])) $this->detail = $args['detail']; | |
| 65 | +        if (isset($args['name'])) {
 | |
| 66 | + $this->name = $args['name']; | |
| 67 | + } | |
| 68 | +        if (isset($args['callback'])) {
 | |
| 69 | + $this->callback = $args['callback']; | |
| 70 | + } | |
| 71 | +        if (isset($args['code'])) {
 | |
| 72 | + $this->response['code'] = $args['code']; | |
| 73 | + } | |
| 74 | +        if (isset($args['target'])) {
 | |
| 75 | + $this->target = $args['target']; | |
| 76 | + } | |
| 77 | +        if (isset($args['detail'])) {
 | |
| 78 | + $this->detail = $args['detail']; | |
| 79 | + } | |
| 70 | 80 | } | 
| 71 | 81 | |
| 72 | 82 | /** | 
| @@ -123,8 +133,9 @@ discard block | ||
| 123 | 133 | */ | 
| 124 | 134 | public function getResponse($key = null) | 
| 125 | 135 |      { | 
| 126 | - if (!is_null($key) && isset($this->response[$key])) | |
| 127 | - return $this->response[$key]; | |
| 136 | +        if (!is_null($key) && isset($this->response[$key])) {
 | |
| 137 | + return $this->response[$key]; | |
| 138 | + } | |
| 128 | 139 | return $this->response; | 
| 129 | 140 | } | 
| 130 | 141 | |
| @@ -134,10 +145,11 @@ discard block | ||
| 134 | 145 | */ | 
| 135 | 146 | public function setResponse($key = null, $value = null) | 
| 136 | 147 |      { | 
| 137 | - if (!is_null($key) && !is_null($value)) | |
| 138 | - $this->response[$key] = $value; | |
| 139 | - else | |
| 140 | - $this->response = array_merge($this->response, $key); | |
| 148 | +        if (!is_null($key) && !is_null($value)) {
 | |
| 149 | + $this->response[$key] = $value; | |
| 150 | +        } else {
 | |
| 151 | + $this->response = array_merge($this->response, $key); | |
| 152 | + } | |
| 141 | 153 | } | 
| 142 | 154 | |
| 143 | 155 | /** | 
| @@ -179,8 +191,9 @@ discard block | ||
| 179 | 191 | */ | 
| 180 | 192 | public function getTarget($key = null) | 
| 181 | 193 |      { | 
| 182 | - if (!is_null($key)) | |
| 183 | - return isset($this->target[$key]) ? $this->target[$key] : ''; | |
| 194 | +        if (!is_null($key)) {
 | |
| 195 | + return isset($this->target[$key]) ? $this->target[$key] : ''; | |
| 196 | + } | |
| 184 | 197 | return empty($this->target) ? '' : $this->target; | 
| 185 | 198 | } | 
| 186 | 199 | |
| @@ -199,8 +212,9 @@ discard block | ||
| 199 | 212 | */ | 
| 200 | 213 | public function hasTarget($key = null) | 
| 201 | 214 |      { | 
| 202 | - if (!is_null($key)) | |
| 203 | - return isset($this->target[$key]) ? true : false; | |
| 215 | +        if (!is_null($key)) {
 | |
| 216 | + return isset($this->target[$key]) ? true : false; | |
| 217 | + } | |
| 204 | 218 | return empty($this->target) ? false : true; | 
| 205 | 219 | } | 
| 206 | 220 | |
| @@ -33,7 +33,9 @@ discard block | ||
| 33 | 33 | */ | 
| 34 | 34 | public function __construct($routes = null, $options = []) | 
| 35 | 35 |      { | 
| 36 | - if (!is_null($routes) || !empty($options)) $this->addRoutes($routes, $options); | |
| 36 | +        if (!is_null($routes) || !empty($options)) {
 | |
| 37 | + $this->addRoutes($routes, $options); | |
| 38 | + } | |
| 37 | 39 | } | 
| 38 | 40 | |
| 39 | 41 | /** | 
| @@ -43,10 +45,16 @@ discard block | ||
| 43 | 45 | public function addRoutes($routes = null, $options = []) | 
| 44 | 46 |      { | 
| 45 | 47 |          if(!is_null($routes) && !is_array($routes)) { | 
| 46 | - if (strpos($routes, '.php') === false) $routes = trim($routes, '/') . '/'; | |
| 47 | - if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) $routes = $routesFile; | |
| 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'); | |
| 48 | +            if (strpos($routes, '.php') === false) {
 | |
| 49 | + $routes = trim($routes, '/') . '/'; | |
| 50 | + } | |
| 51 | +            if (is_file($routes . '/routes.php') && is_array($routesFile = include $routes . '/routes.php')) {
 | |
| 52 | + $routes = $routesFile; | |
| 53 | +            } elseif (is_file($routes) && is_array($routesFile = include $routes)) {
 | |
| 54 | + $routes = $routesFile; | |
| 55 | +            } else {
 | |
| 56 | +                throw new \InvalidArgumentException('Argument for "' . get_called_class() . '" constructor is not recognized. Expected argument array or file containing array but "'.$routes.'" given');
 | |
| 57 | + } | |
| 50 | 58 | } | 
| 51 | 59 | $this->routes['routes_' . $this->countRoutes] = is_array($routes) ? $routes : []; | 
| 52 | 60 | $this->routes['path_' . $this->countRoutes] = (isset($options['path']) && !empty($options['path'])) ? rtrim($options['path'], '/') . '/' : ''; | 
| @@ -61,8 +69,9 @@ discard block | ||
| 61 | 69 | */ | 
| 62 | 70 | public function getRoutes($key = null) | 
| 63 | 71 |      { | 
| 64 | - if(!is_null($key)) | |
| 65 | - return isset($this->routes[$key])?$this->routes[$key]:''; | |
| 72 | +        if(!is_null($key)) {
 | |
| 73 | + return isset($this->routes[$key])?$this->routes[$key]:''; | |
| 74 | + } | |
| 66 | 75 | return $this->routes; | 
| 67 | 76 | } | 
| 68 | 77 | |
| @@ -73,12 +82,18 @@ discard block | ||
| 73 | 82 |      { | 
| 74 | 83 |          if (is_array($args)) { | 
| 75 | 84 | $nbrArgs = count($args); | 
| 76 | - for ($i = 0; $i < $nbrArgs; ++$i) | |
| 77 | - $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/'); | |
| 78 | - } elseif (is_string($args)) | |
| 79 | - for ($i = 0; $i < $this->countRoutes; ++$i) | |
| 80 | - $this->routes['prefix_' . $i] = '/' . trim($args, '/'); | |
| 81 | - if($this->countRoutes == 0)$this->countRoutes++; | |
| 85 | +            for ($i = 0; $i < $nbrArgs; ++$i) {
 | |
| 86 | + $this->routes['prefix_' . $i] = '/' . trim($args[$i], '/'); | |
| 87 | + } | |
| 88 | +        } elseif (is_string($args)) {
 | |
| 89 | + for ($i = 0; | |
| 90 | + } | |
| 91 | +        $i < $this->countRoutes; ++$i) {
 | |
| 92 | + $this->routes['prefix_' . $i] = '/' . trim($args, '/'); | |
| 93 | + } | |
| 94 | +        if($this->countRoutes == 0) {
 | |
| 95 | + $this->countRoutes++; | |
| 96 | + } | |
| 82 | 97 | } | 
| 83 | 98 | |
| 84 | 99 | /** | 
| @@ -92,10 +107,14 @@ discard block | ||
| 92 | 107 | $this->routes['path_' . $i] = (isset($args[$i]['path']) && !empty($args[$i]['path'])) ? rtrim($args[$i]['path'], '/') . '/' : ''; | 
| 93 | 108 | $this->routes['namespace_' . $i] = (isset($args[$i]['namespace']) && !empty($args[$i]['namespace'])) ? trim($args[$i]['namespace'], '\\') . '\\' : ''; | 
| 94 | 109 | $this->routes['prefix_' . $i] = (isset($args[$i]['prefix']) && !empty($args[$i]['prefix'])) ? '/'.trim($args[$i]['prefix'], '/') : ''; | 
| 95 | - if(!isset($this->routes['routes_' . $i]))$this->routes['routes_' . $i] = []; | |
| 110 | +                if(!isset($this->routes['routes_' . $i])) {
 | |
| 111 | + $this->routes['routes_' . $i] = []; | |
| 112 | + } | |
| 96 | 113 | } | 
| 97 | 114 | } | 
| 98 | - if($this->countRoutes == 0)$this->countRoutes++; | |
| 115 | +        if($this->countRoutes == 0) {
 | |
| 116 | + $this->countRoutes++; | |
| 117 | + } | |
| 99 | 118 | } | 
| 100 | 119 | |
| 101 | 120 | /** | 
| @@ -104,12 +123,16 @@ discard block | ||
| 104 | 123 | */ | 
| 105 | 124 | public function setMiddleware($middleware) | 
| 106 | 125 |      { | 
| 107 | - if (is_string($middleware)) $middleware = rtrim($middleware, '/'); | |
| 108 | - if (is_file($middleware) && is_array($mid = include $middleware)) | |
| 109 | - $this->middleware = $mid; | |
| 110 | - elseif (is_array($middleware)) | |
| 111 | - $this->middleware = $middleware; | |
| 112 | -        else throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file'); | |
| 126 | +        if (is_string($middleware)) {
 | |
| 127 | + $middleware = rtrim($middleware, '/'); | |
| 128 | + } | |
| 129 | +        if (is_file($middleware) && is_array($mid = include $middleware)) {
 | |
| 130 | + $this->middleware = $mid; | |
| 131 | +        } elseif (is_array($middleware)) {
 | |
| 132 | + $this->middleware = $middleware; | |
| 133 | +        } else {
 | |
| 134 | +            throw new \InvalidArgumentException('Accepted argument for setMiddleware are array and array file');
 | |
| 135 | + } | |
| 113 | 136 | } | 
| 114 | 137 | |
| 115 | 138 | /** | 
| @@ -121,12 +144,13 @@ discard block | ||
| 121 | 144 | $count = 0; | 
| 122 | 145 |          for ($i = 0; $i < $this->countRoutes; ++$i) { | 
| 123 | 146 | $prefix = (isset($this->routes['prefix_' . $i])) ? $this->routes['prefix_' . $i] : ''; | 
| 124 | - if (isset($this->routes['routes_' . $i])) | |
| 125 | -                foreach ($this->routes['routes_' . $i] as $route => $dependencies) { | |
| 147 | +            if (isset($this->routes['routes_' . $i])) {
 | |
| 148 | +                            foreach ($this->routes['routes_' . $i] as $route => $dependencies) { | |
| 126 | 149 | if (is_array($dependencies) && isset($dependencies['use'])) | 
| 127 | - $use = (is_object($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); | |
| 128 | - else | |
| 129 | - $use = (is_object($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); | |
| 150 | + $use = (is_object($dependencies['use'])) ? 'closure-' . $count : trim($dependencies['use'], '/'); | |
| 151 | +            } else {
 | |
| 152 | + $use = (is_object($dependencies)) ? 'closure-' . $count : trim($dependencies, '/'); | |
| 153 | + } | |
| 130 | 154 | (!is_object($dependencies) && isset($dependencies['name'])) ? $this->routesByName[$use . '#' . $dependencies['name']] = $root . $prefix . $route : $this->routesByName[$use] = $root . $prefix . $route; | 
| 131 | 155 | $count++; | 
| 132 | 156 | } | 
| @@ -143,9 +167,14 @@ discard block | ||
| 143 | 167 |      { | 
| 144 | 168 |          foreach ($this->routesByName as $key => $route) { | 
| 145 | 169 |              $param = explode('#', $key); | 
| 146 | -            foreach ($params as $key2 => $value) $route = str_replace(':' . $key2, $value, $route); | |
| 147 | - if ($param[0] == trim($name, '/')) return $route; | |
| 148 | - else if (isset($param[1]) && $param[1] == $name) return $route; | |
| 170 | +            foreach ($params as $key2 => $value) {
 | |
| 171 | +                $route = str_replace(':' . $key2, $value, $route);
 | |
| 172 | + } | |
| 173 | +            if ($param[0] == trim($name, '/')) {
 | |
| 174 | + return $route; | |
| 175 | +            } else if (isset($param[1]) && $param[1] == $name) {
 | |
| 176 | + return $route; | |
| 177 | + } | |
| 149 | 178 | } | 
| 150 | 179 | return null; | 
| 151 | 180 | } | 
| @@ -31,7 +31,9 @@ | ||
| 31 | 31 | */ | 
| 32 | 32 | public function call() | 
| 33 | 33 |      { | 
| 34 | -        if ($this->route->getResponse('code') == 202) $this->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']); | |
| 34 | +        if ($this->route->getResponse('code') == 202) {
 | |
| 35 | + $this->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']); | |
| 36 | + } | |
| 35 | 37 | $params = ($this->route->getParameters() == '') ? [] : $this->route->getParameters(); | 
| 36 | 38 |          echo call_user_func_array($this->route->getTarget('closure'), $params); | 
| 37 | 39 | } | 
| @@ -40,8 +40,9 @@ discard block | ||
| 40 | 40 |                  array_unshift($dependencies, call_user_func_array($this->route->getTarget('di'),[$class])); | 
| 41 | 41 | } | 
| 42 | 42 | } | 
| 43 | -        if ($this->route->getResponse('code') == 202) | |
| 44 | - $this->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']); | |
| 43 | +        if ($this->route->getResponse('code') == 202) {
 | |
| 44 | + $this->route->setResponse(['code' => 200, 'message' => 'OK', 'type' => 'text/html']); | |
| 45 | + } | |
| 45 | 46 | return $reflectionMethod->invokeArgs($this->getController(), $dependencies); | 
| 46 | 47 | } | 
| 47 | 48 | |
| @@ -53,8 +54,9 @@ discard block | ||
| 53 | 54 | private function getController() | 
| 54 | 55 |      { | 
| 55 | 56 |          $reflector = new ReflectionClass($this->route->getTarget('controller')); | 
| 56 | - if (!$reflector->isInstantiable()) | |
| 57 | -            throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.'); | |
| 57 | +        if (!$reflector->isInstantiable()) {
 | |
| 58 | +                    throw new \Exception('Target [' . $this->route->getTarget('controller') . '] is not instantiable.');
 | |
| 59 | + } | |
| 58 | 60 | $constructor = $reflector->getConstructor(); | 
| 59 | 61 |          if (is_null($constructor)) { | 
| 60 | 62 |              $class = $this->route->getTarget('controller'); | 
| @@ -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')); |