X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FRegex.pm;h=520e038987fe3c4d2bfd28afad1d11f4317ca27b;hb=27708fc5f90d4794f082348049ac894f58224fad;hp=def40e83da78c0e434172433874cceaf657ac157;hpb=dcc61a75845d35ef799c6693d3ff514ab46dcb33;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/DispatchType/Regex.pm b/lib/Catalyst/DispatchType/Regex.pm index def40e8..520e038 100644 --- a/lib/Catalyst/DispatchType/Regex.pm +++ b/lib/Catalyst/DispatchType/Regex.pm @@ -16,9 +16,7 @@ See L. =head1 METHODS -=over 4 - -=item $self->list($c) +=head2 $self->list($c) =cut @@ -26,14 +24,14 @@ sub list { my ( $self, $c ) = @_; my $re = Text::SimpleTable->new( [ 36, 'Regex' ], [ 37, 'Private' ] ); for my $regex ( @{ $self->{compiled} } ) { - my $action = $regex->{action}; + my $action = $regex->{action}; $re->row( $regex->{path}, "/$action" ); } $c->log->debug( "Loaded Regex actions:\n" . $re->draw ) if ( @{ $self->{compiled} } ); } -=item $self->match( $c, $path ) +=head2 $self->match( $c, $path ) =cut @@ -46,6 +44,7 @@ sub match { foreach my $compiled ( @{ $self->{compiled} || [] } ) { if ( my @snippets = ( $path =~ $compiled->{re} ) ) { + next unless $compiled->{action}->match($c); $c->req->action( $compiled->{path} ); $c->req->match($path); $c->req->snippets( \@snippets ); @@ -58,28 +57,25 @@ sub match { return 0; } -=item $self->register( $c, $action ) +=head2 $self->register( $c, $action ) =cut sub register { my ( $self, $c, $action ) = @_; my $attrs = $action->attributes; - my @register = map { @{ $_ || [] } } @{$attrs}{ 'Regex', 'Regexp' }; - foreach - my $r ( map { @{ $_ || [] } } @{$attrs}{ 'LocalRegex', 'LocalRegexp' } ) - { - unless ( $r =~ s/^\^// ) { $r = "(?:.*?)$r"; } - push( @register, '^' . $action->namespace . '/' . $r ); - } + my @register = @{ $attrs->{'Regex'} || [] }; foreach my $r (@register) { $self->register_path( $c, $r, $action ); $self->register_regex( $c, $r, $action ); } + + return 1 if @register; + return 0; } -=item $self->register_regex($c, $re, $action) +=head2 $self->register_regex($c, $re, $action) =cut @@ -95,8 +91,6 @@ sub register_regex { ); } -=back - =head1 AUTHOR Matt S Trout