X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FDispatcher.pm;h=7f201c2c64096c78fe39b702cb216630aebaafa7;hb=837844227499d9317fbb8aad7b433fcb159b4b3a;hp=29a6e89cf537ea17779d2ca3dbb315e000880e3b;hpb=e72f8f51cb32d70b339bd011bdaebfb9cc3b9bc5;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Dispatcher.pm b/lib/Catalyst/Dispatcher.pm index 29a6e89..7f201c2 100644 --- a/lib/Catalyst/Dispatcher.pm +++ b/lib/Catalyst/Dispatcher.pm @@ -282,6 +282,8 @@ sub prepare_action { unshift @args, $arg; } + s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg for @{$c->req->captures||[]}; + $c->log->debug( 'Path is "' . $c->req->match . '"' ) if ( $c->debug && $c->req->match ); @@ -312,6 +314,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 +358,28 @@ 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 eq '' ? '/' : $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 +395,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,17 +405,14 @@ 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; - my $container = $self->find_or_create_action_container($namespace); + my $container = $self->_find_or_create_action_container($namespace); # Set the method value $container->add_action($action); @@ -399,7 +421,7 @@ sub register { $self->container_hash->{$namespace} = $container; } -sub find_or_create_action_container { +sub _find_or_create_action_container { my ( $self, $namespace ) = @_; my $tree ||= $self->tree; @@ -441,14 +463,14 @@ sub setup_actions { $self->action_container_class('Catalyst::ActionContainer'); my @classes = - $self->do_load_dispatch_types( @{ $self->preload_dispatch_types } ); + $self->_load_dispatch_types( @{ $self->preload_dispatch_types } ); @{ $self->registered_dispatch_types }{@classes} = (1) x @classes; foreach my $comp ( values %{ $c->components } ) { $comp->register_actions($c) if $comp->can('register_actions'); } - $self->do_load_dispatch_types( @{ $self->postload_dispatch_types } ); + $self->_load_dispatch_types( @{ $self->postload_dispatch_types } ); return unless $c->debug; @@ -478,14 +500,14 @@ sub setup_actions { }; $walker->( $walker, $self->tree, '' ); - $c->log->debug( "Loaded Private actions:\n" . $privates->draw ) - if ($has_private); + $c->log->debug( "Loaded Private actions:\n" . $privates->draw . "\n" ) + if $has_private; # List all public actions $_->list($c) for @{ $self->dispatch_types }; } -sub do_load_dispatch_types { +sub _load_dispatch_types { my ( $self, @types ) = @_; my @loaded;