X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=22bb49ff581e958df0a909f8bb3c049f54c1dd68;hb=d13382868257e61594d2a204e6a2f7ccd3ef3da3;hp=29a6e89cf537ea17779d2ca3dbb315e000880e3b;hpb=e72f8f51cb32d70b339bd011bdaebfb9cc3b9bc5;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 29a6e89..22bb49f 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -312,6 +312,7 @@ Returns the named action by its full path. sub get_action_by_path { my ( $self, $path ) = @_; + $path =~ s/^\///; $path = "/$path" unless $path =~ /\//; $self->action_hash->{$path}; } @@ -355,6 +356,27 @@ sub get_containers { my @parts = split '/', $namespace; } +=head2 $self->uri_for_action($action, \@captures) + +Takes a Catalyst::Action object and action parameters and returns a URI +part such that if $c->req->path were this URI part, this action would be +dispatched to with $c->req->captures set to the supplied arrayref. + +If the action object is not available for external dispatch or the dispatcher +cannot determine an appropriate URI, this method will return undef. + +=cut + +sub uri_for_action { + my ( $self, $action, $captures) = @_; + $captures ||= []; + foreach my $dispatch_type ( @{ $self->dispatch_types } ) { + my $uri = $dispatch_type->uri_for_action( $action, $captures ); + return $uri if defined($uri); + } + return undef; +} + =head2 $self->register( $c, $action ) Make sure all required dispatch types for this action are loaded, then @@ -370,7 +392,7 @@ sub register { my $priv = 0; foreach my $key ( keys %{ $action->attributes } ) { - $priv++ if $key eq 'Private'; + next if $key eq 'Private'; my $class = "Catalyst::DispatchType::$key"; unless ( $registered->{$class} ) { eval "require $class"; @@ -380,13 +402,10 @@ sub register { } # 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 ); + $type->register( $c, $action ); } - return unless $reg + $priv; - my $namespace = $action->namespace; my $name = $action->name;