Skip to content

Latest commit

 

History

History
475 lines (349 loc) · 11.7 KB

Router.md

File metadata and controls

475 lines (349 loc) · 11.7 KB

Atanvarno\Router\Router

Interface for PSR-7 HTTP request routers built on top of FastRoute.

interface Router extends RequestMethodInterface
{
    // Constants
    public const DRIVER_CHAR_COUNT
    public const DRIVER_GROUP_COUNT
    public const DRIVER_GROUP_POS
    public const DRIVER_MARK
    public const METHOD_CONNECT
    public const METHOD_DELETE
    public const METHOD_GET
    public const METHOD_HEAD
    public const METHOD_OPTIONS
    public const METHOD_PATCH
    public const METHOD_POST
    public const METHOD_PURGE
    public const METHOD_PUT
    public const METHOD_TRACE
    
    // Methods
    public function add($methods, string $pattern, $handler): Router
    public function addGroup(string $patternPrefix, array $routes): Router
    public function connect(string $pattern, $handler): Router
    public function delete(string $pattern, $handler): Router
    public function dispatch(RequestInterface $request, bool $exceptions = false): array
    public function get(string $pattern, $handler): Router
    public function head(string $pattern, $handler): Router
    public function options(string $pattern, $handler): Router
    public function patch(string $pattern, $handler): Router
    public function post(string $pattern, $handler): Router
    public function purge(string $pattern, $handler): Router
    public function put(string $pattern, $handler): Router
    public function trace(string $pattern, $handler): Router
}

Extends Fig\Http\Message\RequestMethodInterface.

add

Adds a route.

add($methods, string $pattern, $handler): Router

Accepts an uppercase HTTP method string for which a certain route should match. It is possible to specify multiple valid methods using an array. You may use the Router::METHOD_* constants here.

Accepts a pattern to match against a URL path. By default the pattern uses a syntax where {foo} specifies a placeholder with name foo and matching the regex [^/]+. To adjust the pattern the placeholder matches, you can specify a custom pattern by writing {bar:[0-9]+}. Some examples:

// Matches /user/42, but not /user/xyz
$router->add(Router::METHOD_GET, '/user/{id:\d+}', 'handler');

// Matches /user/foobar, but not /user/foo/bar
$router->add(Router::METHOD_GET, '/user/{name}', 'handler');

// Matches /user/foo/bar as well
$router->add(Router::METHOD_GET, '/user/{name:.+}', 'handler');

Custom patterns for route placeholders cannot use capturing groups. For example {lang:(en|de)} is not a valid placeholder, because () is a capturing group. Instead you can use either {lang:en|de} or {lang:(?:en|de)}.

Furthermore parts of the route enclosed in [...] are considered optional, so that /foo[bar] will match both /foo and /foobar. Optional parts are only supported in a trailing position, not in the middle of a route.

// This route
$router->add(Router::METHOD_GET, '/user/{id:\d+}[/{name}]', 'handler');
// Is equivalent to these two routes
$router->add(Router::METHOD_GET, '/user/{id:\d+}', 'handler');
$router->add(Router::METHOD_GET, '/user/{id:\d+}/{name}', 'handler');

// Multiple nested optional parts are possible as well
$router->add(Router::METHOD_GET, '/user[/{id:\d+}[/{name}]]', 'handler');

// This route is NOT valid, as optional parts can only occur at the end
$router->add(Router::METHOD_GET, '/user[/{id:\d+}]/{name}', 'handler');

Accepts a handler of any value. The handler does not necessarily have to be a callback, it could also be a controller class name or any other kind of data you wish to associate with the route. The dispatch() method only tells you which handler corresponds to your URI, how you interpret it is up to you.

Parameters

  • string|string[] $methods

    Required. HTTP method(s) for the route.

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Returns

addGroup

Adds a group of routes.

addGroup(string $patternPrefix, array $routes): Router

All routes defined inside a group will have a common prefix. For example:

$router->addGroup(
    '/admin',
    [
        [Router::METHOD_GET, '/do-something', 'handler'],
        [Router::METHOD_GET, '/do-another-thing', 'handler'],
        [Router::METHOD_GET, '/do-something-else', 'handler'],
    ]
);
// Will have the same result as:
$router->add(Router::METHOD_GET, '/admin/do-something', 'handler');
$router->add(Router::METHOD_GET, '/admin/do-another-thing', 'handler');
$router->add(Router::METHOD_GET, '/admin/do-something-else', 'handler');

Parameters

  • string $patternPrefix

    Required. Group prefix pattern.

  • array $routes

    Required. Array of add() parameter values.

Throws

Returns

connect

Adds a CONNECT method route.

connect(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

delete

Adds a DELETE method route.

delete(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

dispatch

Dispatches a PSR-7 request.

dispatch(RequestInterface $request, bool $exceptions = false): array

Returns an array whose first element contains a status code, one of:

  • FastRoute\Dispatcher::NOT_FOUND
  • FastRoute\Dispatcher::METHOD_NOT_ALLOWED
  • FastRoute\Dispatcher::FOUND

For the method not allowed status the second array element contains a list of HTTP methods allowed for the supplied request's URI. For example:

[
    FastRoute\Dispatcher::METHOD_NOT_ALLOWED,
    [Router::METHOD_GET, Router::METHOD_POST]
]

NOTE: The HTTP specification requires that a 405 Method Not Allowed response include the Allow: header to detail available methods for the requested resource. Applications using Atanvarno\Router should use the second array element to add this header when relaying a 405 response.

For the found status the second array element is the handler that was associated with the route and the third array element is a dictionary of placeholder names to their values. For example:

// Routing against GET /user/atanvarno/42
[
    FastRoute\Dispatcher::FOUND,
    'handler0',
    ['name' => 'atanvarno', 'id' => '42']
]

dispatch() can instead return only a found status array. For not found and not allowed statuses, exceptions can be thrown. Use the second parameter to enable this behaviour.

Parameters

  • RequestInterface $request

    Required. PSR-7 request to dispatch.

  • bool $exceptions

    Optional. Defaults to false. Pass true to enable exceptions.

Throws

  • NotFoundException

    The given request could not be matched. This is only thrown if $exceptions is passed as true. Otherwise, an array is returned.

  • MethodNotAllowedException

    Requested HTTP method is not allowed. This is only thrown if $exceptions is passed as true. Otherwise, an array is returned.

Returns

  • array

    The dispatch result array.

get

Adds a GET method route.

get(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

head

Adds a HEAD method route.

head(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

options

Adds a OPTIONS method route.

options(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

patch

Adds a PATCH method route.

patch(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

post

Adds a POST method route.

post(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

purge

Adds a PURGE method route.

purge(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

put

Adds a PUT method route.

put(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns

trace

Adds a TRACE method route.

trace(string $pattern, $handler): Router

Parameters

  • string $pattern

    Required. URL path pattern for the route.

  • mixed $handler

    Required. Any arbitrary handler value.

Throws

Nothing is thrown.

Returns