NAME
Router::Boom::Method - Router::Boom with HTTP method support
DESCRIPTION
Router::Boom doesn't care the routing with HTTP method. It's simple and good. But it makes hard to implement the rule like this:
get '/' => sub { 'get ok' };
post '/' => sub { 'post ok' };
Then, this class helps you.
METHODS
my $router = Router::Boom::Method->new()-
Create new instance.
$router->add($http_method:Str|ArrayRef[Str], $path:Str, $opaque:Any)-
Add new path to the router.
$http_methodis a string to represent HTTP method. i.e. GET, POST, DELETE, PUT, etc. The path can handle any HTTP methods, you'll path theundeffor this argument. You can specify the multiple HTTP methods in ArrayRef like$router->add([qw(GET HEAD)], '/', 'top'). It will be matching with theREQUEST_METHOD.$pathis the path string. It will be matching with thePATH_INFO.$opaqueis the destination path data. Any data is OK. my ($dest, $captured, $is_method_not_allowed, $allowed_methods) = $router->match($http_method:Str, $path:Str)-
Matching with the router.
$http_methodis the HTTP request method. It's$env->{REQUEST_METHOD}in PSGI.$pathis the path string. It's$env->{PATH_INFO}in PSGI.Return Value:
If the request is not matching with any path, this method returns empty list.
If the request is matched well then, return
$dest,$captured. And$is_method_not_allowedis false value.If the request path is matched but the
$http_methodis not matched, then$destand$capturedis undef. And$is_method_not_allowedis true value. You got this then you need to return405 Method Not Allowederror.If the request path is matched but the
$http_methodis not matched, then$destand$capturedis undef. And$allowed_methodsis ArrayRef. You got this then you need to return405 Method Not Allowederror withAllowheader. my $regexp = $router->regexp()-
Get a compiled regexp for debugging.
my @routes = $router->routes()-
EXPERIMENTAL
Get the list of registered routes. Every routes has following schema.
[Maybe[ArrayRef], Str, Any]For example:
[['GET','HEAD'], "/foo", \&dispatch_foo]
AUTHORS
Tokuhiro Matsuno