Fix arg constraints example in doc
[catagits/Catalyst-Runtime.git] / lib / Catalyst / RouteMatching.pod
CommitLineData
480d94b5 1=encoding UTF-8
2
3=head1 Name
4
5Catalyst::RouteMatching - How Catalyst maps an incoming URL to actions in controllers.
6
7=head1 Description
8
9This is a WIP document intended to help people understand the logic that L<Catalyst>
10uses to determine how to match in incoming request to an action (or action chain)
11in a controller.
12
2234c98a 13=head2 Request to Controller/Action Matching
14
15L<Catalyst> maps requests to action using a 'longest path wins' approach. That means
16that if the request is '/foo/bar/baz' That means the action 'baz' matches:
17
18 package MyApp::Controller::Foo;
19
20 use Moose;
21 use MooseX::MethodAttributes
22
23 extends 'Catalyst::Controller';
24
25 sub bar :Path('bar') Args(1) { ...}
26 sub baz :Path('bar/baz') Args(0) { ... }
27
28Path length matches take precidence over all other types of matches (included HTTP
29Method, Scheme, etc.). The same holds true for Chained actions. Generally the
30chain that matches the most PathParts wins.
31
32=head2 Args(N) versus Args
33
34'Args' matches any number of args. Because this functions as a sort of catchall, we
35treat 'Args' as the lowest precedence of any Args(N) when N is 0 to infinity. An
36action with 'Args' always get the last chance to match.
37
38=head2 When two or more actions match a given Path
39
40Sometimes two or more actions match the same path and all have the same pathpart
41length. For example:
42
43 package MyApp::Controller::Root;
44
45 use Moose;
46 use MooseX::MethodAttributes
47
48 extends 'Catalyst::Controller';
49
50 sub root :Chained(/) CaptureArgs(0) { }
51
52 sub one :Chained(root) PathPart('') Args(0) { }
53 sub two :Chained(root) PathPart('') Args(0) { }
54 sub three :Chained(root) PathPart('') Args(0) { }
55
56 __PACKAGE__->meta->make_immutable;
57
58In this case the last defined action wins (for the example that is action 'three').
59
60This is most common to happen when you are using action matching beyond paths, such as
61when using method matching:
62
63 package MyApp::Controller::Root;
64
65 use Moose;
66 use MooseX::MethodAttributes
67
68 extends 'Catalyst::Controller';
69
70 sub root :Chained(/) CaptureArgs(0) { }
71
72 sub any :Chained(root) PathPart('') Args(0) { }
73 sub get :GET Chained(root) PathPart('') Args(0) { }
74
75 __PACKAGE__->meta->make_immutable;
76
77In the above example GET /root could match both actions. In this case you should define
78your 'catchall' actions higher in the controller.
79
480d94b5 80=head2 Type Constraints in Args and Capture Args
81
82Beginning in Version 5.90090+ you may use L<Moose>, L<MooseX::Types> or L<Type::Tiny>
83type constraints to futher declare allowed matching for Args or CaptureArgs. Here
84is a simple example:
85
86 package MyApp::Controller::User;
87
88 use Moose;
89 use MooseX::MethodAttributes;
6a226ee3 90 use MooseX::Types::Moose qw(Int);
480d94b5 91
92 extends 'Catalyst::Controller';
93
6a226ee3 94 sub find :Path('') Args(Int) {
480d94b5 95 my ($self, $c, $int) = @_;
96 }
97
98 __PACKAGE__->meta->make_immutable;
99
100In this case the incoming request "http://localhost:/user/100" would match the action
101C<find> but "http://localhost:/user/not_a_number" would not. You may find declaring
d249a614 102constraints in this manner aids with debugging, automatic generation of documentation
103and reducing the amount of manual checking you might need to do in your actions. For
104example if the argument in the given action was going to be used to lookup a row
105in a database, if the matching field expected an integer, a string might cause a database
480d94b5 106exception, prompting you to add additional checking of the argument prior to using it.
d249a614 107In general it is hoped this feature can lead to reduced validation boilerplate and more
108easily understood and declarative actions.
480d94b5 109
110More than one argument may be added by comma separating your type constraint names, for
111example:
112
75ce30d0 113 use Types::Standard qw/Int Str/;
114
480d94b5 115 sub find :Path('') Args(Int,Int,Str) {
116 my ($self, $c, $int1, $int2, $str) = @_;
117 }
118
75ce30d0 119Would require three arguments, an integer, integer and a string. Note in this example we
120constrained the args using imported types via L<Types::Standard>. Although you may use
121stringy Moose types, we recommend imported types since this is less ambiguous to your readers.
122If you want to use Moose stringy types. you must quote them (either "Int" or 'Int' is fine).
123
124Conversely, you should not quote types that are imported!
480d94b5 125
126=head3 Using type constraints in a controller
127
128By default L<Catalyst> allows all the standard, built-in, named type constraints that come
129bundled with L<Moose>. However it is trivial to create your own Type constraint libraries
d249a614 130and export them to a controller that wishes to use them. We recommend using L<Type::Tiny> or
480d94b5 131L<MooseX::Types> for this. Here is an example using some extended type constraints via
132the L<Types::Standard> library that is packaged with L<Type::Tiny>:
133
134 package MyApp::Controller::User;
135
136 use Moose;
137 use MooseX::MethodAttributes;
75ce30d0 138 use Types::Standard qw/StrMatch Int/;
480d94b5 139
140 extends 'Catalyst::Controller';
141
142 sub looks_like_a_date :Path('') Args(StrMatch[qr{\d\d-\d\d-\d\d}]) {
143 my ($self, $c, $int) = @_;
144 }
145
146 __PACKAGE__->meta->make_immutable;
147
148This would match URLs like "http://localhost/user/11-11-2015" for example. If you've been
149missing the old RegExp matching, this can emulate a good chunk of that ability, and more.
150
151A tutorial on how to make custom type libraries is outside the scope of this document. I'd
152recommend looking at the copious documentation in L<Type::Tiny> or in L<MooseX::Types> if
153you prefer that system. The author recommends L<Type::Tiny> if you are unsure which to use.
154
155=head3 Match order when more than one Action matches a path.
156
157As previously described, L<Catalyst> will match 'the longest path', which generally means
158that named path / path_parts will take precidence over Args or CaptureArgs. However, what
159will happen if two actions match the same path with equal args? For example:
160
161 sub an_int :Path(user) Args(Int) {
162 }
163
164 sub an_any :Path(user) Args(1) {
165 }
166
167In this case L<Catalyst> will check actions starting from the LAST one defined. Generally
168this means you should put your most specific action rules LAST and your 'catch-alls' first.
169In the above example, since Args(1) will match any argument, you will find that that 'an_int'
170action NEVER gets hit. You would need to reverse the order:
171
172 sub an_any :Path(user) Args(1) {
173 }
174
175 sub an_int :Path(user) Args(Int) {
176 }
177
d249a614 178Now requests that match this path would first hit the 'an_int' action and will check to see if
179the argument is an integer. If it is, then the action will execute, otherwise it will pass and
180the dispatcher will check the next matching action (in this case we fall thru to the 'an_any'
181action).
480d94b5 182
183=head3 Type Constraints and Chained Actions
184
185Using type constraints in Chained actions works the same as it does for Path and Local or Global
d249a614 186actions. The only difference is that you may declare type constraints on CaptureArgs as
480d94b5 187well as Args. For Example:
188
75ce30d0 189 use Types::Standard qw/Int Tuple/;
190
480d94b5 191 sub chain_base :Chained(/) CaptureArgs(1) { }
192
9228a8ec 193 sub any_priority_chain :GET Chained(chain_base) PathPart('') Args(1) { }
480d94b5 194
195 sub int_priority_chain :Chained(chain_base) PathPart('') Args(Int) { }
196
197 sub link_any :Chained(chain_base) PathPart('') CaptureArgs(1) { }
198
199 sub any_priority_link_any :Chained(link_any) PathPart('') Args(1) { }
200
9228a8ec 201 sub int_priority_link_any :Chained(link_any) PathPart('') Args(Int) { }
480d94b5 202
203 sub link_int :Chained(chain_base) PathPart('') CaptureArgs(Int) { }
204
9228a8ec 205 sub any_priority_link :Chained(link_int) PathPart('') Args(1) { }
480d94b5 206
9228a8ec 207 sub int_priority_link :Chained(link_int) PathPart('') Args(Int) { }
208
209 sub link_int_int :Chained(chain_base) PathPart('') CaptureArgs(Int,Int) { }
210
211 sub any_priority_link2 :Chained(link_int_int) PathPart('') Args(1) { }
212
213 sub int_priority_link2 :Chained(link_int_int) PathPart('') Args(Int) { }
214
215 sub link_tuple :Chained(chain_base) PathPart('') CaptureArgs(Tuple[Int,Int,Int]) { }
216
217 sub any_priority_link3 :Chained(link_tuple) PathPart('') Args(1) { }
218
219 sub int_priority_link3 :Chained(link_tuple) PathPart('') Args(Int) { }
480d94b5 220
221These chained actions migth create match tables like the following:
222
223 [debug] Loaded Chained actions:
9228a8ec 224 .-------------------------------------+--------------------------------------.
225 | Path Spec | Private |
226 +-------------------------------------+--------------------------------------+
227 | /chain_base/*/* | /chain_base (1) |
228 | | => GET /any_priority_chain (1) |
229 | /chain_base/*/*/* | /chain_base (1) |
230 | | -> /link_int (Int) |
231 | | => /any_priority_link (1) |
232 | /chain_base/*/*/*/* | /chain_base (1) |
233 | | -> /link_int_int (Int,Int) |
234 | | => /any_priority_link2 (1) |
235 | /chain_base/*/*/*/*/* | /chain_base (1) |
236 | | -> /link_tuple (Tuple[Int,Int,Int]) |
237 | | => /any_priority_link3 (1) |
238 | /chain_base/*/*/* | /chain_base (1) |
239 | | -> /link_any (1) |
240 | | => /any_priority_link_any (1) |
241 | /chain_base/*/*/*/*/*/* | /chain_base (1) |
242 | | -> /link_tuple (Tuple[Int,Int,Int]) |
243 | | -> /link2_int (UserId) |
244 | | => GET /finally (Int) |
245 | /chain_base/*/*/*/*/*/... | /chain_base (1) |
246 | | -> /link_tuple (Tuple[Int,Int,Int]) |
247 | | -> /link2_int (UserId) |
248 | | => GET /finally2 (...) |
249 | /chain_base/*/* | /chain_base (1) |
250 | | => /int_priority_chain (Int) |
251 | /chain_base/*/*/* | /chain_base (1) |
252 | | -> /link_int (Int) |
253 | | => /int_priority_link (Int) |
254 | /chain_base/*/*/*/* | /chain_base (1) |
255 | | -> /link_int_int (Int,Int) |
256 | | => /int_priority_link2 (Int) |
257 | /chain_base/*/*/*/*/* | /chain_base (1) |
258 | | -> /link_tuple (Tuple[Int,Int,Int]) |
259 | | => /int_priority_link3 (Int) |
260 | /chain_base/*/*/* | /chain_base (1) |
261 | | -> /link_any (1) |
262 | | => /int_priority_link_any (Int) |
263 '-------------------------------------+--------------------------------------'
480d94b5 264
265As you can see the same general path could be matched by various action chains. In this case
266the rule described in the previous section should be followed, which is that L<Catalyst>
267will start with the last defined action and work upward. For example the action C<int_priority_chain>
268would be checked before C<any_priority_chain>. The same applies for actions that are midway links
269in a longer chain. In this case C<link_int> would be checked before C<link_any>. So as always we
270recommend that you place you priority or most constrainted actions last and you least or catch-all
271actions first.
272
273Although this reverse order checking may seen counter intuitive it does have the added benefit that
274when inheriting controllers any new actions added would take check precedence over those in your
275parent controller or consumed role.
276
9228a8ec 277Please note that your declared type constraint names will now appear in the debug console.
278
480d94b5 279=head1 Author
280
281John Napiorkowski L<jjnapiork@cpan.org|email:jjnapiork@cpan.org>
282
283=cut
284