X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FPath.pm;h=7f32b61542b39c738285ee00d1695e772ca41385;hb=1b1636b58ce5f1feabd0d125c3928c57e5a5cf3c;hp=31f37b3e9790d5367aeb087c847c529d4edc8397;hpb=8c11318848e17f92027484614d393b6ebd365f7d;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/DispatchType/Path.pm b/lib/Catalyst/DispatchType/Path.pm index 31f37b3..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 @@ -16,31 +17,36 @@ See L. =head1 METHODS -=over 4 +=head2 $self->list($c) -=item $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}; - $paths->row( "/$path", "/$action" ); + $path = "/$path" unless $path eq '/'; + $paths->row( "$path", "/$action" ); } $c->log->debug( "Loaded Path actions:\n" . $paths->draw ) if ( keys %{ $self->{paths} } ); } -=item $self->match( $c, $path ) +=head2 $self->match( $c, $path ) + +Check for paths that match the given path. =cut sub match { my ( $self, $c, $path ) = @_; + $path ||= '/'; if ( my $action = $self->{paths}->{$path} ) { + return 0 unless $action->match($c); $c->req->action($path); $c->req->match($path); $c->action($action); @@ -51,40 +57,37 @@ sub match { return 0; } -=item $self->register( $c, $action ) +=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; + my @register = @{ $action->attributes->{Path} || [] }; - foreach my $r ( @{ $attrs->{Path} || [] } ) { - unless ( $r =~ m!^/! ) { # It's a relative path - $r = $action->namespace . "/$r"; - } - push( @register, $r ); - } + $self->register_path( $c, $_, $action ) for @register; - if ( $attrs->{Global} || $attrs->{Absolute} ) { - push( @register, $action->name ); # Register sub name against root - } + return 1 if @register; + return 0; +} - if ( $attrs->{Local} || $attrs->{Relative} ) { - push( @register, join( '/', $action->namespace, $action->name ) ); +=head2 $self->register_path($c, $path, $action) - # Register sub name as a relative path - } +register an action at a given path. - foreach my $r (@register) { - $r =~ s!^/!!; - $self->{paths}{$r} = $action; - } -} +=cut + +sub register_path { + my ( $self, $c, $path, $action ) = @_; + $path =~ s!^/!!; + $path = '/' unless length $path; + $path = URI->new($path)->canonical; -=back + $self->{paths}{$path} = $action; +} =head1 AUTHOR