public function ProjectUrlMatcher::match

Tries to match a URL path with a set of routes.

If the matcher can not find information, it must throw one of the exceptions documented below.

@api

Parameters

string $pathinfo The path info to be parsed (raw format, i.e. not urldecoded):

Return value

array An array of parameters

Throws

ResourceNotFoundException If the resource could not be found

MethodNotAllowedException If the resource was found but the request method is not allowed

Overrides UrlMatcher::match

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher1.php, line 23

Class

ProjectUrlMatcher
ProjectUrlMatcher

Code

public function match($pathinfo) {
  $allow = array();
  $pathinfo = rawurldecode($pathinfo);

  // foo
  if (0 === strpos($pathinfo, '/foo') && preg_match('#^/foo/(?<bar>baz|symfony)$#s', $pathinfo, $matches)) {
    return array_merge($this
      ->mergeDefaults($matches, array(
      'def' => 'test',
    )), array(
      '_route' => 'foo',
    ));
  }

  // bar
  if (0 === strpos($pathinfo, '/bar') && preg_match('#^/bar/(?<foo>[^/]+)$#s', $pathinfo, $matches)) {
    if (!in_array($this->context
      ->getMethod(), array(
      'GET',
      'HEAD',
    ))) {
      $allow = array_merge($allow, array(
        'GET',
        'HEAD',
      ));
      goto not_bar;
    }
    $matches['_route'] = 'bar';
    return $matches;
  }
  not_bar:

  // barhead
  if (0 === strpos($pathinfo, '/barhead') && preg_match('#^/barhead/(?<foo>[^/]+)$#s', $pathinfo, $matches)) {
    if (!in_array($this->context
      ->getMethod(), array(
      'GET',
      'HEAD',
    ))) {
      $allow = array_merge($allow, array(
        'GET',
        'HEAD',
      ));
      goto not_barhead;
    }
    $matches['_route'] = 'barhead';
    return $matches;
  }
  not_barhead:

  // baz
  if ($pathinfo === '/test/baz') {
    return array(
      '_route' => 'baz',
    );
  }

  // baz2
  if ($pathinfo === '/test/baz.html') {
    return array(
      '_route' => 'baz2',
    );
  }

  // baz3
  if ($pathinfo === '/test/baz3/') {
    return array(
      '_route' => 'baz3',
    );
  }

  // baz4
  if (0 === strpos($pathinfo, '/test') && preg_match('#^/test/(?<foo>[^/]+)/$#s', $pathinfo, $matches)) {
    $matches['_route'] = 'baz4';
    return $matches;
  }

  // baz5
  if (0 === strpos($pathinfo, '/test') && preg_match('#^/test/(?<foo>[^/]+)/$#s', $pathinfo, $matches)) {
    if ($this->context
      ->getMethod() != 'POST') {
      $allow[] = 'POST';
      goto not_baz5;
    }
    $matches['_route'] = 'baz5';
    return $matches;
  }
  not_baz5:

  // baz.baz6
  if (0 === strpos($pathinfo, '/test') && preg_match('#^/test/(?<foo>[^/]+)/$#s', $pathinfo, $matches)) {
    if ($this->context
      ->getMethod() != 'PUT') {
      $allow[] = 'PUT';
      goto not_bazbaz6;
    }
    $matches['_route'] = 'baz.baz6';
    return $matches;
  }
  not_bazbaz6:

  // foofoo
  if ($pathinfo === '/foofoo') {
    return array(
      'def' => 'test',
      '_route' => 'foofoo',
    );
  }

  // quoter
  if (preg_match('#^/(?<quoter>[\']+)$#s', $pathinfo, $matches)) {
    $matches['_route'] = 'quoter';
    return $matches;
  }

  // space
  if ($pathinfo === '/spa ce') {
    return array(
      '_route' => 'space',
    );
  }
  if (0 === strpos($pathinfo, '/a')) {
    if (0 === strpos($pathinfo, '/a/b\'b')) {

      // foo1
      if (preg_match('#^/a/b\'b/(?<foo>[^/]+)$#s', $pathinfo, $matches)) {
        $matches['_route'] = 'foo1';
        return $matches;
      }

      // bar1
      if (preg_match('#^/a/b\'b/(?<bar>[^/]+)$#s', $pathinfo, $matches)) {
        $matches['_route'] = 'bar1';
        return $matches;
      }
    }

    // overridden
    if (preg_match('#^/a/(?<var>.*)$#s', $pathinfo, $matches)) {
      $matches['_route'] = 'overridden';
      return $matches;
    }
    if (0 === strpos($pathinfo, '/a/b\'b')) {

      // foo2
      if (preg_match('#^/a/b\'b/(?<foo1>[^/]+)$#s', $pathinfo, $matches)) {
        $matches['_route'] = 'foo2';
        return $matches;
      }

      // bar2
      if (preg_match('#^/a/b\'b/(?<bar1>[^/]+)$#s', $pathinfo, $matches)) {
        $matches['_route'] = 'bar2';
        return $matches;
      }
    }
  }
  if (0 === strpos($pathinfo, '/multi')) {

    // helloWorld
    if (0 === strpos($pathinfo, '/multi/hello') && preg_match('#^/multi/hello(?:/(?<who>[^/]+))?$#s', $pathinfo, $matches)) {
      return array_merge($this
        ->mergeDefaults($matches, array(
        'who' => 'World!',
      )), array(
        '_route' => 'helloWorld',
      ));
    }

    // overridden2
    if ($pathinfo === '/multi/new') {
      return array(
        '_route' => 'overridden2',
      );
    }

    // hey
    if ($pathinfo === '/multi/hey/') {
      return array(
        '_route' => 'hey',
      );
    }
  }

  // foo3
  if (preg_match('#^/(?<_locale>[^/]+)/b/(?<foo>[^/]+)$#s', $pathinfo, $matches)) {
    $matches['_route'] = 'foo3';
    return $matches;
  }

  // bar3
  if (preg_match('#^/(?<_locale>[^/]+)/b/(?<bar>[^/]+)$#s', $pathinfo, $matches)) {
    $matches['_route'] = 'bar3';
    return $matches;
  }

  // ababa
  if ($pathinfo === '/ababa') {
    return array(
      '_route' => 'ababa',
    );
  }

  // foo4
  if (0 === strpos($pathinfo, '/aba') && preg_match('#^/aba/(?<foo>[^/]+)$#s', $pathinfo, $matches)) {
    $matches['_route'] = 'foo4';
    return $matches;
  }
  if (0 === strpos($pathinfo, '/a')) {

    // a
    if ($pathinfo === '/a/a...') {
      return array(
        '_route' => 'a',
      );
    }
    if (0 === strpos($pathinfo, '/a/b')) {

      // b
      if (preg_match('#^/a/b/(?<var>[^/]+)$#s', $pathinfo, $matches)) {
        $matches['_route'] = 'b';
        return $matches;
      }

      // c
      if (0 === strpos($pathinfo, '/a/b/c') && preg_match('#^/a/b/c/(?<var>[^/]+)$#s', $pathinfo, $matches)) {
        $matches['_route'] = 'c';
        return $matches;
      }
    }
  }
  throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException();
}