package Mojolicious::Routes::Match; use Mojo::Base -base; use Mojo::Util; has [qw(endpoint root)]; has position => 0; has stack => sub { [] }; sub find { $_[0]->_match($_[0]->root, $_[1], $_[2]) } sub path_for { my ($self, $name, %values) = (shift, Mojo::Util::_options(@_)); # Current route my ($route, $current) = (undef, !$name || $name eq 'current'); if ($current) { return {} unless $route = $self->endpoint } # Find endpoint else { return {path => $name} unless $route = $self->root->lookup($name) } # Merge values (clear format) my $captures = $self->stack->[-1] // {}; my %merged = (%$captures, format => undef, %values); my $pattern = $route->pattern; my $constraints = $pattern->constraints; $merged{format} = ($current ? $captures->{format} : undef) // $pattern->defaults->{format} if !exists $values{format} && $constraints->{format} && $constraints->{format} ne '1'; return {path => $route->render(\%merged), websocket => $route->has_websocket}; } sub _match { my ($self, $r, $c, $options) = @_; # Pattern my $path = $options->{path}; my $partial = $r->partial; my $detect = (my $endpoint = $r->is_endpoint) && !$partial; return undef unless my $captures = $r->pattern->match_partial(\$path, $detect); local $options->{path} = $path; local @{$self->{captures} //= {}}{keys %$captures} = values %$captures; $captures = $self->{captures}; # Method my $methods = $r->methods; return undef if $methods && !grep { $_ eq $options->{method} } @$methods; # Conditions if (my $over = $r->requires) { my $conditions = $self->{conditions} ||= $self->root->conditions; for (my $i = 0; $i < @$over; $i += 2) { return undef unless my $condition = $conditions->{$over->[$i]}; return undef if !$condition->($r, $c, $captures, $over->[$i + 1]); } } # WebSocket return undef if $r->is_websocket && !$options->{websocket}; # Partial my $empty = !length $path || $path eq '/'; if ($partial) { $captures->{path} = $path; $self->endpoint($r); $empty = 1; } # Endpoint (or intermediate destination) if (($endpoint && $empty) || $r->inline) { push @{$self->stack}, {%$captures}; if ($endpoint && $empty) { my $format = $captures->{format}; if ($format) { $_->{format} = $format for @{$self->stack} } return !!$self->endpoint($r); } delete @$captures{qw(app cb)}; } # Match children my $snapshot = $r->parent ? [@{$self->stack}] : []; for my $child (@{$r->children}) { return 1 if $self->_match($child, $c, $options); $self->stack([@$snapshot]); } } 1; =encoding utf8 =head1 NAME Mojolicious::Routes::Match - Find routes =head1 SYNOPSIS use Mojolicious::Controller; use Mojolicious::Routes; use Mojolicious::Routes::Match; # Routes my $r = Mojolicious::Routes->new; $r->get('/user/:id'); $r->put('/user/:id'); # Match my $c = Mojolicious::Controller->new; my $match = Mojolicious::Routes::Match->new(root => $r); $match->find($c => {method => 'PUT', path => '/user/23'}); say $match->stack->[0]{id}; # Render say $match->path_for->{path}; say $match->path_for(id => 24)->{path}; =head1 DESCRIPTION L finds routes in L structures. =head1 ATTRIBUTES L implements the following attributes. =head2 endpoint my $route = $match->endpoint; $match = $match->endpoint(Mojolicious::Routes::Route->new); The route endpoint that matched, usually a L object. =head2 position my $position = $match->position; $match = $match->position(2); Current position on the L, defaults to C<0>. =head2 root my $root = $match->root; $match = $match->root(Mojolicious::Routes->new); The root of the route structure, usually a L object. =head2 stack my $stack = $match->stack; $match = $match->stack([{action => 'foo'}, {action => 'bar'}]); Captured parameters with nesting history. =head1 METHODS L inherits all methods from L and implements the following new ones. =head2 find $match->find(Mojolicious::Controller->new, {method => 'GET', path => '/'}); Match controller and options against L to find an appropriate L. =head2 path_for my $info = $match->path_for; my $info = $match->path_for(foo => 'bar'); my $info = $match->path_for({foo => 'bar'}); my $info = $match->path_for('named'); my $info = $match->path_for('named', foo => 'bar'); my $info = $match->path_for('named', {foo => 'bar'}); Render matching route with parameters into path. =head1 SEE ALSO L, L, L. =cut