Esempio n. 1
0
 /**
  * 
  * @param \PHPLegends\Routes\Route $route
  * @return callable
  * */
 protected function buildRouteAction(Route $route)
 {
     $action = $route->getAction();
     if ($action instanceof \Closure) {
         return $action;
     }
     return [new $action[0](), $action[1]];
 }
Esempio n. 2
0
 public function testToUri()
 {
     $fn = function () {
     };
     $r1 = new Route('/home/{str}/{num}', $fn);
     $r2 = new Route('/home/{str}/{num?}', $fn);
     $r3 = new Route('/home/{str}/{str}', $fn);
     $r4 = new Route('/home/', $fn);
     $r5 = new Route('/home/{str?}', $fn);
     $r6 = new Route('/home/{date?}', $fn);
     $r7 = new Route('/home/{date}', $fn);
     $this->assertEquals('/home/segment-string/3', $r1->toUri(['segment-string', '3']));
     $this->assertEquals('/home/2', $r2->toUri([2]));
     $this->assertEquals('/home/cat/4', $r2->toUri(['cat', 4]));
     $this->assertEquals('/home/2/1', $r3->toUri([2, 1]));
     $this->assertEquals('/home', $r4->toUri([2, 1]));
     $this->assertEquals('/home', $r5->toUri([null]));
     $this->assertEquals('/home', $r5->toUri());
     $this->assertEquals('/home/contact', $r5->toUri(['contact']));
     $this->assertEquals('/home', $r6->toUri());
     $this->assertEquals('/home/2016/07/02', $r6->toUri(['2016/07/02']));
     try {
         $this->assertEquals('/home', $r7->toUri());
     } catch (\Exception $e) {
         $this->assertInstanceOf('UnexpectedValueException', $e);
     }
 }
Esempio n. 3
0
 /**
  * Create a new route instance and attach to Collection
  *
  * @param array $verbs
  * @param string $pattern
  * @param string $action
  * @param null|string $name
  * @return \PHPLegends\Routes\Route
  * */
 public function addRoute(array $verbs, $pattern, $action, $name = null)
 {
     $pattern = $this->resolvePatternValue($pattern);
     $action = $this->resolveActionValue($action);
     $name = $this->resolveNameValue($name);
     $route = new Route($pattern, $action, $verbs, $name);
     if ($filters = $this->getDefaultFilters()) {
         $route->setFilters($filters);
     }
     $this->routes->add($route);
     return $route;
 }
Esempio n. 4
0
 /**
  * 
  * @param Route $route
  * @return null | mixed
  * */
 public function filterByRoute(Route $route)
 {
     return $this->filter(function ($filter) use($route) {
         return $route->hasFilter($filter->getName());
     });
 }