X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FActionChain.pm;h=496000bc2d0bc7791ee6ebaaae21f3008a48560a;hp=cf48342db99277c69c612fe220df89e05b652eed;hb=0cff119a540a3c8961750bd499f4c470771ac342;hpb=cfb8879d62b804cb574bf5608dd41cfb87d3559a diff --git a/lib/Catalyst/ActionChain.pm b/lib/Catalyst/ActionChain.pm index cf48342..496000b 100644 --- a/lib/Catalyst/ActionChain.pm +++ b/lib/Catalyst/ActionChain.pm @@ -4,7 +4,6 @@ use Moose; extends qw(Catalyst::Action); has chain => (is => 'rw'); - no Moose; =head1 NAME @@ -30,8 +29,8 @@ sub dispatch { my $last = pop(@chain); foreach my $action ( @chain ) { my @args; - if (my $cap = $action->attributes->{CaptureArgs}) { - @args = splice(@captures, 0, $cap->[0]); + if (my $cap = $action->number_of_captures) { + @args = splice(@captures, 0, $cap); } local $c->request->{arguments} = \@args; $action->dispatch( $c ); @@ -45,6 +44,15 @@ sub from_chain { return $self->new({ %$final, chain => $actions }); } +sub number_of_captures { + my ( $self ) = @_; + my $chain = $self->chain; + my $captures = 0; + + $captures += $_->number_of_captures for @$chain; + return $captures; +} + __PACKAGE__->meta->make_immutable; 1; @@ -67,6 +75,10 @@ actions in order. Takes a list of Catalyst::Action objects and constructs and returns a Catalyst::ActionChain object representing a chain of these actions +=head2 number_of_captures + +Returns the total number of captures for the entire chain of actions. + =head2 meta Provided by Moose