added :Chained('.'), changed :Chained to /
[catagits/Catalyst-Runtime.git] / lib / Catalyst / DispatchType / Chained.pm
CommitLineData
5882c86e 1package Catalyst::DispatchType::Chained;
141459fa 2
3use strict;
4use base qw/Catalyst::DispatchType/;
5use Text::SimpleTable;
6use Catalyst::ActionChain;
7use URI;
8
792b40ac 9# please don't perltidy this. hairy code within.
10
141459fa 11=head1 NAME
12
5882c86e 13Catalyst::DispatchType::Chained - Path Part DispatchType
141459fa 14
15=head1 SYNOPSIS
16
17See L<Catalyst>.
18
19=head1 DESCRIPTION
20
21=head1 METHODS
22
23=head2 $self->list($c)
24
25Debug output for Path Part dispatch points
26
141459fa 27=cut
28
792b40ac 29sub list {
30 my ( $self, $c ) = @_;
31
32 return unless $self->{endpoints};
33
34 my $paths = Text::SimpleTable->new(
35 [ 35, 'Path Spec' ], [ 36, 'Private' ]
36 );
37
38 ENDPOINT: foreach my $endpoint (
39 sort { $a->reverse cmp $b->reverse }
40 @{ $self->{endpoints} }
41 ) {
42 my $args = $endpoint->attributes->{Args}->[0];
43 my @parts = (defined($args) ? (("*") x $args) : '...');
d34667c3 44 my @parents = ();
792b40ac 45 my $parent = "DUMMY";
46 my $curr = $endpoint;
47 while ($curr) {
48 if (my $cap = $curr->attributes->{Captures}) {
49 unshift(@parts, (("*") x $cap->[0]));
50 }
51 if (my $pp = $curr->attributes->{PartPath}) {
52 unshift(@parts, $pp->[0])
53 if (defined $pp->[0] && length $pp->[0]);
54 }
5882c86e 55 $parent = $curr->attributes->{Chained}->[0];
792b40ac 56 $curr = $self->{actions}{$parent};
d34667c3 57 unshift(@parents, $curr) if $curr;
792b40ac 58 }
59 next ENDPOINT unless $parent eq '/'; # skip dangling action
d34667c3 60 my @rows;
61 foreach my $p (@parents) {
62 my $name = "/${p}";
63 if (my $cap = $p->attributes->{Captures}) {
64 $name .= ' ('.$cap->[0].')';
65 }
66 unless ($p eq $parents[0]) {
67 $name = "-> ${name}";
68 }
69 push(@rows, [ '', $name ]);
70 }
71 push(@rows, [ '', (@rows ? "=> " : '')."/${endpoint}" ]);
72 $rows[0][0] = join('/', '', @parts);
73 $paths->row(@$_) for @rows;
792b40ac 74 }
75
76 $c->log->debug( "Loaded Path Part actions:\n" . $paths->draw );
77}
141459fa 78
79=head2 $self->match( $c, $path )
80
81Matt is an idiot and hasn't documented this yet.
82
83=cut
84
85sub match {
86 my ( $self, $c, $path ) = @_;
87
88 return 0 if @{$c->req->args};
89
90 my @parts = split('/', $path);
91
92 my ($chain, $captures) = $self->recurse_match($c, '/', \@parts);
93
94 return 0 unless $chain;
95
96 my $action = Catalyst::ActionChain->from_chain($chain);
97
98 $c->req->action("/${action}");
99 $c->req->match("/${action}");
100 $c->req->captures($captures);
101 $c->action($action);
102 $c->namespace( $action->namespace );
103
104 return 1;
105}
106
107=head2 $self->recurse_match( $c, $parent, \@path_parts )
108
109Matt is an idiot and hasn't documented this yet.
110
111=cut
112
113sub recurse_match {
114 my ( $self, $c, $parent, $path_parts ) = @_;
115 my $children = $self->{children_of}{$parent};
116 return () unless $children;
117 my @captures;
cdc97b63 118 TRY: foreach my $try_part (sort { length($a) <=> length($b) }
119 keys %$children) {
141459fa 120 my @parts = @$path_parts;
121 if (length $try_part) { # test and strip PathPart
122 next TRY unless
123 ($try_part eq join('/', # assemble equal number of parts
124 splice( # and strip them off @parts as well
792b40ac 125 @parts, 0, scalar(@{[split('/', $try_part)]})
126 ))); # @{[]} to avoid split to @_
141459fa 127 }
128 my @try_actions = @{$children->{$try_part}};
129 TRY_ACTION: foreach my $action (@try_actions) {
7a7ac23c 130 if (my $capture_attr = $action->attributes->{Captures}) {
141459fa 131 my @captures;
132 my @parts = @parts; # localise
7a7ac23c 133
134 # strip Captures into list
135 push(@captures, splice(@parts, 0, $capture_attr->[0]));
136
141459fa 137 # try the remaining parts against children of this action
138 my ($actions, $captures) = $self->recurse_match(
139 $c, '/'.$action->reverse, \@parts
140 );
141 if ($actions) {
142 return [ $action, @$actions ], [ @captures, @$captures ];
143 }
7a7ac23c 144 } else {
145 {
146 local $c->req->{arguments} = [ @{$c->req->args}, @parts ];
147 next TRY_ACTION unless $action->match($c);
148 }
149 push(@{$c->req->args}, @parts);
150 return [ $action ], [ ];
141459fa 151 }
152 }
153 }
154 return ();
155}
156
157=head2 $self->register( $c, $action )
158
159Matt is an idiot and hasn't documented this yet.
160
161=cut
162
163sub register {
164 my ( $self, $c, $action ) = @_;
165
1dc8af44 166 my @chained_attr = @{ $action->attributes->{Chained} || [] };
141459fa 167
1dc8af44 168 return 0 unless @chained_attr;
141459fa 169
1dc8af44 170 if (@chained_attr > 2) {
141459fa 171 Catalyst::Exception->throw(
5882c86e 172 "Multiple Chained attributes not supported registering ${action}"
141459fa 173 );
174 }
175
1dc8af44 176 my $parent = $chained_attr[0];
141459fa 177
178 if (defined($parent) && length($parent)) {
1dc8af44 179 if ($parent eq '.') {
180 $parent = '/'.$action->namespace;
181 } elsif ($parent !~ m/^\//) {
141459fa 182 $parent = '/'.join('/', $action->namespace, $parent);
183 }
184 } else {
1dc8af44 185 $parent = '/'
141459fa 186 }
187
5882c86e 188 $action->attributes->{Chained} = [ $parent ];
792b40ac 189
141459fa 190 my $children = ($self->{children_of}{$parent} ||= {});
191
192 my @path_part = @{ $action->attributes->{PathPart} || [] };
193
09461385 194 my $part = $action->name;
141459fa 195
09461385 196 if (@path_part == 1 && defined $path_part[0]) {
197 $part = $path_part[0];
141459fa 198 } elsif (@path_part > 1) {
199 Catalyst::Exception->throw(
200 "Multiple PathPart attributes not supported registering ${action}"
201 );
202 }
203
792b40ac 204 $action->attributes->{PartPath} = [ $part ];
205
141459fa 206 unshift(@{ $children->{$part} ||= [] }, $action);
207
792b40ac 208 ($self->{actions} ||= {})->{'/'.$action->reverse} = $action;
209
7a7ac23c 210 unless ($action->attributes->{Captures}) {
792b40ac 211 unshift(@{ $self->{endpoints} ||= [] }, $action);
212 }
213
214 return 1;
141459fa 215}
216
217=head2 $self->uri_for_action($action, $captures)
218
219Matt is an idiot and hasn't documented this yet.
220
221=cut
222
223sub uri_for_action {
224 my ( $self, $action, $captures ) = @_;
225
5882c86e 226 return undef unless ($action->attributes->{Chained}
792b40ac 227 && $action->attributes->{Args});
228
229 my @parts = ();
230 my @captures = @$captures;
231 my $parent = "DUMMY";
232 my $curr = $action;
233 while ($curr) {
234 if (my $cap = $curr->attributes->{Captures}) {
235 return undef unless @captures >= $cap->[0]; # not enough captures
236 unshift(@parts, splice(@captures, -$cap->[0]));
237 }
238 if (my $pp = $curr->attributes->{PartPath}) {
239 unshift(@parts, $pp->[0])
240 if (defined $pp->[0] && length $pp->[0]);
241 }
5882c86e 242 $parent = $curr->attributes->{Chained}->[0];
792b40ac 243 $curr = $self->{actions}{$parent};
141459fa 244 }
792b40ac 245
246 return undef unless $parent eq '/'; # fail for dangling action
247
248 return undef if @captures; # fail for too many captures
249
250 return join('/', '', @parts);
251
141459fa 252}
253
254=head1 AUTHOR
255
792b40ac 256Matt S Trout <mst@shadowcatsystems.co.uk>
141459fa 257
258=head1 COPYRIGHT
259
260This program is free software, you can redistribute it and/or modify it under
261the same terms as Perl itself.
262
263=cut
264
2651;