X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=3c6404ac6ada133f95dd0a055f9fc6198e459902;hb=71c3bcc37c15d47d5070525780876daf38309d9a;hp=19c844d1569ed8c76052a3441e04a0dad3d93541;hpb=e0fc6749d93c698e47b95bf18f143333d2845332;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 19c844d..3c6404a 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -24,15 +24,15 @@ See L. =over 4 -=item $c->detach($command) +=item $c->detach( $command [, \@arguments ] ) Like C but doesn't return. =cut sub detach { - my ( $c, $command ) = @_; - $c->forward($command) if $command; + my ( $c, $command, @args ) = @_; + $c->forward( $command, @args ) if $command; die $Catalyst::Engine::DETACH; } @@ -128,7 +128,10 @@ sub forward { return 0; } - my $caller = caller(0); + # Relative forwards from detach + my $caller = ( caller(0) )[0]->isa('Catalyst::Dispatcher') + && ( ( caller(1) )[3] =~ /::detach$/ ) ? caller(1) : caller(0); + my $namespace = '/'; my $arguments = ( ref( $_[-1] ) eq 'ARRAY' ) ? pop(@_) : $c->req->args; @@ -148,29 +151,19 @@ sub forward { my $results = $c->get_action( $command, $namespace ); unless ( @{$results} ) { - my $class = $command || ''; - my $path = $class . '.pm'; - $path =~ s/::/\//g; - - unless ( $INC{$path} ) { - my $error = - qq/Couldn't forward to "$class". Invalid or not loaded./; - $c->error($error); - $c->log->debug($error) if $c->debug; - return 0; - } - unless ( UNIVERSAL::isa( $class, 'Catalyst::Base' ) ) { + unless ( $c->components->{$command} ) { my $error = - qq/Can't forward to "$class". Class is not a Catalyst component./; +qq/Couldn't forward to command "$command". Invalid action or component./; $c->error($error); $c->log->debug($error) if $c->debug; return 0; } + my $class = $command; my $method = shift || 'process'; - if ( my $code = $class->can($method) ) { + if ( my $code = $c->components->{$class}->can($method) ) { $c->actions->{reverse}->{"$code"} = "$class->$method"; $results = [ [ [ $class, $code ] ] ]; } @@ -185,8 +178,8 @@ sub forward { } } - - local $c->request->{arguments} = $arguments; + + local $c->request->{arguments} = [ @{$arguments} ]; for my $result ( @{$results} ) { $c->execute( @{ $result->[0] } ); @@ -330,15 +323,15 @@ sub set_action { if ( $flags{path} ) { $flags{path} =~ s/^\w+//; $flags{path} =~ s/\w+$//; - if ( $flags{path} =~ /^'(.*)'$/ ) { $flags{path} = $1 } - if ( $flags{path} =~ /^"(.*)"$/ ) { $flags{path} = $1 } + if ( $flags{path} =~ /^\s*'(.*)'\s*$/ ) { $flags{path} = $1 } + if ( $flags{path} =~ /^\s*"(.*)"\s*$/ ) { $flags{path} = $1 } } if ( $flags{regex} ) { $flags{regex} =~ s/^\w+//; $flags{regex} =~ s/\w+$//; - if ( $flags{regex} =~ /^'(.*)'$/ ) { $flags{regex} = $1 } - if ( $flags{regex} =~ /^"(.*)"$/ ) { $flags{regex} = $1 } + if ( $flags{regex} =~ /^\s*'(.*)'\s*$/ ) { $flags{regex} = $1 } + if ( $flags{regex} =~ /^\s*"(.*)"\s*$/ ) { $flags{regex} = $1 } } my $reverse = $prefix ? "$prefix/$method" : $method;