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=d887a1364fdbc2a0fe9a3ee4a30841cf1464627a;hp=454f87c92fdd56e910bd25af6116ff1a5664f07b;hb=4ab87e274ac0a05f98c10a4cdba467ba4398b0d3;hpb=2633d7dc3bb9c0cf7bf3e7cf936d6411fe3ba5aa diff --git a/lib/Catalyst/DispatchType/Path.pm b/lib/Catalyst/DispatchType/Path.pm index 454f87c..d887a13 100644 --- a/lib/Catalyst/DispatchType/Path.pm +++ b/lib/Catalyst/DispatchType/Path.pm @@ -2,6 +2,8 @@ package Catalyst::DispatchType::Path; use strict; use base qw/Catalyst::DispatchType/; +use Text::SimpleTable; +use URI; =head1 NAME @@ -15,60 +17,77 @@ See L. =head1 METHODS -=over 4 +=head2 $self->list($c) -=item $self->match( $c, $path ) +Debug output for Path dispatch points + +=cut + +sub list { + my ( $self, $c ) = @_; + my $paths = Text::SimpleTable->new( [ 36, 'Path' ], [ 37, 'Private' ] ); + for my $path ( sort keys %{ $self->{paths} } ) { + my $action = $self->{paths}->{$path}; + $path = "/$path" unless $path eq '/'; + $paths->row( "$path", "/$action" ); + } + $c->log->debug( "Loaded Path actions:\n" . $paths->draw ) + if ( keys %{ $self->{paths} } ); +} + +=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); - $c->namespace( $action->prefix ); + $c->namespace( $action->namespace ); return 1; } 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->prefix . "/$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->prefix, $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 -=back +sub register_path { + my ( $self, $c, $path, $action ) = @_; + $path =~ s!^/!!; + $path = '/' unless length $path; + $path = URI->new($path)->canonical; + + $self->{paths}{$path} = $action; +} =head1 AUTHOR