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=81603d5701ab35b255c79594cd70c6955e0bb40c;hp=f51387c3002a81caf35c8e56e421038100c49c6e;hb=11bd4e3eaa29685c44318041381621e79c4a5f44;hpb=6b23994966a2a66b90986a51e7e1d71f62d90f44 diff --git a/lib/Catalyst/DispatchType/Path.pm b/lib/Catalyst/DispatchType/Path.pm index f51387c..81603d5 100644 --- a/lib/Catalyst/DispatchType/Path.pm +++ b/lib/Catalyst/DispatchType/Path.pm @@ -2,38 +2,83 @@ package Catalyst::DispatchType::Path; use strict; use base qw/Catalyst::DispatchType/; +use Text::ASCIITable; -sub prepare_action { - my ($self, $c, $path) = @_; +=head1 NAME + +Catalyst::DispatchType::Path - Path DispatchType + +=head1 SYNOPSIS + +See L. + +=head1 DESCRIPTION + +=head1 METHODS + +=over 4 + +=item $self->list($c) + +=cut + +sub list { + my ( $self, $c ) = @_; + my $paths = Text::ASCIITable->new; + $paths->setCols( 'Path', 'Private' ); + $paths->setColWidth( 'Path', 36, 1 ); + $paths->setColWidth( 'Private', 37, 1 ); + for my $path ( sort keys %{ $self->{paths} } ) { + my $action = $self->{paths}->{$path}; + $paths->addRow( "/$path", "/$action" ); + } + $c->log->debug( "Loaded Path actions:\n" . $paths->draw ) + if ( @{ $paths->{tbl_rows} } ); +} + +=item $self->match( $c, $path ) + +=cut + +sub match { + my ( $self, $c, $path ) = @_; if ( my $action = $self->{paths}->{$path} ) { $c->req->action($path); $c->req->match($path); $c->action($action); - $c->namespace($action->prefix); + $c->namespace( $action->namespace ); return 1; } return 0; } -sub register_action { +=item $self->register( $c, $action ) + +=cut + +sub register { my ( $self, $c, $action ) = @_; + my $attrs = $action->attributes; my @register; - foreach my $r (@{$attrs->{Path} || []}) { - unless ($r =~ m!^/!) { - $r = $action->prefix."/$r"; + + foreach my $r ( @{ $attrs->{Path} || [] } ) { + unless ( $r =~ m!^/! ) { # It's a relative path + $r = $action->namespace . "/$r"; } - push(@register, $r); + push( @register, $r ); } - if ($attrs->{Global} || $attrs->{Absolute}) { - push(@register, $action->name); + if ( $attrs->{Global} || $attrs->{Absolute} ) { + push( @register, $action->name ); # Register sub name against root } - if ($attrs->{Local} || $attrs->{Relative}) { - push(@register, join('/', $action->prefix, $action->name)); + if ( $attrs->{Local} || $attrs->{Relative} ) { + push( @register, join( '/', $action->namespace, $action->name ) ); + + # Register sub name as a relative path } foreach my $r (@register) { @@ -42,4 +87,18 @@ sub register_action { } } +=back + +=head1 AUTHOR + +Matt S Trout +Sebastian Riedel, C + +=head1 COPYRIGHT + +This program is free software, you can redistribute it and/or modify it under +the same terms as Perl itself. + +=cut + 1;