X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FRegex.pm;h=49f763693b049175e44a5f2245af6520b68c2311;hp=a1224c594212cc4f65701bcf84de698af6c15381;hb=4082e67814e85bc9820e56eb38e5e21511c0a5f8;hpb=11bd4e3eaa29685c44318041381621e79c4a5f44 diff --git a/lib/Catalyst/DispatchType/Regex.pm b/lib/Catalyst/DispatchType/Regex.pm index a1224c5..49f7636 100644 --- a/lib/Catalyst/DispatchType/Regex.pm +++ b/lib/Catalyst/DispatchType/Regex.pm @@ -2,7 +2,7 @@ package Catalyst::DispatchType::Regex; use strict; use base qw/Catalyst::DispatchType::Path/; -use Text::ASCIITable; +use Text::SimpleTable; =head1 NAME @@ -16,28 +16,22 @@ See L. =head1 METHODS -=over 4 - -=item $self->list($c) +=head2 $self->list($c) =cut sub list { my ( $self, $c ) = @_; - my $re = Text::ASCIITable->new; - $re->setCols( 'Regex', 'Private' ); - $re->setColWidth( 'Regex', 36, 1 ); - $re->setColWidth( 'Private', 37, 1 ); + my $re = Text::SimpleTable->new( [ 36, 'Regex' ], [ 37, 'Private' ] ); for my $regex ( @{ $self->{compiled} } ) { - my $compiled = $regex->{re}; - my $action = $regex->{action}; - $re->addRow( $compiled, "/$action" ); + my $action = $regex->{action}; + $re->row( $regex->{path}, "/$action" ); } $c->log->debug( "Loaded Regex actions:\n" . $re->draw ) - if ( @{ $re->{tbl_rows} } ); + if ( @{ $self->{compiled} } ); } -=item $self->match( $c, $path ) +=head2 $self->match( $c, $path ) =cut @@ -50,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 ); @@ -62,7 +57,7 @@ sub match { return 0; } -=item $self->register( $c, $action ) +=head2 $self->register( $c, $action ) =cut @@ -70,20 +65,36 @@ 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 ); + } + foreach my $r (@register) { - $self->{paths}{$r} = $action; # Register path for superclass - push( - @{ $self->{compiled} }, # and compiled regex for us - { - re => qr#$r#, - action => $action, - path => $r, - } - ); + $self->register_path( $c, $r, $action ); + $self->register_regex( $c, $r, $action ); } + return 1 if @register; + return 0; } -=back +=head2 $self->register_regex($c, $re, $action) + +=cut + +sub register_regex { + my ( $self, $c, $re, $action ) = @_; + push( + @{ $self->{compiled} }, # and compiled regex for us + { + re => qr#$re#, + action => $action, + path => $re, + } + ); +} =head1 AUTHOR