X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=9ebd2b996379d353c16ea2a54569f9a96aa03819;hb=f9bcc1280f6685f1d937688ed9c035bc9994a01e;hp=96364e676d213e2ae45243c3768dc2b2d49d3cd9;hpb=68964646bfb84dc0e6a31daa93271628a38c34c8;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 96364e6..9ebd2b9 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -151,9 +151,14 @@ sub _command2action { my $action; - # go to a string path ("/foo/bar/gorch") - # or action object which stringifies to that - $action = $self->_invoke_as_path( $c, "$command", \@args ); + if (Scalar::Util::blessed($command) && $command->isa('Catalyst::Action')) { + $action = $command; + } + else { + # go to a string path ("/foo/bar/gorch") + # or action object which stringifies to that + $action = $self->_invoke_as_path( $c, "$command", \@args ); + } # go to a component ( "MyApp::*::Foo" or $c->component("...") # - a path or an object) @@ -165,31 +170,64 @@ sub _command2action { return $action, \@args; } -=head2 $self->go( $c, $command [, \@arguments ] ) +=head2 $self->visit( $c, $command [, \@arguments ] ) Documented in L =cut -sub go { +sub visit { my $self = shift; + $self->_do_visit('visit', @_); +} + +sub _do_visit { + my $self = shift; + my $opname = shift; my ( $c, $command ) = @_; my ( $action, $args ) = $self->_command2action(@_); + my $error = qq/Couldn't $opname("$command"): /; - unless ($action) { - my $error = - qq/Couldn't go to command "$command": / - . qq/Invalid action or component./; + if (!$action) { + $error .= qq/Couldn't $opname to command "$command": / + .qq/Invalid action or component./; + } + elsif (!defined $action->namespace) { + $error .= qq/Action has no namespace: cannot $opname() to a plain / + .qq/method or component, must be a :Action or some sort./ + } + elsif (!$action->class->can('_DISPATCH')) { + $error .= qq/Action cannot _DISPATCH. / + .qq/Did you try to $opname() a non-controller action?/; + } + else { + $error = q(); + } + + if($error) { $c->error($error); $c->log->debug($error) if $c->debug; return 0; } + $action = $self->expand_action($action); + local $c->request->{arguments} = $args; - $c->namespace($action->namespace); - $c->action($action); + local $c->{namespace} = $action->{'namespace'}; + local $c->{action} = $action; + $self->dispatch($c); +} + +=head2 $self->go( $c, $command [, \@arguments ] ) + +Documented in L +=cut + +sub go { + my $self = shift; + $self->_do_visit('go', @_); die $Catalyst::GO; } @@ -420,6 +458,25 @@ sub uri_for_action { return undef; } +=head2 expand_action + +expand an action into a full representation of the dispatch. +mostly useful for chained, other actions will just return a +single action. + +=cut + +sub expand_action { + my ($self, $action) = @_; + + foreach my $dispatch_type (@{ $self->dispatch_types }) { + my $expanded = $dispatch_type->expand_action($action); + return $expanded if $expanded; + } + + return $action; +} + =head2 $self->register( $c, $action ) Make sure all required dispatch types for this action are loaded, then