X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=35f129fef8f167028df02383cbff5b2caf0ab780;hb=7101bd1f9d86faa21526f6601dbdb401c679501c;hp=b64ad456bd7a26308f0b37b26b6fc20dde550e0d;hpb=46245bee79d81ab8b61245da76d103a9bcda9f00;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index b64ad45..35f129f 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -17,7 +17,7 @@ use overload '""' => sub { return ref shift }, fallback => 1; __PACKAGE__->mk_accessors( qw/tree dispatch_types registered_dispatch_types - method_action_class action_container_class/ + method_action_class action_container_class reserved_actions/ ); # Preload these action types @@ -26,6 +26,9 @@ our @PRELOAD = qw/Path Regex/; # Postload these action types our @POSTLOAD = qw/Index Default/; +# Reserved action names +our @RESERVED = qw/begin auto default index end/; + =head1 NAME Catalyst::Dispatcher - The Catalyst Dispatcher @@ -85,7 +88,12 @@ sub forward { return 0; } - my $arguments = ( ref( $_[-1] ) eq 'ARRAY' ) ? pop(@_) : $c->req->args; + my $local_args = 0; + my $arguments = $c->req->args; + if ( ref( $_[-1] ) eq 'ARRAY' ) { + $arguments = pop(@_); + $local_args = 1; + } my $result; @@ -106,8 +114,9 @@ sub forward { my $tail = $2; $result = $c->get_action( $tail, $1 ); if ($result) { - $command = $tail; - push( @{$arguments}, @extra_args ); + $local_args = 1; + $command = $tail; + unshift( @{$arguments}, @extra_args ); last DESCEND; } unshift( @extra_args, $tail ); @@ -154,9 +163,11 @@ qq/Couldn't forward to command "$command". Invalid action or component./; } - local $c->request->{arguments} = [ @{$arguments} ]; - - $result->execute($c); + if ($local_args) { + local $c->request->{arguments} = [ @{$arguments} ]; + $result->execute($c); + } + else { $result->execute($c) } return $c->state; } @@ -186,10 +197,12 @@ sub prepare_action { } # If not, move the last part path to args - unshift @args, pop @path; } + $c->log->debug( 'Path is "' . $c->req->match . '"' ) + if ( $c->debug && $c->req->match ); + $c->log->debug( 'Arguments are "' . join( '/', @args ) . '"' ) if ( $c->debug && @args ); } @@ -290,10 +303,18 @@ sub register { } } + # Check if action name is reserved + my $reserved = 0; + for my $name ( @{ $self->reserved_actions } ) { + $reserved++ if $action->name eq $name; + } + # Pass the action to our dispatch types so they can register it if reqd. - my $reg = 0; - foreach my $type ( @{ $self->dispatch_types } ) { - $reg++ if $type->register( $c, $action ); + my $reg = $reserved; + unless ($reserved) { + foreach my $type ( @{ $self->dispatch_types } ) { + $reg++ if $type->register( $c, $action ); + } } return unless $reg + $priv; @@ -339,6 +360,7 @@ sub setup_actions { $self->dispatch_types( [] ); $self->registered_dispatch_types( {} ); + $self->reserved_actions( \@RESERVED ); $self->method_action_class('Catalyst::Action'); $self->action_container_class('Catalyst::ActionContainer'); @@ -373,9 +395,9 @@ sub setup_actions { return unless $c->debug; my $privates = Text::SimpleTable->new( - [ 24, 'Private' ], - [ 23, 'Class' ], - [ 23, 'Method' ] + [ 20, 'Private' ], + [ 38, 'Class' ], + [ 12, 'Method' ] ); my $has_private = 0;