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