e65cd906fe59550434d85cc800aa5ba5b8b10bbb
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Chained.pm
1 package Catalyst::DispatchType::Chained;
2
3 use Moose;
4 extends 'Catalyst::DispatchType';
5
6 use Text::SimpleTable;
7 use Catalyst::ActionChain;
8 use Catalyst::Utils;
9 use URI;
10 use Scalar::Util ();
11
12 has _endpoints => (
13                    is => 'rw',
14                    isa => 'ArrayRef',
15                    required => 1,
16                    default => sub{ [] },
17                   );
18
19 has _actions => (
20                  is => 'rw',
21                  isa => 'HashRef',
22                  required => 1,
23                  default => sub{ {} },
24                 );
25
26 has _children_of => (
27                      is => 'rw',
28                      isa => 'HashRef',
29                      required => 1,
30                      default => sub{ {} },
31                     );
32
33 no Moose;
34
35 # please don't perltidy this. hairy code within.
36
37 =head1 NAME
38
39 Catalyst::DispatchType::Chained - Path Part DispatchType
40
41 =head1 SYNOPSIS
42
43 Path part matching, allowing several actions to sequentially take care of processing a request:
44
45   #   root action - captures one argument after it
46   sub foo_setup : Chained('/') PathPart('foo') CaptureArgs(1) {
47       my ( $self, $c, $foo_arg ) = @_;
48       ...
49   }
50
51   #   child action endpoint - takes one argument
52   sub bar : Chained('foo_setup') Args(1) {
53       my ( $self, $c, $bar_arg ) = @_;
54       ...
55   }
56
57 =head1 DESCRIPTION
58
59 Dispatch type managing default behaviour.  For more information on
60 dispatch types, see:
61
62 =over 4
63
64 =item * L<Catalyst::Manual::Intro> for how they affect application authors
65
66 =item * L<Catalyst::DispatchType> for implementation information.
67
68 =back
69
70 =head1 METHODS
71
72 =head2 $self->list($c)
73
74 Debug output for Path Part dispatch points
75
76 =cut
77
78 sub list {
79     my ( $self, $c ) = @_;
80
81     return unless $self->_endpoints;
82
83     my $avail_width = Catalyst::Utils::term_width() - 9;
84     my $col1_width = ($avail_width * .50) < 35 ? 35 : int($avail_width * .50);
85     my $col2_width = $avail_width - $col1_width;
86     my $paths = Text::SimpleTable->new(
87         [ $col1_width, 'Path Spec' ], [ $col2_width, 'Private' ],
88     );
89
90     my $has_unattached_actions;
91     my $unattached_actions = Text::SimpleTable->new(
92         [ $col1_width, 'Private' ], [ $col2_width, 'Missing parent' ],
93     );
94
95     ENDPOINT: foreach my $endpoint (
96                   sort { $a->reverse cmp $b->reverse }
97                            @{ $self->_endpoints }
98                   ) {
99         my $args = $endpoint->attributes->{Args}->[0];
100         my @parts = (defined($args) ? (("*") x $args) : '...');
101         my @parents = ();
102         my $parent = "DUMMY";
103         my $curr = $endpoint;
104         while ($curr) {
105             if (my $cap = $curr->attributes->{CaptureArgs}) {
106                 unshift(@parts, (("*") x $cap->[0]));
107             }
108             if (my $pp = $curr->attributes->{PartPath}) {
109                 unshift(@parts, $pp->[0])
110                     if (defined $pp->[0] && length $pp->[0]);
111             }
112             $parent = $curr->attributes->{Chained}->[0];
113             $curr = $self->_actions->{$parent};
114             unshift(@parents, $curr) if $curr;
115         }
116         if ($parent ne '/') {
117             $has_unattached_actions = 1;
118             $unattached_actions->row('/' . ($parents[0] || $endpoint)->reverse, $parent);
119             next ENDPOINT;
120         }
121         my @rows;
122         foreach my $p (@parents) {
123             my $name = "/${p}";
124             if (my $cap = $p->attributes->{CaptureArgs}) {
125                 $name .= ' ('.$cap->[0].')';
126             }
127             unless ($p eq $parents[0]) {
128                 $name = "-> ${name}";
129             }
130             push(@rows, [ '', $name ]);
131         }
132         push(@rows, [ '', (@rows ? "=> " : '')."/${endpoint}" ]);
133         $rows[0][0] = join('/', '', @parts) || '/';
134         $paths->row(@$_) for @rows;
135     }
136
137     $c->log->debug( "Loaded Chained actions:\n" . $paths->draw . "\n" );
138     $c->log->debug( "Unattached Chained actions:\n", $unattached_actions->draw . "\n" )
139         if $has_unattached_actions;
140 }
141
142 =head2 $self->match( $c, $path )
143
144 Calls C<recurse_match> to see if a chain matches the C<$path>.
145
146 =cut
147
148 sub match {
149     my ( $self, $c, $path ) = @_;
150
151     my $request = $c->request;
152     return 0 if @{$request->args};
153
154     my @parts = split('/', $path);
155
156     my ($chain, $captures, $parts) = $self->recurse_match($c, '/', \@parts);
157
158     if ($parts && @$parts) {
159         for my $arg (@$parts) {
160             $arg =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg;
161             push @{$request->args}, $arg;
162         }
163     }
164
165     return 0 unless $chain;
166
167     my $action = Catalyst::ActionChain->from_chain($chain);
168
169     $request->action("/${action}");
170     $request->match("/${action}");
171     $request->captures($captures);
172     $c->action($action);
173     $c->namespace( $action->namespace );
174
175     return 1;
176 }
177
178 =head2 $self->recurse_match( $c, $parent, \@path_parts )
179
180 Recursive search for a matching chain.
181
182 =cut
183
184 sub recurse_match {
185     my ( $self, $c, $parent, $path_parts ) = @_;
186     my $children = $self->_children_of->{$parent};
187     return () unless $children;
188     my $best_action;
189     my @captures;
190     TRY: foreach my $try_part (sort { length($b) <=> length($a) }
191                                    keys %$children) {
192                                # $b then $a to try longest part first
193         my @parts = @$path_parts;
194         if (length $try_part) { # test and strip PathPart
195             next TRY unless
196               ($try_part eq join('/', # assemble equal number of parts
197                               splice( # and strip them off @parts as well
198                                 @parts, 0, scalar(@{[split('/', $try_part)]})
199                               ))); # @{[]} to avoid split to @_
200         }
201         my @try_actions = @{$children->{$try_part}};
202         TRY_ACTION: foreach my $action (@try_actions) {
203             if (my $capture_attr = $action->attributes->{CaptureArgs}) {
204
205                 # Short-circuit if not enough remaining parts
206                 next TRY_ACTION unless @parts >= $capture_attr->[0];
207
208                 my @captures;
209                 my @parts = @parts; # localise
210
211                 # strip CaptureArgs into list
212                 push(@captures, splice(@parts, 0, $capture_attr->[0]));
213
214                 # try the remaining parts against children of this action
215                 my ($actions, $captures, $action_parts) = $self->recurse_match(
216                                              $c, '/'.$action->reverse, \@parts
217                                            );
218                 #    No best action currently
219                 # OR The action has less parts
220                 # OR The action has equal parts but less captured data (ergo more defined)
221                 if ($actions    &&
222                     (!$best_action                                 ||
223                      $#$action_parts < $#{$best_action->{parts}}   ||
224                      ($#$action_parts == $#{$best_action->{parts}} &&
225                       $#$captures < $#{$best_action->{captures}}))){
226                     $best_action = {
227                         actions => [ $action, @$actions ],
228                         captures=> [ @captures, @$captures ],
229                         parts   => $action_parts
230                         };
231                 }
232             }
233             else {
234                 {
235                     local $c->req->{arguments} = [ @{$c->req->args}, @parts ];
236                     next TRY_ACTION unless $action->match($c);
237                 }
238                 my $args_attr = $action->attributes->{Args}->[0];
239
240                 #    No best action currently
241                 # OR This one matches with fewer parts left than the current best action,
242                 #    And therefore is a better match
243                 # OR No parts and this expects 0
244                 #    The current best action might also be Args(0),
245                 #    but we couldn't chose between then anyway so we'll take the last seen
246
247                 if (!$best_action                       ||
248                     @parts < @{$best_action->{parts}}   ||
249                     (!@parts && $args_attr eq 0)){
250                     $best_action = {
251                         actions => [ $action ],
252                         captures=> [],
253                         parts   => \@parts
254                     }
255                 }
256             }
257         }
258     }
259     return @$best_action{qw/actions captures parts/} if $best_action;
260     return ();
261 }
262
263 =head2 $self->register( $c, $action )
264
265 Calls register_path for every Path attribute for the given $action.
266
267 =cut
268
269 sub register {
270     my ( $self, $c, $action ) = @_;
271
272     my @chained_attr = @{ $action->attributes->{Chained} || [] };
273
274     return 0 unless @chained_attr;
275
276     if (@chained_attr > 1) {
277         Catalyst::Exception->throw(
278           "Multiple Chained attributes not supported registering ${action}"
279         );
280     }
281     my $chained_to = $chained_attr[0];
282
283     Catalyst::Exception->throw(
284       "Actions cannot chain to themselves registering /${action}"
285     ) if ($chained_to eq '/' . $action);
286
287     my $children = ($self->_children_of->{ $chained_to } ||= {});
288
289     my @path_part = @{ $action->attributes->{PathPart} || [] };
290
291     my $part = $action->name;
292
293     if (@path_part == 1 && defined $path_part[0]) {
294         $part = $path_part[0];
295     } elsif (@path_part > 1) {
296         Catalyst::Exception->throw(
297           "Multiple PathPart attributes not supported registering " . $action->reverse()
298         );
299     }
300
301     if ($part =~ m(^/)) {
302         Catalyst::Exception->throw(
303           "Absolute parameters to PathPart not allowed registering " . $action->reverse()
304         );
305     }
306
307     $action->attributes->{PartPath} = [ $part ];
308
309     unshift(@{ $children->{$part} ||= [] }, $action);
310
311     $self->_actions->{'/'.$action->reverse} = $action;
312
313     if (exists $action->attributes->{Args}) {
314         my $args = $action->attributes->{Args}->[0];
315         if (defined($args) and not (
316             Scalar::Util::looks_like_number($args) and
317             int($args) == $args
318         )) {
319             require Data::Dumper;
320             local $Data::Dumper::Terse = 1;
321             local $Data::Dumper::Indent = 0;
322             $args = Data::Dumper::Dumper($args);
323             Catalyst::Exception->throw(
324               "Invalid Args($args) for action " . $action->reverse() .
325               " (use 'Args' or 'Args(<number>)'"
326             );
327         }
328     }
329
330     unless ($action->attributes->{CaptureArgs}) {
331         unshift(@{ $self->_endpoints }, $action);
332     }
333
334     return 1;
335 }
336
337 =head2 $self->uri_for_action($action, $captures)
338
339 Get the URI part for the action, using C<$captures> to fill
340 the capturing parts.
341
342 =cut
343
344 sub uri_for_action {
345     my ( $self, $action, $captures ) = @_;
346
347     return undef unless ($action->attributes->{Chained}
348                            && !$action->attributes->{CaptureArgs});
349
350     my @parts = ();
351     my @captures = @$captures;
352     my $parent = "DUMMY";
353     my $curr = $action;
354     while ($curr) {
355         if (my $cap = $curr->attributes->{CaptureArgs}) {
356             return undef unless @captures >= $cap->[0]; # not enough captures
357             if ($cap->[0]) {
358                 unshift(@parts, splice(@captures, -$cap->[0]));
359             }
360         }
361         if (my $pp = $curr->attributes->{PartPath}) {
362             unshift(@parts, $pp->[0])
363                 if (defined($pp->[0]) && length($pp->[0]));
364         }
365         $parent = $curr->attributes->{Chained}->[0];
366         $curr = $self->_actions->{$parent};
367     }
368
369     return undef unless $parent eq '/'; # fail for dangling action
370
371     return undef if @captures; # fail for too many captures
372
373     return join('/', '', @parts);
374
375 }
376
377 =head2 $c->expand_action($action)
378
379 Return a list of actions that represents a chained action. See
380 L<Catalyst::Dispatcher> for more info. You probably want to
381 use the expand_action it provides rather than this directly.
382
383 =cut
384
385 sub expand_action {
386     my ($self, $action) = @_;
387
388     return unless $action->attributes && $action->attributes->{Chained};
389
390     my @chain;
391     my $curr = $action;
392
393     while ($curr) {
394         push @chain, $curr;
395         my $parent = $curr->attributes->{Chained}->[0];
396         $curr = $self->_actions->{$parent};
397     }
398
399     return Catalyst::ActionChain->from_chain([reverse @chain]);
400 }
401
402 =head2 $self->splice_captures_from( $c, $action, $args )
403
404 Calculates the number of capture args for the given action,
405 splices off the front of the supplied args, and pushes them back
406 on the args list wrapped in an array ref
407
408 =cut
409
410 sub splice_captures_from {
411     my ($self, $c, $action, $args) = @_; my $attrs = $action->attributes;
412
413     return 0 unless ($attrs->{Chained});
414
415     if ($attrs->{CaptureArgs}) {
416         $c->log->debug( 'Action '.$action->reverse.' is a midpoint' )
417             if ($c->debug);
418         return 1;
419     }
420
421     my @captures = ();
422     my @chain    = @{ $self->expand_action( $action )->chain }; pop @chain;
423
424     # Now start from the root of the chain, populate captures
425     for my $num_caps (map { $_->attributes->{CaptureArgs}->[0] } @chain) {
426         if ($num_caps > scalar @{ $args }) {
427             $c->log->debug( 'Action '.$action->reverse.' insufficient args' )
428                 if ($c->debug);
429             return 1;
430         }
431
432         push @captures, splice @{ $args }, 0, $num_caps;
433     }
434
435     if (defined $args->[ $attrs->{Args}->[0] ]) {
436         $c->log->debug( 'Action '.$action->reverse.' too many args' )
437             if ($c->debug);
438     }
439
440     unshift @{ $args }, \@captures if (defined $captures[0]);
441
442     return 1;
443 }
444
445 __PACKAGE__->meta->make_immutable;
446
447 =head1 USAGE
448
449 =head2 Introduction
450
451 The C<Chained> attribute allows you to chain public path parts together
452 by their private names. A chain part's path can be specified with
453 C<PathPart> and can be declared to expect an arbitrary number of
454 arguments. The endpoint of the chain specifies how many arguments it
455 gets through the C<Args> attribute. C<:Args(0)> would be none at all,
456 C<:Args> without an integer would be unlimited. The path parts that
457 aren't endpoints are using C<CaptureArgs> to specify how many parameters
458 they expect to receive. As an example setup:
459
460   package MyApp::Controller::Greeting;
461   use base qw/ Catalyst::Controller /;
462
463   #   this is the beginning of our chain
464   sub hello : PathPart('hello') Chained('/') CaptureArgs(1) {
465       my ( $self, $c, $integer ) = @_;
466       $c->stash->{ message } = "Hello ";
467       $c->stash->{ arg_sum } = $integer;
468   }
469
470   #   this is our endpoint, because it has no :CaptureArgs
471   sub world : PathPart('world') Chained('hello') Args(1) {
472       my ( $self, $c, $integer ) = @_;
473       $c->stash->{ message } .= "World!";
474       $c->stash->{ arg_sum } += $integer;
475
476       $c->response->body( join "<br/>\n" =>
477           $c->stash->{ message }, $c->stash->{ arg_sum } );
478   }
479
480 The debug output provides a separate table for chained actions, showing
481 the whole chain as it would match and the actions it contains. Here's an
482 example of the startup output with our actions above:
483
484   ...
485   [debug] Loaded Path Part actions:
486   .-----------------------+------------------------------.
487   | Path Spec             | Private                      |
488   +-----------------------+------------------------------+
489   | /hello/*/world/*      | /greeting/hello (1)          |
490   |                       | => /greeting/world           |
491   '-----------------------+------------------------------'
492   ...
493
494 As you can see, Catalyst only deals with chains as whole paths and
495 builds one for each endpoint, which are the actions with C<:Chained> but
496 without C<:CaptureArgs>.
497
498 Let's assume this application gets a request at the path
499 C</hello/23/world/12>. What happens then? First, Catalyst will dispatch
500 to the C<hello> action and pass the value C<23> as an argument to it
501 after the context. It does so because we have previously used
502 C<:CaptureArgs(1)> to declare that it has one path part after itself as
503 its argument. We told Catalyst that this is the beginning of the chain
504 by specifying C<:Chained('/')>. Also note that instead of saying
505 C<:PathPart('hello')> we could also just have said C<:PathPart>, as it
506 defaults to the name of the action.
507
508 After C<hello> has run, Catalyst goes on to dispatch to the C<world>
509 action. This is the last action to be called: Catalyst knows this is an
510 endpoint because we did not specify a C<:CaptureArgs>
511 attribute. Nevertheless we specify that this action expects an argument,
512 but at this point we're using C<:Args(1)> to do that. We could also have
513 said C<:Args> or left it out altogether, which would mean this action
514 would get all arguments that are there. This action's C<:Chained>
515 attribute says C<hello> and tells Catalyst that the C<hello> action in
516 the current controller is its parent.
517
518 With this we have built a chain consisting of two public path parts.
519 C<hello> captures one part of the path as its argument, and also
520 specifies the path root as its parent. So this part is
521 C</hello/$arg>. The next part is the endpoint C<world>, expecting one
522 argument. It sums up to the path part C<world/$arg>. This leads to a
523 complete chain of C</hello/$arg/world/$arg> which is matched against the
524 requested paths.
525
526 This example application would, if run and called by e.g.
527 C</hello/23/world/12>, set the stash value C<message> to "Hello" and the
528 value C<arg_sum> to "23". The C<world> action would then append "World!"
529 to C<message> and add C<12> to the stash's C<arg_sum> value.  For the
530 sake of simplicity no view is shown. Instead we just put the values of
531 the stash into our body. So the output would look like:
532
533   Hello World!
534   35
535
536 And our test server would have given us this debugging output for the
537 request:
538
539   ...
540   [debug] "GET" request for "hello/23/world/12" from "127.0.0.1"
541   [debug] Path is "/greeting/world"
542   [debug] Arguments are "12"
543   [info] Request took 0.164113s (6.093/s)
544   .------------------------------------------+-----------.
545   | Action                                   | Time      |
546   +------------------------------------------+-----------+
547   | /greeting/hello                          | 0.000029s |
548   | /greeting/world                          | 0.000024s |
549   '------------------------------------------+-----------'
550   ...
551
552 What would be common uses of this dispatch technique? It gives the
553 possibility to split up logic that contains steps that each depend on
554 each other. An example would be, for example, a wiki path like
555 C</wiki/FooBarPage/rev/23/view>. This chain can be easily built with
556 these actions:
557
558   sub wiki : PathPart('wiki') Chained('/') CaptureArgs(1) {
559       my ( $self, $c, $page_name ) = @_;
560       #  load the page named $page_name and put the object
561       #  into the stash
562   }
563
564   sub rev : PathPart('rev') Chained('wiki') CaptureArgs(1) {
565       my ( $self, $c, $revision_id ) = @_;
566       #  use the page object in the stash to get at its
567       #  revision with number $revision_id
568   }
569
570   sub view : PathPart Chained('rev') Args(0) {
571       my ( $self, $c ) = @_;
572       #  display the revision in our stash. Another option
573       #  would be to forward a compatible object to the action
574       #  that displays the default wiki pages, unless we want
575       #  a different interface here, for example restore
576       #  functionality.
577   }
578
579 It would now be possible to add other endpoints, for example C<restore>
580 to restore this specific revision as the current state.
581
582 You don't have to put all the chained actions in one controller. The
583 specification of the parent through C<:Chained> also takes an absolute
584 action path as its argument. Just specify it with a leading C</>.
585
586 If you want, for example, to have actions for the public paths
587 C</foo/12/edit> and C</foo/12>, just specify two actions with
588 C<:PathPart('foo')> and C<:Chained('/')>. The handler for the former
589 path needs a C<:CaptureArgs(1)> attribute and a endpoint with
590 C<:PathPart('edit')> and C<:Chained('foo')>. For the latter path give
591 the action just a C<:Args(1)> to mark it as endpoint. This sums up to
592 this debugging output:
593
594   ...
595   [debug] Loaded Path Part actions:
596   .-----------------------+------------------------------.
597   | Path Spec             | Private                      |
598   +-----------------------+------------------------------+
599   | /foo/*                | /controller/foo_view         |
600   | /foo/*/edit           | /controller/foo_load (1)     |
601   |                       | => /controller/edit          |
602   '-----------------------+------------------------------'
603   ...
604
605 Here's a more detailed specification of the attributes belonging to
606 C<:Chained>:
607
608 =head2 Attributes
609
610 =over 8
611
612 =item PathPart
613
614 Sets the name of this part of the chain. If it is specified without
615 arguments, it takes the name of the action as default. So basically
616 C<sub foo :PathPart> and C<sub foo :PathPart('foo')> are identical.
617 This can also contain slashes to bind to a deeper level. An action
618 with C<sub bar :PathPart('foo/bar') :Chained('/')> would bind to
619 C</foo/bar/...>. If you don't specify C<:PathPart> it has the same
620 effect as using C<:PathPart>, it would default to the action name.
621
622 =item PathPrefix
623
624 Sets PathPart to the path_prefix of the current controller.
625
626 =item Chained
627
628 Has to be specified for every child in the chain. Possible values are
629 absolute and relative private action paths or a single slash C</> to
630 tell Catalyst that this is the root of a chain. The attribute
631 C<:Chained> without arguments also defaults to the C</> behavior.
632 Relative action paths may use C<../> to refer to actions in parent
633 controllers.
634
635 Because you can specify an absolute path to the parent action, it
636 doesn't matter to Catalyst where that parent is located. So, if your
637 design requests it, you can redispatch a chain through any controller or
638 namespace you want.
639
640 Another interesting possibility gives C<:Chained('.')>, which chains
641 itself to an action with the path of the current controller's namespace.
642 For example:
643
644   #   in MyApp::Controller::Foo
645   sub bar : Chained CaptureArgs(1) { ... }
646
647   #   in MyApp::Controller::Foo::Bar
648   sub baz : Chained('.') Args(1) { ... }
649
650 This builds up a chain like C</bar/*/baz/*>. The specification of C<.>
651 as the argument to Chained here chains the C<baz> action to an action
652 with the path of the current controller namespace, namely
653 C</foo/bar>. That action chains directly to C</>, so the C</bar/*/baz/*>
654 chain comes out as the end product.
655
656 =item ChainedParent
657
658 Chains an action to another action with the same name in the parent
659 controller. For Example:
660
661   # in MyApp::Controller::Foo
662   sub bar : Chained CaptureArgs(1) { ... }
663
664   # in MyApp::Controller::Foo::Moo
665   sub bar : ChainedParent Args(1) { ... }
666
667 This builds a chain like C</bar/*/bar/*>.
668
669 =item CaptureArgs
670
671 Must be specified for every part of the chain that is not an
672 endpoint. With this attribute Catalyst knows how many of the following
673 parts of the path (separated by C</>) this action wants to capture as
674 its arguments. If it doesn't expect any, just specify
675 C<:CaptureArgs(0)>.  The captures get passed to the action's C<@_> right
676 after the context, but you can also find them as array references in
677 C<$c-E<gt>request-E<gt>captures-E<gt>[$level]>. The C<$level> is the
678 level of the action in the chain that captured the parts of the path.
679
680 An action that is part of a chain (that is, one that has a C<:Chained>
681 attribute) but has no C<:CaptureArgs> attribute is treated by Catalyst
682 as a chain end.
683
684 =item Args
685
686 By default, endpoints receive the rest of the arguments in the path. You
687 can tell Catalyst through C<:Args> explicitly how many arguments your
688 endpoint expects, just like you can with C<:CaptureArgs>. Note that this
689 also affects whether this chain is invoked on a request. A chain with an
690 endpoint specifying one argument will only match if exactly one argument
691 exists in the path.
692
693 You can specify an exact number of arguments like C<:Args(3)>, including
694 C<0>. If you just say C<:Args> without any arguments, it is the same as
695 leaving it out altogether: The chain is matched regardless of the number
696 of path parts after the endpoint.
697
698 Just as with C<:CaptureArgs>, the arguments get passed to the action in
699 C<@_> after the context object. They can also be reached through
700 C<$c-E<gt>request-E<gt>arguments>.
701
702 =back
703
704 =head2 Auto actions, dispatching and forwarding
705
706 Note that the list of C<auto> actions called depends on the private path
707 of the endpoint of the chain, not on the chained actions way. The
708 C<auto> actions will be run before the chain dispatching begins. In
709 every other aspect, C<auto> actions behave as documented.
710
711 The C<forward>ing to other actions does just what you would expect. But if
712 you C<detach> out of a chain, the rest of the chain will not get called
713 after the C<detach>.
714
715 =head1 AUTHORS
716
717 Catalyst Contributors, see Catalyst.pm
718
719 =head1 COPYRIGHT
720
721 This library is free software. You can redistribute it and/or modify it under
722 the same terms as Perl itself.
723
724 =cut
725
726 1;