X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FPath.pm;h=7f32b61542b39c738285ee00d1695e772ca41385;hp=98ef3034a7ed981e001563ca375727bd5ca1384b;hb=34d28dfd33574ce30aca69fb8700b61111d97b92;hpb=61a9002d77ce79bc038b3ec6212e275015801594 diff --git a/lib/Catalyst/DispatchType/Path.pm b/lib/Catalyst/DispatchType/Path.pm index 98ef303..7f32b61 100644 --- a/lib/Catalyst/DispatchType/Path.pm +++ b/lib/Catalyst/DispatchType/Path.pm @@ -3,6 +3,7 @@ package Catalyst::DispatchType::Path; use strict; use base qw/Catalyst::DispatchType/; use Text::SimpleTable; +use URI; =head1 NAME @@ -18,11 +19,13 @@ See L. =head2 $self->list($c) +Debug output for Path dispatch points + =cut sub list { my ( $self, $c ) = @_; - my $paths = Text::SimpleTable->new( [ 36, 'Path' ], [ 37, 'Private' ] ); + my $paths = Text::SimpleTable->new( [ 35, 'Path' ], [ 36, 'Private' ] ); for my $path ( sort keys %{ $self->{paths} } ) { my $action = $self->{paths}->{$path}; $path = "/$path" unless $path eq '/'; @@ -34,6 +37,8 @@ sub list { =head2 $self->match( $c, $path ) +Check for paths that match the given path. + =cut sub match { @@ -41,6 +46,7 @@ sub match { $path ||= '/'; if ( my $action = $self->{paths}->{$path} ) { + return 0 unless $action->match($c); $c->req->action($path); $c->req->match($path); $c->action($action); @@ -53,48 +59,33 @@ sub match { =head2 $self->register( $c, $action ) +Call register_path for every path attribute in the given $action. + =cut sub register { my ( $self, $c, $action ) = @_; - my $attrs = $action->attributes; - my @register; - - foreach my $r ( @{ $attrs->{Path} || [] } ) { - unless ($r) { - $r = $action->namespace; - $r = '/' unless $r; - } - elsif ( $r !~ m!^/! ) { # It's a relative path - $r = $action->namespace . "/$r"; - } - push( @register, $r ); - } - - if ( $attrs->{Global} || $attrs->{Absolute} ) { - push( @register, $action->name ); # Register sub name against root - } - - if ( $attrs->{Local} || $attrs->{Relative} ) { - push( @register, join( '/', $action->namespace, $action->name ) ); - - # Register sub name as a relative path - } + my @register = @{ $action->attributes->{Path} || [] }; $self->register_path( $c, $_, $action ) for @register; + return 1 if @register; return 0; } =head2 $self->register_path($c, $path, $action) +register an action at a given path. + =cut sub register_path { my ( $self, $c, $path, $action ) = @_; $path =~ s!^/!!; - $path = '/' unless $path; + $path = '/' unless length $path; + $path = URI->new($path)->canonical; + $self->{paths}{$path} = $action; }