X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FView%2FComponent%2FSubInclude%2FSubRequest.pm;h=c1c882a518c645d48a8e1d5ff559ea6ac6f79cf0;hb=7094e990d51cd17a80ceb30cea0eca4c1295b395;hp=75b5d6b4c4470ae893c0def8f80c54f0f7cf9e72;hpb=9399de67c73e690611087f7aa359537a7bef4b46;p=catagits%2FCatalyst-View-Component-SubInclude.git diff --git a/lib/Catalyst/View/Component/SubInclude/SubRequest.pm b/lib/Catalyst/View/Component/SubInclude/SubRequest.pm index 75b5d6b..c1c882a 100644 --- a/lib/Catalyst/View/Component/SubInclude/SubRequest.pm +++ b/lib/Catalyst/View/Component/SubInclude/SubRequest.pm @@ -3,7 +3,8 @@ use warnings; use strict; use Carp qw/croak/; -use namespace::clean qw/croak/; +use Scalar::Util qw/blessed/; +use namespace::clean; =head1 NAME @@ -70,19 +71,19 @@ common interface for all plugins. =cut sub generate_subinclude { - my ($class, $c, $path, @params) = @_; - my $stash = {}; + my ($class, $config, $c, $path, @params) = @_; + my $stash = $config->{keep_stash} ? { %{ $c->stash } } : {}; croak "subincludes through subrequests require Catalyst::Plugin::SubRequest" unless $c->can('sub_request'); - my $args = ref $params[0] eq 'ARRAY' ? shift @params : []; - my $query = ref $params[-1] eq 'HASH' ? pop @params : {}; + my $query = ref $params[-1] eq 'HASH' ? pop @params : {}; - my $dispatcher = $c->dispatcher; - my ($action) = $dispatcher->_invoke_as_path( $c, $path, $args ); + my $action = blessed($path) + ? $path + : $c->dispatcher->get_action_by_path($path); - my $uri = $c->uri_for( $action, $args, @params ); + my $uri = $c->uri_for( $action, @params ); $c->sub_request( $uri->path, $stash, $query ); }