doc improvements
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Intro.pod
1 =head1 NAME
2
3 Catalyst::Manual::Intro - Introduction to Catalyst
4
5 =head1 DESCRIPTION
6
7 This is a brief introduction to Catalyst. It explains the most important
8 features of how Catalyst works and shows how to get a simple application
9 up and running quickly. For an introduction (without code) to Catalyst
10 itself, and why you should be using it, see L<Catalyst::Manual::About>.
11 For a systematic step-by-step introduction to writing an application
12 with Catalyst, see L<Catalyst::Manual::Tutorial>.
13
14 =head2 What is Catalyst?
15
16 Catalyst is an elegant web application framework, extremely flexible
17 yet extremely simple. It's similar to Ruby on Rails, Spring (Java),
18 and L<Maypole>, upon which it was originally based. Its most important
19 design philosphy is to provide easy access to all the tools you need
20 to develop web applications, with few restrictions on how you need to
21 use these tools. However, this does mean that it is always possible to
22 do things in a different way. Other web frameworks are B<initially>
23 simpler to use, but achieve this by locking the programmer into a
24 single set of tools. Catalyst's emphasis on flexibility means that you
25 have to think more to use it. We view this as a feature.  For example,
26 this leads to Catalyst being more suited to system integration tasks
27 than other web frameworks.
28
29 =head3 MVC
30
31 Catalyst follows the Model-View-Controller (MVC) design pattern,
32 allowing you to easily separate concerns, like content, presentation,
33 and flow control, into separate modules. This separation allows you to
34 modify code that handles one concern without affecting code that handles
35 the others. Catalyst promotes the re-use of existing Perl modules that
36 already handle common web application concerns well.
37
38 Here's how the Model, View, and Controller map to those concerns, with
39 examples of well-known Perl modules you may want to use for each.
40
41 =over 4
42
43 =item * B<Model>
44
45 Access and modify content (data). L<DBIx::Class>, L<Class::DBI>,
46 L<Xapian>, L<Net::LDAP>...
47
48 =item * B<View>
49
50 Present content to the user. L<Template Toolkit|Template>,
51 L<Mason|HTML::Mason>, L<HTML::Template>...
52
53 =item * B<Controller>
54
55 Control the whole request phase, check parameters, dispatch actions, flow
56 control. Catalyst itself!
57
58 =back
59
60 If you're unfamiliar with MVC and design patterns, you may want to
61 check out the original book on the subject, I<Design Patterns>, by
62 Gamma, Helm, Johnson, and Vlissides, also known as the Gang of Four
63 (GoF).  Many, many web application frameworks are based on MVC, which
64 is becoming a popular design paradigm for the world wide web.
65
66 =head3 Flexibility
67
68 Catalyst is much more flexible than many other frameworks. Rest assured
69 you can use your favorite Perl modules with Catalyst.
70
71 =over 4
72
73 =item * B<Multiple Models, Views, and Controllers>
74
75 To build a Catalyst application, you handle each type of concern inside
76 special modules called L</Components>. Often this code will be very
77 simple, just calling out to Perl modules like those listed above under
78 L</MVC>. Catalyst handles these components in a very flexible way. Use
79 as many Models, Views, and Controllers as you like, using as many
80 different Perl modules as you like, all in the same application. Want to
81 manipulate multiple databases, and retrieve some data via LDAP? No
82 problem. Want to present data from the same Model using L<Template
83 Toolkit|Template> and L<PDF::Template>? Easy.
84
85 =item * B<Reuseable Components>
86
87 Not only does Catalyst promote the re-use of already existing Perl
88 modules, it also allows you to re-use your Catalyst components in
89 multiple Catalyst applications.
90
91 =item * B<Unrestrained URL-to-Action Dispatching>
92
93 Catalyst allows you to dispatch any URLs to any application L</Actions>,
94 even through regular expressions! Unlike most other frameworks, it
95 doesn't require mod_rewrite or class and method names in URLs.
96
97 With Catalyst you register your actions and address them directly. For
98 example:
99
100     sub hello : Global {
101         my ( $self, $context ) = @_;
102         $context->response->body('Hello World!');
103     }
104
105 Now http://localhost:3000/hello prints "Hello World!".
106
107 =item * B<Support for CGI, mod_perl, Apache::Request, FastCGI>
108
109 Use L<Catalyst::Engine::Apache> or L<Catalyst::Engine::CGI>. Other
110 engines are also available.
111
112 =back
113
114 =head3 Simplicity
115
116 The best part is that Catalyst implements all this flexibility in a very
117 simple way.
118
119 =over 4
120
121 =item * B<Building Block Interface>
122
123 Components interoperate very smoothly. For example, Catalyst
124 automatically makes a L</Context> object available to every
125 component. Via the context, you can access the request object, share
126 data between components, and control the flow of your
127 application. Building a Catalyst application feels a lot like snapping
128 together toy building blocks, and everything just works.
129
130 =item * B<Component Auto-Discovery>
131
132 No need to C<use> all of your components. Catalyst automatically finds
133 and loads them.
134
135 =item * B<Pre-Built Components for Popular Modules>
136
137 See L<Catalyst::Model::DBIC::Schema> for L<DBIx::Class>, or
138 L<Catalyst::View::TT> for L<Template Toolkit|Template>.
139
140 =item * B<Built-in Test Framework>
141
142 Catalyst comes with a built-in, lightweight http server and test
143 framework, making it easy to test applications from the web browser,
144 and the command line.
145
146 =item * B<Helper Scripts>
147
148 Catalyst provides helper scripts to quickly generate running starter
149 code for components and unit tests. Install L<Catalyst::Devel> and see
150 L<Catalyst::Helper>.
151
152 =back
153
154 =head2 Quickstart
155
156 Here's how to install Catalyst and get a simple application up and
157 running, using the helper scripts described above.
158
159 =head3 Install
160
161 Installation of Catalyst can be a time-consuming and frustrating
162 effort, due to its large number of dependencies. The easiest way
163 to get up and running is to use Matt Trout's C<cat-install>
164 script, from L<http://www.shadowcatsystems.co.uk/static/cat-install>,
165 and then install L<Catalyst::Devel>.
166
167     # perl cat-install
168     # perl -MCPAN -e 'install Catalyst::Devel'
169
170 =head3 Setup
171
172     $ catalyst.pl MyApp
173     # output omitted
174     $ cd MyApp
175     $ script/myapp_create.pl controller Library::Login
176
177 =head3 Run
178
179     $ script/myapp_server.pl
180
181 Now visit these locations with your favorite browser or user agent to see
182 Catalyst in action:
183
184 (NOTE: Although we create a controller here, we don't actually use it.
185 Both of these URLs should take you to the welcome page.)
186
187
188 =over 4
189
190 =item http://localhost:3000/
191
192 =item http://localhost:3000/library/login/
193
194 =back
195
196 =head2 How It Works
197
198 Let's see how Catalyst works, by taking a closer look at the components
199 and other parts of a Catalyst application.
200
201 =head3 Components
202
203 Catalyst has an uncommonly flexible component system. You can define as
204 many L</Models>, L</Views>, and L</Controllers> as you like. As discussed
205 previously, the general idea is that the View is responsible for the
206 output of data to the user (typically via a web browser, but a View can
207 also generate PDFs or e-mails, for example); the Model is responsible 
208 for providing data (typically from a relational database); and the
209 Controller is responsible for interacting with the user and deciding
210 how user input determines what actions the application takes.
211
212 In the world of MVC, there are frequent discussions and disagreements
213 about the nature of each element - whether certain types of logic
214 belong in the Model or the Controller, etc. Catalyst's flexibility
215 means that this decision is entirely up to you, the programmer; 
216 Catalyst doesn't enforce anything. See L<Catalyst::Manual::About> for
217 a general discussion of these issues.
218
219 All components must inherit from L<Catalyst::Base>, which provides a
220 simple class structure and some common class methods like C<config> and
221 C<new> (constructor).
222
223     package MyApp::Controller::Catalog;
224
225     use strict;
226     use base 'Catalyst::Base';
227
228     __PACKAGE__->config( foo => 'bar' );
229
230     1;
231
232 You don't have to C<use> or otherwise register Models, Views, and
233 Controllers.  Catalyst automatically discovers and instantiates them
234 when you call C<setup> in the main application. All you need to do is
235 put them in directories named for each Component type. You can use a
236 short alias for each one.
237
238 =over 4
239
240 =item * B<MyApp/Model/> 
241
242 =item * B<MyApp/M/>
243
244 =item * B<MyApp/View/>
245
246 =item * B<MyApp/V/>
247
248 =item * B<MyApp/Controller/>
249
250 =item * B<MyApp/C/>
251
252 =back
253
254 In older versions of Catalyst, the recommended practice (and the one
255 automatically created by helper scripts) was to name the directories
256 C<M/>, C<V/>, and C<C/>. Though these still work, we now recommend
257 the use of the full names.
258
259 =head4 Views
260
261 To show how to define views, we'll use an already-existing base class for the
262 L<Template Toolkit|Template>, L<Catalyst::View::TT>. All we need to do is
263 inherit from this class:
264
265     package MyApp::View::TT;
266
267     use strict;
268     use base 'Catalyst::View::TT';
269
270     1;
271
272 (You can also generate this automatically by using the helper script:
273
274     script/myapp_create.pl view TT TT
275
276 where the first C<TT> tells the script that the name of the view should
277 be C<TT>, and the second that it should be a Template Toolkit view.)
278
279 This gives us a process() method and we can now just do
280 $c->forward('MyApp::View::TT') to render our templates. The base class
281 makes process() implicit, so we don't have to say
282 C<$c-E<gt>forward(qw/MyApp::View::TT process/)>.
283
284     sub hello : Global {
285         my ( $self, $c ) = @_;
286         $c->stash->{template} = 'hello.tt';
287     }
288
289     sub end : Private {
290         my ( $self, $c ) = @_;
291         $c->forward( $c->view('TT') );
292     }
293
294 You normally render templates at the end of a request, so it's a perfect
295 use for the global C<end> action.
296
297 In practice, however, you would use a default C<end> action as supplied
298 by L<Catalyst::Action::RenderView>.
299
300 Also, be sure to put the template under the directory specified in
301 C<$c-E<gt>config-E<gt>{root}>, or you'll end up looking at the debug
302 screen.
303
304 =head4 Models
305
306 Models are providers of data. This data could come from anywhere - a
307 search engine index, a spreadsheet, the file system - but typically a
308 Model represents a database table. The data source does not
309 intrinsically have much to do with web applications or Catalyst - it
310 could just as easily be used to write an offline report generator or a
311 command-line tool.
312
313 To show how to define models, again we'll use an already-existing base
314 class, this time for L<DBIx::Class>: L<Catalyst::Model::DBIC::Schema>.
315 We'll also need L<DBIx::Class::Schema::Loader>.
316
317 But first, we need a database.
318
319     -- myapp.sql
320     CREATE TABLE foo (
321         id INTEGER PRIMARY KEY,
322         data TEXT
323     );
324
325     CREATE TABLE bar (
326         id INTEGER PRIMARY KEY,
327         foo INTEGER REFERENCES foo,
328         data TEXT
329     );
330
331     INSERT INTO foo (data) VALUES ('TEST!');
332
333     % sqlite /tmp/myapp.db < myapp.sql
334
335 Now we can create a DBIC::Schema model for this database.
336
337     script/myapp_create.pl model MyModel DBIC::Schema MySchema create=static 'dbi:SQLite:/tmp/myapp.db'
338
339 L<DBIx::Class::Schema::Loader> automatically loads table layouts and
340 relationships, and converts them into a static schema definition C<MySchema>,
341 which you can edit later.
342
343 Use the stash to pass data to your templates.
344
345 We add the following to MyApp/Controller/Root.pm
346
347     sub view : Global {
348         my ( $self, $c, $id ) = @_;
349         
350         $c->stash->{item} = $c->model('MyModel::Foo')->find($id);
351     }
352
353     1;
354     
355     sub end : Private {
356         my ( $self, $c ) = @_;
357         
358         $c->stash->{template} ||= 'index.tt';
359         $c->forward( $c->view('TT') );
360     }
361
362 We then create a new template file "root/index.tt" containing:
363
364     The Id's data is [% item.data %]
365
366 Models do not have to be part of your Catalyst application; you
367 can always call an outside module that serves as your Model:
368
369     # in a Controller
370     sub list : Local {
371       my ( $self, $c ) = @_;
372       
373       $c->stash->{template} = 'list.tt';
374       
375       use Some::Outside::Database::Module;
376       my @records = Some::Outside::Database::Module->search({
377         artist => 'Led Zeppelin',
378         });
379       
380       $c->stash->{records} = \@records;
381     }
382
383 But by using a Model that is part of your Catalyst application, you
384 gain several things: you don't have to C<use> each component, Catalyst
385 will find and load it automatically at compile-time; you can
386 C<forward> to the module, which can only be done to Catalyst
387 components.  Only Catalyst components can be fetched with
388 C<$c-E<gt>model('SomeModel')>.
389
390 Happily, since many people have existing Model classes that they
391 would like to use with Catalyst (or, conversely, they want to
392 write Catalyst models that can be used outside of Catalyst, e.g.
393 in a cron job), it's trivial to write a simple component in
394 Catalyst that slurps in an outside Model:
395
396     package MyApp::Model::DB;
397     use base qw/Catalyst::Model::DBIC::Schema/;
398     __PACKAGE__->config(
399         schema_class => 'Some::DBIC::Schema',
400         connect_info => ['dbi:SQLite:foo.db', '', '', {AutoCommit=>1}]
401     );
402     1;
403
404 and that's it! Now C<Some::DBIC::Schema> is part of your
405 Cat app as C<MyApp::Model::DB>.
406
407 Within Catalyst, the common approach to writing a model for your
408 application is wrapping a generic model (e.g. L<DBIx::Class::Schema>, a
409 bunch of XMLs, or anything really) with an object that contains
410 configuration data, convenience methods, and so forth. Thus you
411 will in effect have two models - a wrapper model that knows something
412 about Catalyst and your web application, and a generic model that is
413 totally independent of these needs.
414
415 Technically, within Catalyst a model is a B<component> - an instance of
416 the model's class belonging to the application. It is important to
417 stress that the lifetime of these objects is per application, not per
418 request.
419
420 While the model base class (L<Catalyst::Model>) provides things like
421 C<config> to better integrate the model into the application, sometimes
422 this is not enough, and the model requires access to C<$c> itself.
423
424 Situations where this need might arise include:
425
426 =over 4
427
428 =item *
429
430 Interacting with another model
431
432 =item *
433
434 Using per-request data to control behavior
435
436 =item *
437
438 Using plugins from a Model (for example L<Catalyst::Plugin::Cache>).
439
440 =back
441
442 From a style perspective it's usually considered bad form to make your
443 model "too smart" about things - it should worry about business logic
444 and leave the integration details to the controllers. If, however, you
445 find that it does not make sense at all to use an auxillary controller
446 around the model, and the model's need to access C<$c> cannot be
447 sidestepped, there exists a power tool called L</ACCEPT_CONTEXT>.
448
449 =head4 Controllers
450
451 Multiple controllers are a good way to separate logical domains of your
452 application.
453
454     package MyApp::Controller::Login;
455
456     use base qw/Catalyst::Controller/;
457
458     sub login : Path("login") { }
459     sub new_password : Path("new-password") { }
460     sub logout : Path("logout") { }
461
462     package MyApp::Controller::Catalog;
463
464     use base qw/Catalyst::Controller/;
465
466     sub view : Local { }
467     sub list : Local { }
468
469     package MyApp::Controller::Cart;
470
471     use base qw/Catalyst::Controller/;
472
473     sub add : Local { }
474     sub update : Local { }
475     sub order : Local { }
476
477 Note that you can also supply attributes via the Controller's config so
478 long as you have at least one attribute on a subref to be exported
479 (:Action is commonly used for this) - for example the following is
480 equivalent to the same controller above:
481
482     package MyApp::Controller::Login;
483
484     use base qw/Catalyst::Controller/;
485
486     __PACKAGE__->config(
487       actions => {
488         'sign_in' => { Path => 'sign-in' },
489         'new_password' => { Path => 'new-password' },
490         'sign_out' => { Path => 'sign-out' },
491       },
492     );
493
494     sub sign_in : Action { }
495     sub new_password : Action { }
496     sub sign_out : Action { }
497
498 =head3 ACCEPT_CONTEXT
499
500 Whenever you call $c->component("Foo") you get back an object - the
501 instance of the model. If the component supports the C<ACCEPT_CONTEXT>
502 method instead of returning the model itself, the return value of C<<
503 $model->ACCEPT_CONTEXT( $c ) >> will be used.
504
505 This means that whenever your model/view/controller needs to talk to C<$c> it
506 gets a chance to do this when it's needed.
507
508 A typical C<ACCEPT_CONTEXT> method will either clone the model and return one
509 with the context object set, or it will return a thin wrapper that contains
510 C<$c> and delegates to the per-application model object.
511
512 A typical C<ACCEPT_CONTEXT> method could look like this:
513
514     sub ACCEPT_CONTEXT {
515       my ( $self, $c, @extra_arguments ) = @_;
516       bless { %$self, c => $c }, ref($self);
517     }
518
519 effectively treating $self as a B<prototype object> that gets a new parameter.
520 C<@extra_arguments> comes from any trailing arguments to
521 C<< $c->component( $bah, @extra_arguments ) >> (or C<< $c->model(...) >>,
522 C<< $c->view(...) >> etc).
523
524 The life time of this value is B<per usage>, and not per request. To make this
525 per request you can use the following technique:
526
527 Add a field to C<$c>, like C<my_model_instance>. Then write your
528 C<ACCEPT_CONTEXT> method to look like this:
529
530     sub ACCEPT_CONTEXT {
531       my ( $self, $c ) = @_;
532
533       if ( my $per_request = $c->my_model_instance ) {
534         return $per_request;
535       } else {
536         my $new_instance = bless { %$self, c => $c }, ref($self);
537         Scalar::Util::weaken($new_instance->{c}); # or we have a circular reference
538         $c->my_model_instance( $new_instance );
539         return $new_instance;
540       }
541     }
542
543 =head3 Application Class
544
545 In addition to the Model, View, and Controller components, there's a
546 single class that represents your application itself. This is where you
547 configure your application, load plugins, and extend Catalyst.
548
549     package MyApp;
550
551     use strict;
552     use Catalyst qw/-Debug/; # Add other plugins here, e.g.
553                              # for session support
554
555     MyApp->config(
556         name => 'My Application',
557
558         # You can put anything else you want in here:
559         my_configuration_variable => 'something',
560     );
561     1;
562
563 In older versions of Catalyst, the application class was where you put
564 global actions. However, as of version 5.66, the recommended practice is
565 to place such actions in a special Root controller (see L</Actions>,
566 below), to avoid namespace collisions.
567
568 =over 4
569
570 =item * B<name>
571
572 The name of your application.
573
574 =back
575
576 Optionally, you can specify a B<root> parameter for templates and static
577 data.  If omitted, Catalyst will try to auto-detect the directory's
578 location. You can define as many parameters as you want for plugins or
579 whatever you need. You can access them anywhere in your application via
580 C<$context-E<gt>config-E<gt>{$param_name}>.
581
582 =head3 Context
583
584 Catalyst automatically blesses a Context object into your application
585 class and makes it available everywhere in your application. Use the
586 Context to directly interact with Catalyst and glue your L</Components>
587 together. For example, if you need to use the Context from within a
588 Template Toolkit template, it's already there:
589
590     <h1>Welcome to [% c.config.name %]!</h1>
591
592 As illustrated in our URL-to-Action dispatching example, the Context is
593 always the second method parameter, behind the Component object
594 reference or class name itself. Previously we called it C<$context> for
595 clarity, but most Catalyst developers just call it C<$c>:
596
597     sub hello : Global {
598         my ( $self, $c ) = @_;
599         $c->res->body('Hello World!');
600     }
601
602 The Context contains several important objects:
603
604 =over 4
605
606 =item * L<Catalyst::Request>
607
608     $c->request
609     $c->req # alias
610
611 The request object contains all kinds of request-specific information, like
612 query parameters, cookies, uploads, headers, and more.
613
614     $c->req->params->{foo};
615     $c->req->cookies->{sessionid};
616     $c->req->headers->content_type;
617     $c->req->base;
618     $c->req->uri_with( { page = $pager->next_page } );
619
620 =item * L<Catalyst::Response>
621
622     $c->response
623     $c->res # alias
624
625 The response is like the request, but contains just response-specific
626 information.
627
628     $c->res->body('Hello World');
629     $c->res->status(404);
630     $c->res->redirect('http://oook.de');
631
632 =item * L<Catalyst::Config>
633
634     $c->config
635     $c->config->{root};
636     $c->config->{name};
637
638 =item * L<Catalyst::Log>
639
640     $c->log
641     $c->log->debug('Something happened');
642     $c->log->info('Something you should know');
643
644 =item * B<Stash>
645
646     $c->stash
647     $c->stash->{foo} = 'bar';
648     $c->stash->{baz} = {baz => 'qox'};
649     $c->stash->{fred} = [qw/wilma pebbles/];
650
651 and so on.
652
653 =back
654
655 The last of these, the stash, is a universal hash for sharing data among
656 application components. For an example, we return to our 'hello' action:
657
658     sub hello : Global {
659         my ( $self, $c ) = @_;
660         $c->stash->{message} = 'Hello World!';
661         $c->forward('show_message');
662     }
663
664     sub show_message : Private {
665         my ( $self, $c ) = @_;
666         $c->res->body( $c->stash->{message} );
667     }
668
669 Note that the stash should be used only for passing data in an
670 individual request cycle; it gets cleared at a new request. If you need
671 to maintain persistent data, use a session. See
672 L<Catalyst::Plugin::Session> for a comprehensive set of
673 Catalyst-friendly session-handling tools.
674
675 =head3 Actions
676
677 A Catalyst controller is defined by its actions. An action is a
678 subroutine with a special attribute. You've already seen some examples
679 of actions in this document. The URL (for example
680 http://localhost.3000/foo/bar) consists of two parts, the base
681 (http://localhost:3000/ in this example) and the path (foo/bar).  Please
682 note that the trailing slash after the hostname[:port] always belongs to
683 base and not to the action.
684
685 =over 4
686
687 =item * B<Application Wide Actions>
688
689 Actions which are called at the root level of the application
690 (e.g. http://localhost:3000/ ) go in MyApp::Controller::Root, like
691 this:
692
693     package MyApp::Controller::Root;
694     use base 'Catalyst::Controller';
695     # Sets the actions in this controller to be registered with no prefix
696     # so they function identically to actions created in MyApp.pm
697     __PACKAGE__->config->{namespace} = '';
698     sub default : Private {
699         my ( $self, $context ) = @_;
700         $context->response->body('Catalyst rocks!');
701     }
702     1;
703
704 =back
705
706 =head4 Action types
707
708 Catalyst supports several types of actions:
709
710 =over 4
711
712 =item * B<Literal> (B<Path> actions)
713
714     package MyApp::Controller::My::Controller;
715     sub bar : Path('foo/bar') { }
716
717 Literal C<Path> actions will act relative to their current
718 namespace. The above example matches only
719 http://localhost:3000/my/controller/foo/bar. If you start your path with
720 a forward slash, it will match from the root. Example:
721
722     package MyApp::Controller::My::Controller;
723     sub bar : Path('/foo/bar') { }
724
725 Matches only http://localhost:3000/foo/bar.
726
727     package MyApp::Controller::My::Controller;
728     sub bar : Path { }
729
730 By leaving the C<Path> definition empty, it will match on the namespace
731 root. The above code matches http://localhost:3000/my/controller.
732
733 =item * B<Regex>
734
735     sub bar : Regex('^item(\d+)/order(\d+)$') { }
736
737 Matches any URL that matches the pattern in the action key, e.g.
738 http://localhost:3000/item23/order42. The '' around the regexp is
739 optional, but perltidy likes it. :)
740
741 Regex matches act globally, i.e. without reference to the namespace from
742 which it is called, so that a C<bar> method in the
743 C<MyApp::Controller::Catalog::Order::Process> namespace won't match any
744 form of C<bar>, C<Catalog>, C<Order>, or C<Process> unless you
745 explicitly put this in the regex. To achieve the above, you should
746 consider using a C<LocalRegex> action.
747
748 =item * B<LocalRegex>
749
750     sub bar : LocalRegex('^widget(\d+)$') { }
751
752 LocalRegex actions act locally. If you were to use C<bar> in
753 C<MyApp::Controller::Catalog>, the above example would match urls like
754 http://localhost:3000/catalog/widget23.
755
756 If you omit the "C<^>" from your regex, then it will match any depth
757 from the controller and not immediately off of the controller name. The
758 following example differs from the above code in that it will match
759 http://localhost:3000/catalog/foo/widget23 as well.
760
761     package MyApp::Controller::Catalog;
762     sub bar : LocalRegex('widget(\d+)$') { }
763
764 For both LocalRegex and Regex actions, if you use capturing parentheses
765 to extract values within the matching URL, those values are available in
766 the C<$c-E<gt>req-E<gt>captures> array. In the above example, "widget23"
767 would capture "23" in the above example, and
768 C<$c-E<gt>req-E<gt>captures-E<gt>[0]> would be "23". If you want to pass
769 arguments at the end of your URL, you must use regex action keys. See
770 L</URL Path Handling> below.
771
772 =item * B<Top-level> (B<Global>)
773
774     package MyApp::Controller::Foo;
775     sub foo : Global { }
776
777 Matches http://localhost:3000/foo. The function name is mapped
778 directly to the application base.  You can provide an equivalent
779 function in this case  by doing the following:
780
781     package MyApp::Controller::Root
782     sub foo : Local { }
783
784 =item * B<Namespace-Prefixed> (B<Local>)
785
786     package MyApp::Controller::My::Controller; 
787     sub foo : Local { }
788
789 Matches http://localhost:3000/my/controller/foo. 
790
791 This action type indicates that the matching URL must be prefixed with a
792 modified form of the component's class (package) name. This modified
793 class name excludes the parts that have a pre-defined meaning in
794 Catalyst ("MyApp::Controller" in the above example), replaces "::" with
795 "/", and converts the name to lower case.  See L</Components> for a full
796 explanation of the pre-defined meaning of Catalyst component class
797 names.
798
799 =item * B<Chained>
800
801 Catalyst also provides a method to build and dispatch chains of actions,
802 like
803
804     sub catalog : Chained : CaptureArgs(1) {
805         my ( $self, $c, $arg ) = @_;
806         ...
807     }
808
809     sub item : Chained('catalog') : Args(1) {
810         my ( $self, $c, $arg ) = @_;
811         ...
812     }
813
814 to handle a C</catalog/*/item/*> path. For further information about this
815 dispatch type, please see L<Catalyst::DispatchType::Chained>.
816
817 =item * B<Private>
818
819     sub foo : Private { }
820
821 Matches no URL, and cannot be executed by requesting a URL that
822 corresponds to the action key. Catalyst's :Private attribute is
823 exclusive and doesn't work with other attributes (so will not work
824 combined with Path or Chained attributes). With the exception of the
825 C< index >, C< auto > and C< default > actions, Private actions can
826 only be executed from inside a Catalyst application, by calling the
827 C<forward> or C<detach> methods:
828
829     $c->forward('foo');
830     # or
831     $c->detach('foo');
832
833 See L</Flow Control> for a full explanation of C<forward>. Note that, as
834 discussed there, when forwarding from another component, you must use
835 the absolute path to the method, so that a private C<bar> method in your
836 C<MyApp::Controller::Catalog::Order::Process> controller must, if called
837 from elsewhere, be reached with
838 C<$c-E<gt>forward('/catalog/order/process/bar')>.
839
840 =item * B<Args>
841
842 Args is not an action type per se, but an action modifier - it adds a
843 match restriction to any action it's provided to, requiring only as many
844 path parts as are specified for the action to be valid - for example in
845 MyApp::Controller::Foo,
846
847   sub bar :Local
848
849 would match any URL starting /foo/bar/. To restrict this you can do
850
851   sub bar :Local :Args(1)
852
853 to only match /foo/bar/*/
854
855 =back
856
857 B<Note:> After seeing these examples, you probably wonder what the point
858 is of defining names for regex and path actions. Every public action is
859 also a private one, so you have one unified way of addressing components
860 in your C<forward>s.
861
862 =head4 Built-in Private Actions
863
864 In response to specific application states, Catalyst will automatically
865 call these built-in private actions in your application class:
866
867 =over 4
868
869 =item * B<default : Private>
870
871 Called when no other action matches. Could be used, for example, for
872 displaying a generic frontpage for the main app, or an error page for
873 individual controllers.
874
875 If C<default> isn't acting how you would expect, look at using a
876 L</Literal> C<Path> action (with an empty path string). The difference
877 is that C<Path> takes arguments relative from the namespace and
878 C<default> I<always> takes arguments relative from the root, regardless
879 of what controller it's in. Indeed, this is now the recommended way of
880 handling default situations; the C<default> private controller should
881 be considered deprecated.
882
883 =item * B<index : Private>
884
885 C<index> is much like C<default> except that it takes no arguments
886 and it is weighted slightly higher in the matching process. It is
887 useful as a static entry point to a controller, e.g. to have a static
888 welcome page. Note that it's also weighted higher than Path.
889
890 =item * B<begin : Private>
891
892 Called at the beginning of a request, before any matching actions are
893 called.
894
895 =item * B<end : Private>
896
897 Called at the end of a request, after all matching actions are called.
898
899 =back
900
901 =head4 Built-in actions in controllers/autochaining
902
903     Package MyApp::Controller::Foo;
904     sub begin : Private { }
905     sub default : Private { }
906     sub auto : Private { }
907
908 You can define built-in private actions within your controllers as
909 well. The actions will override the ones in less-specific controllers,
910 or your application class. In other words, for each of the three
911 built-in private actions, only one will be run in any request
912 cycle. Thus, if C<MyApp::Controller::Catalog::begin> exists, it will be
913 run in place of C<MyApp::begin> if you're in the C<catalog> namespace,
914 and C<MyApp::Controller::Catalog::Order::begin> would override this in
915 turn.
916
917 =over 4
918
919 =item * B<auto : Private>
920
921 In addition to the normal built-in actions, you have a special action
922 for making chains, C<auto>. Such C<auto> actions will be run after any
923 C<begin>, but before your action is processed. Unlike the other
924 built-ins, C<auto> actions I<do not> override each other; they will be
925 called in turn, starting with the application class and going through to
926 the I<most> specific class. I<This is the reverse of the order in which
927 the normal built-ins override each other>.
928
929 =back
930
931 Here are some examples of the order in which the various built-ins
932 would be called:
933
934 =over 4
935
936 =item for a request for C</foo/foo>
937
938   MyApp::begin
939   MyApp::auto
940   MyApp::Controller::Foo::default # in the absence of MyApp::Controller::Foo::Foo
941   MyApp::end
942
943 =item for a request for C</foo/bar/foo>
944
945   MyApp::Controller::Foo::Bar::begin
946   MyApp::auto
947   MyApp::Controller::Foo::auto
948   MyApp::Controller::Foo::Bar::auto
949   MyApp::Controller::Foo::Bar::default # for MyApp::Controller::Foo::Bar::foo
950   MyApp::Controller::Foo::Bar::end
951
952 =back
953
954 The C<auto> action is also distinguished by the fact that you can break
955 out of the processing chain by returning 0. If an C<auto> action returns
956 0, any remaining actions will be skipped, except for C<end>. So, for the
957 request above, if the first auto returns false, the chain would look
958 like this:
959
960 =over 4
961
962 =item for a request for C</foo/bar/foo> where first C<auto> returns
963 false
964
965   MyApp::Controller::Foo::Bar::begin
966   MyApp::auto
967   MyApp::Controller::Foo::Bar::end
968
969 =back
970
971 An example of why one might use this is an authentication action: you
972 could set up a C<auto> action to handle authentication in your
973 application class (which will always be called first), and if
974 authentication fails, returning 0 would skip any remaining methods
975 for that URL.
976
977 B<Note:> Looking at it another way, C<auto> actions have to return a
978 true value to continue processing! You can also C<die> in the auto
979 action; in that case, the request will go straight to the finalize
980 stage, without processing further actions.
981
982 =head4 URL Path Handling
983
984 You can pass variable arguments as part of the URL path, separated with 
985 forward slashes (/). If the action is a Regex or LocalRegex, the '$' anchor 
986 must be used. For example, suppose you want to handle C</foo/$bar/$baz>, 
987 where C<$bar> and C<$baz> may vary:
988
989     sub foo : Regex('^foo$') { my ($self, $context, $bar, $baz) = @_; }
990
991 But what if you also defined actions for C</foo/boo> and C</foo/boo/hoo>?
992
993     sub boo : Path('foo/boo') { .. }
994     sub hoo : Path('foo/boo/hoo') { .. }
995
996 Catalyst matches actions in most specific to least specific order:
997
998     /foo/boo/hoo
999     /foo/boo
1000     /foo # might be /foo/bar/baz but won't be /foo/boo/hoo
1001
1002 So Catalyst would never mistakenly dispatch the first two URLs to the
1003 '^foo$' action.
1004
1005 If a Regex or LocalRegex action doesn't use the '$' anchor, the action will 
1006 still match a URL containing arguments, however the arguments won't be 
1007 available via C<@_>.
1008
1009 =head4 Parameter Processing
1010
1011 Parameters passed in the URL query string are handled with methods in
1012 the L<Catalyst::Request> class. The C<param> method is functionally
1013 equivalent to the C<param> method of C<CGI.pm> and can be used in
1014 modules that require this.
1015
1016     # http://localhost:3000/catalog/view/?category=hardware&page=3
1017     my $category = $c->req->param('category');
1018     my $current_page = $c->req->param('page') || 1;
1019
1020     # multiple values for single parameter name
1021     my @values = $c->req->param('scrolling_list');          
1022
1023     # DFV requires a CGI.pm-like input hash
1024     my $results = Data::FormValidator->check($c->req->params, \%dfv_profile);
1025
1026 =head3 Flow Control
1027
1028 You control the application flow with the C<forward> method, which
1029 accepts the key of an action to execute. This can be an action in the
1030 same or another Catalyst controller, or a Class name, optionally
1031 followed by a method name. After a C<forward>, the control flow will
1032 return to the method from which the C<forward> was issued.
1033
1034 A C<forward> is similar to a method call. The main differences are that
1035 it wraps the call in an C<eval> to allow exception handling; it
1036 automatically passes along the context object (C<$c> or C<$context>);
1037 and it allows profiling of each call (displayed in the log with
1038 debugging enabled).
1039
1040     sub hello : Global {
1041         my ( $self, $c ) = @_;
1042         $c->stash->{message} = 'Hello World!';
1043         $c->forward('check_message'); # $c is automatically included
1044     }
1045
1046     sub check_message : Private {
1047         my ( $self, $c ) = @_;
1048         return unless $c->stash->{message};
1049         $c->forward('show_message');
1050     }
1051
1052     sub show_message : Private {
1053         my ( $self, $c ) = @_;
1054         $c->res->body( $c->stash->{message} );
1055     }
1056
1057 A C<forward> does not create a new request, so your request object
1058 (C<$c-E<gt>req>) will remain unchanged. This is a key difference between
1059 using C<forward> and issuing a redirect.
1060
1061 You can pass new arguments to a C<forward> by adding them
1062 in an anonymous array. In this case C<$c-E<gt>req-E<gt>args>
1063 will be changed for the duration of the C<forward> only; upon
1064 return, the original value of C<$c-E<gt>req-E<gt>args> will
1065 be reset.
1066
1067     sub hello : Global {
1068         my ( $self, $c ) = @_;
1069         $c->stash->{message} = 'Hello World!';
1070         $c->forward('check_message',[qw/test1/]);
1071         # now $c->req->args is back to what it was before
1072     }
1073
1074     sub check_message : Private {
1075         my ( $self, $c ) = @_;
1076         my $first_argument = $c->req->args->[0]; # now = 'test1'
1077         # do something...
1078     }
1079
1080 As you can see from these examples, you can just use the method name as
1081 long as you are referring to methods in the same controller. If you want
1082 to forward to a method in another controller, or the main application,
1083 you will have to refer to the method by absolute path.
1084
1085   $c->forward('/my/controller/action');
1086   $c->forward('/default'); # calls default in main application
1087
1088 Here are some examples of how to forward to classes and methods.
1089
1090     sub hello : Global {
1091         my ( $self, $c ) = @_;
1092         $c->forward(qw/MyApp::Model::Hello say_hello/);
1093     }
1094
1095     sub bye : Global {
1096         my ( $self, $c ) = @_;
1097         $c->forward('MyApp::Model::Hello'); # no method: will try 'process'
1098     }
1099
1100     package MyApp::Model::Hello;
1101
1102     sub say_hello {
1103         my ( $self, $c ) = @_;
1104         $c->res->body('Hello World!');
1105     }
1106
1107     sub process {
1108         my ( $self, $c ) = @_;
1109         $c->res->body('Goodbye World!');
1110     }
1111
1112 Note that C<forward> returns to the calling action and continues
1113 processing after the action finishes. If you want all further processing
1114 in the calling action to stop, use C<detach> instead, which will execute
1115 the C<detach>ed action and not return to the calling sub. In both cases,
1116 Catalyst will automatically try to call process() if you omit the
1117 method.
1118
1119
1120 =head3 Testing
1121
1122 Catalyst has a built-in http server for testing or local
1123 deployment. (Later, you can easily use a more powerful server, for
1124 example Apache/mod_perl or FastCGI, in a production environment.)
1125
1126 Start your application on the command line...
1127
1128     script/myapp_server.pl
1129
1130 ...then visit http://localhost:3000/ in a browser to view the output.
1131
1132 You can also do it all from the command line:
1133
1134     script/myapp_test.pl http://localhost/
1135
1136 Catalyst has a number of tools for actual regression testing of
1137 applications. The helper scripts will automatically generate basic tests
1138 that can be extended as you develop your project. To write your own
1139 comprehensive test scripts, L<Test::WWW::Mechanize::Catalyst> is an
1140 invaluable tool.
1141
1142 For more testing ideas, see L<Catalyst::Manual::Tutorial::Testing>.
1143
1144 Have fun!
1145
1146 =head1 SEE ALSO
1147
1148 =over 4
1149
1150 =item * L<Catalyst::Manual::About>
1151
1152 =item * L<Catalyst::Manual::Tutorial>
1153
1154 =item * L<Catalyst>
1155
1156 =back
1157
1158 =head1 SUPPORT
1159
1160 IRC:
1161
1162     Join #catalyst on irc.perl.org.
1163     Join #catalyst-dev on irc.perl.org to help with development.
1164
1165 Mailing lists:
1166
1167     http://lists.rawmode.org/mailman/listinfo/catalyst
1168     http://lists.rawmode.org/mailman/listinfo/catalyst-dev
1169
1170 =head1 AUTHOR
1171
1172 Sebastian Riedel, C<sri@oook.de> 
1173 David Naughton, C<naughton@umn.edu>
1174 Marcus Ramberg, C<mramberg@cpan.org>
1175 Jesse Sheidlower, C<jester@panix.com>
1176 Danijel Milicevic, C<me@danijel.de>
1177 Kieren Diment, C<kd@totaldatasolution.com>
1178 Yuval Kogman, C<nothingmuch@woobling.org>
1179
1180 =head1 COPYRIGHT
1181
1182 This program is free software. You can redistribute it and/or modify it
1183 under the same terms as Perl itself.