Fixed: Minor typo in Intro.pod
[catagits/Catalyst-Runtime.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 overview of why and how to use Catalyst. It explains how Catalyst works and shows how to quickly get a simple application up and running.
8
9 =head2 What is Catalyst?
10
11 Catalyst is an elegant web application framework, extremely flexible yet extremely simple. It's similar to Ruby on Rails, Spring (Java) and L<Maypole>, upon which it was originally based.
12
13 =head3 MVC
14
15 Catalyst follows the Model-View-Controller (MVC) design pattern, allowing you to easily separate concerns, like content, presentation and flow control, into separate modules. This separation allows you to modify code that handles one concern without affecting code that handles the others. Catalyst promotes re-use of existing Perl modules that already handle common web application concerns well.
16
17 Here's how the M, V and C map to those concerns, with examples of well-known Perl modules you may want to use for each.
18
19 =over 4
20
21 =item * B<Model>
22
23 Access and modify content (data). L<Class::DBI>, L<Plucene>, L<Net::LDAP>...
24
25 =item * B<View>
26
27 Present content to the user. L<Template Toolkit|Template>, L<Mason|HTML::Mason>...
28
29 =item * B<Controller>
30
31 Control the whole request phase, check parameters, dispatch actions, flow control. Catalyst!
32
33 =back
34
35 If you're unfamiliar with MVC and design patterns, you may want to check out the original book on the subject, I<Design Patterns>, by Gamma, Helm, Johson and Vlissides, also known as the Gang of Four (GoF). You can also just google it. Many, many web application frameworks are based on MVC, including all those listed above.
36
37 =head3 Flexibility
38
39 Catalyst is much more flexible than many other frameworks. We'll talk more about this later, but rest assured you can use your favorite perl modules with Catalyst.
40
41 =over 4
42
43 =item * B<Multiple Models, Views and Controllers>
44
45 To build a Catalyst application, you handle each type of concern inside special modules called L</Components>. Often this code will be very simple, just calling out to Perl modules like those listed above under L</MVC>. Catalyst handles these components in a very flexible way. Use as many Models, Views and Controllers as you like, using as many different Perl modules as you like, all in the same application. Want to manipulate multiple databases, and retrieve some data via LDAP? No problem. Want to present data from the same Model using L<Template Toolkit|Template> and L<PDF::Template>? Easy.
46
47 =item * B<Reuseable Components>
48
49 Not only does Catalyst promote the re-use of already existing Perl modules, it also allows you to re-use your Catalyst components in multiple Catalyst applications. 
50
51 =item * B<Unrestrained URL-to-Action Dispatching>
52
53 Catalyst allows you to dispatch any URLs to any application L<Actions>, even through regular expressions! Unlike most other frameworks, it doesn't require mod_rewrite or class and method names in URLs.
54
55 With Catalyst you register your actions and address them directly. For example:
56
57     sub hello : Global {
58         my ( $self, $context ) = @_;
59         $context->response->output('Hello World!');
60     }
61
62 Now http://localhost:3000/hello prints "Hello World!".
63
64 =item * B<Support for CGI, mod_perl, Apache::Request>
65
66 Use L<Catalyst::Engine::Apache> or L<Catalyst::Engine::CGI>.
67
68 =back
69
70 =head3 Simplicity
71
72 The best part is that Catalyst implements all this flexibility in a very simple way.
73
74 =over 4
75
76 =item * B<Building Block Interface>
77
78 Components interoperate very smoothly. For example, Catalyst automatically makes a L<Context> object available to every component. Via the context, you can access the request object, share data between components, and control the flow of your application. Building a Catalyst application feels a lot like snapping together toy building blocks, and everything just works.
79
80 =item * B<Component Auto-Discovery>
81
82 No need to C<use> all of your components. Catalyst automatically finds and loads them.
83
84 =item * B<Pre-Built Components for Popular Modules>
85
86 See L<Catalyst::Model::CDBI> for L<Class::DBI>, or L<Catalyst::View::TT> for L<Template Toolkit|Template>. You can even get an instant web database front end with L<Catalyst::Model::CDBI::CRUD>.
87
88 =item * B<Builtin Test Framework>
89
90 Catalyst comes with a builtin, lightweight http server and test framework, making it easy to test applications from the command line.
91
92 =item * B<Helper Scripts>
93
94 Catalyst provides helper scripts to quickly generate running starter code for components and unit tests.
95
96 =back
97
98 =head2 Quickstart
99
100 Here's how to install Catalyst and get a simple application up and running, using the helper scripts described above.
101
102 =head3 Install
103
104     $ perl -MCPAN -e 'install Bundle::Catalyst'
105
106 =head3 Setup
107
108     $ catalyst.pl MyApp
109     $ cd MyApp
110     $ script/create.pl controller My::Controller
111
112 =head3 Run
113
114     $ script/server.pl
115
116 Now visit these locations with your favorite browser or user agent to see Catalyst in action:
117
118 =over 4
119
120 =item http://localhost:3000/
121
122 =item http://localhost:3000/my_controller/
123
124 =back
125
126 Dead easy!
127
128 =head2 How It Works
129
130 Let's see how Catalyst works, by taking a closer look at the components and other parts of a Catalyst application.
131
132 =head3 Application Class
133
134 In addition to the Model, View and Controller components, there's a single class that represents your application itself. This is where you configure your application, load plugins, define application-wide actions and extend Catalyst.
135
136     package MyApp;
137
138     use strict;
139     use Catalyst qw/-Debug/;
140
141     MyApp->config(
142         name => 'My Application',
143         root => '/home/joeuser/myapp/root',
144
145         # You can put whatever you want in here:
146         # my_param_name => $my_param_value,
147     );
148
149     sub default : Private {
150         my ( $self, $context ) = @_;
151         $context->response->output('Catalyst rockz!');
152     }
153
154     1;
155
156 For most applications, Catalyst requires you to define only two config parameters:
157
158 =over 4
159
160 =item * B<name>
161
162 Name of your application.
163
164 =item * B<root>
165
166 Path to additional files like templates, images or other static data.
167
168 =back
169
170 However, you can define as many parameters as you want for plugins or whatever you need. You can access them anywhere in your application via C<$context-E<gt>config-E<gt>{$param_name}>.
171
172 =head3 Context
173
174 Catalyst automatically blesses a Context object into your application class and makes it available everywhere in your application. Use the Context to directly interact with Catalyst and glue your L<Components> together. 
175
176 As illustrated earlier in our URL-to-Action dispatching example, the Context is always the second method parameter, behind the Component object reference or class name itself. Previously we called it C<$context> for clarity, but most Catalyst developers just call it C<$c>:
177
178     sub hello : Global {
179         my ( $self, $c ) = @_;
180         $c->res->output('Hello World!');
181     }
182
183 The Context contains several important objects:
184
185 =over 4
186
187 =item * L<Catalyst::Request>
188
189     $c->request
190     $c->req # alias
191
192 The request object contains all kinds of request-specific information, like query parameters, cookies, uploads, headers and more.
193
194     $c->req->params->{foo};
195     $c->req->cookies->{sessionid};
196     $c->req->headers->content_type;
197     $c->req->base;
198
199 =item * L<Catalyst::Response>
200
201     $c->response
202     $c->res # alias
203
204 The response is like the request, but contains just response-specific information.
205
206     $c->res->output('Hello World');
207     $c->res->status(404);
208     $c->res->redirect('http://oook.de');
209
210 =item * L<Catalyst::Config>
211
212     $c->config
213
214     $c->config->root;
215     $c->config->name;
216
217 =item * L<Catalyst::Log>
218
219     $c->log
220
221     $c->log->debug('Something happened');
222     $c->log->info('Something you should know');
223
224 =item * B<Stash>
225
226     $c->stash
227
228     $c->stash->{foo} = 'bar';
229
230 =back
231
232 The last of these, the stash, is a universal hash for sharing data among application components. For an example, we return to our 'hello' action:
233
234     sub hello : Global {
235         my ( $self, $c ) = @_;
236         $c->stash->{message} = 'Hello World!';
237         $c->forward('show-message');
238     }
239
240     sub show-message : Private {
241         my ( $self, $c ) = @_;
242         $c->res->output( $c->stash->{message} );
243     }
244
245 =head3 Actions
246
247 A Catalyst controller is defined by it's actions. An action is a sub 
248 with a special attribute. You've already seen some example of actions
249
250 in this document.
251
252 Catalyst supports several types of actions:
253
254 =over 4
255
256 =item * B<Literal>
257
258     sub bar : Path('/foo/bar') { }
259
260 Matches only http://localhost:3000/foo/bar.
261
262 =item * B<Regex>
263
264     sub bar : Regex('^foo(\d+)/bar(\d+)$') { }
265
266 Matches any URL that matches the pattern in the action key, e.g. http://localhost:3000/foo23/bar42. The '' around the regexp is optional, but perltidy likes it. :)
267
268 If you use capturing parantheses to extract values within the matching URL (23, 42 in the above example), those values are available in the $c->req->snippets array. If you want to pass arguments at the end of your URL, you must use regex action keys. See L</URL Argument Handling> below.
269
270 =item * B<Toplevel>
271
272     package MyApp; 
273     sub foo : Global { }
274
275 Matches http://localhost:3000/foo. The function name is mapped 
276 directly to the application base.
277
278 =item * B<Namespace-Prefixed>
279
280     package MyApp::C::My::Controller; 
281     sub foo : Local { }
282
283 Matches http://localhost:3000/my/controller/foo. 
284
285 This action type indicates that the matching URL must be prefixed with a modified form of the component's class (package) name. This modified class name excludes the parts that have a pre-defined meaning in Catalyst ("MyApp::C" in the above example), replaces "::" with "/" and converts the name to lower case. See L</Components> for a full explanation of the pre-defined meaning of Catalyst component class names.
286
287 =item * B<Private>
288
289     sub foo : Private { }
290
291 Matches no URL, and cannot be executed by requesting a URL that corresponds to the action key. Private actions can be executed only inside a Catalyst application, by calling the C<forward> method:
292
293     $c->forward('foo');
294
295 See L</Flow Control> for a full explanation of C<forward>.
296
297 =back
298
299 B<Note> After seeing these examples, you probably wonder what the point is of defining names for regex and path actions. Actually, every public
300 action is also a private one, so you have one unified way of addressing components in your forwards. 
301
302 =head4 Builtin Private Actions
303
304 In response to specific application states, Catalyst will automatically call these built in private actions:
305
306 =over 4
307
308 =item * B<default : Private>
309
310 Called when no other action matches.
311
312 =item * B<begin : Private>
313
314 Called at the beginning of a request, before any matching actions are called.
315
316 =item * B<end : Private>
317
318 =back
319
320 Called at the end of a request, after all matching actions are called.
321
322 =head4 B<Builtin actions in controllers/autochaining>
323
324     Package MyApp::C::Foo;
325     sub begin : Private { }
326     sub default : Private { }
327
328 You can define the Builtin Private Actions within your controllers as 
329 well. The actions will override the ones in lower level controllers/
330 global.
331
332 In addition to the normal builtins, you have a special action for 
333 making inheritance chains, 'auto'. These will be run after begin, 
334 but before your action is processed.
335
336 =over 4
337
338 =item for a request for /foo/foo
339
340   MyApp::begin
341   MyApp::auto
342   MyApp::C::Foo::default
343   MyApp::end
344
345 =item for a request for /foo/bar/foo
346
347   MyApp::C::Foo::Bar::begin
348   MyApp::auto
349   MyApp::C::Foo::auto
350   MyApp::C::Foo::Bar::default
351   MyApp::C::Foo::Bar::end
352
353 =back
354
355 Also, if you need to break out of the chain in one of your auto 
356 actions, you can return 0, if so, your action will not be processed,
357 but the end will, so for the request above, if the first auto returns
358 false, it would look like this:
359
360 =over 4
361
362 =item for a request for /foo/bar/foo where auto returns false
363
364   MyApp::C::Foo::Bar::begin
365   MyApp::auto
366   MyApp::C::Foo::Bar::end
367
368 =back
369
370 I<Note:> auto actions have to return a true value to continue processing!
371 You can also die in the autochain action, in that case,
372 the request will go straight to the finalize stage, without processing
373 further actions.
374
375
376 =head4 B<URL Argument Handling>
377
378 If you want to pass variable arguments at the end of a URL, you must use regex actions keys with '^' and '$' anchors, and the arguments must be separated with forward slashes (/) in the URL. For example, suppose you want to handle /foo/$bar/$baz, where $bar and $baz may vary:
379
380     sub foo : Regex('^foo$') { my ($self, $context, $bar, $baz) = @_; }
381
382 But what if you also defined actions for /foo/boo and /foo/boo/hoo ?
383
384     sub boo : Path('/foo/boo') { .. }
385     sub hoo : Path('/foo/boo/hoo') { .. }
386
387 Catalyst matches actions in most specific to least specific order:
388
389     /foo/boo/hoo
390     /foo/boo
391     /foo # might be /foo/bar/baz
392
393 So Catalyst would never mistakenly dispatch the first two URLs to the '^foo$' action.
394
395 =head3 Flow Control
396
397 You control the application flow with the C<forward> method, which accepts the key of an action to execute.
398
399     sub hello : Global {
400         my ( $self, $c ) = @_;
401         $c->stash->{message} = 'Hello World!';
402         $c->forward('check-message');
403     }
404
405     sub check-message : Private {
406         my ( $self, $c ) = @_;
407         return unless $c->stash->{message};
408         $c->forward('show-message');
409     }
410
411     sub show-message : Private {
412         my ( $self, $c ) = @_;
413         $c->res->output( $c->stash->{message} );
414     }
415     
416 As you can see from these examples, you can just use the method name as long as you are referring to methods in the same controller. If you want to forward to a method in another controller, or the main application, you will have to refer to the method by asbolute path.
417
418   $c->forward('/my/controller/action');
419   $c->forward('/default');
420
421 You can also forward to classes and methods.
422
423     sub hello : Global {
424         my ( $self, $c ) = @_;
425         $c->forward(qw/MyApp::M::Hello say_hello/);
426     }
427
428     sub bye : Global {
429         my ( $self, $c ) = @_;
430         $c->forward('MyApp::M::Hello');
431     }
432
433     package MyApp::M::Hello;
434
435     sub say_hello {
436         my ( $self, $c ) = @_;
437         $c->res->output('Hello World!');
438     }
439
440     sub process {
441         my ( $self, $c ) = @_;
442         $c->res->output('Goodbye World!');
443     }
444
445 Note that C<forward> returns to the calling action and continues processing after the action finishes.
446 Catalyst will automatically try to call process() if you omit the method.
447
448 =head3 Components
449
450 Again, Catalyst has an uncommonly flexible component system. You can define as many L<Models>, L<Views> and L<Controllers> as you like.
451
452 All components must inherit from L<Catalyst::Base>, which provides a simple class structure and some common class methods like C<config> and C<new> (constructor).
453
454     package MyApp::C::MyController;
455
456     use strict;
457     use base 'Catalyst::Base';
458
459     __PACKAGE__->config( foo => 'bar' );
460
461     1;
462
463 You don't have to C<use> or otherwise register Models, Views and Controllers. Catalyst automatically discovers and instantiates them when you call setup in the main application. All you need to do is put them in directories named for each Component type. Notice that you can use some very terse aliases for each one.
464
465 =over 4
466
467 =item * B<MyApp/Model/> 
468
469 =item * B<MyApp/M/>
470
471 =item * B<MyApp/View/>
472
473 =item * B<MyApp/V/>
474
475 =item * B<MyApp/Controller/>
476
477 =item * B<MyApp/C/>
478
479 =back
480
481 =head4 Views
482
483 To show how to define views, we'll use an already-existing base class for the L<Template Toolkit|Template>, L<Catalyst::View::TT>. All we need to do is inherit from this class:
484
485     package MyApp::V::TT;
486
487     use strict;
488     use base 'Catalyst::View::TT';
489
490     1;
491
492 This gives us a process() method and we can now just do $c->forward('MyApp::V::TT') to render our templates. The base class makes process() implicit, so we don't have to say C<$c-E<gt>forward(qw/MyApp::V::TT process/)>.
493
494     sub hello : Global {
495         my ( $self, $c ) = @_;
496         $c->stash->{template} = 'hello.tt';
497     }
498
499     sub end : Private {
500         my ( $self, $c ) = @_;
501         $c->forward('MyApp::V::TT');
502     }
503
504 You normally render templates at the end of a request, so it's a perfect use for the global end action.
505
506 Also, be sure to put the template under the directory specified in C<$c-E<gt>config->{root}>, or you'll be forced to look at our eyecandy debug screen. ;)
507
508 =head4 Models
509
510 To show how to define models, again we'll use an already-existing base class, this time for L<Class::DBI>: L<Catalyst::Model::CDBI>.
511
512 But first, we need a database.
513
514     -- myapp.sql
515     CREATE TABLE foo (
516         id INTEGER PRIMARY KEY,
517         data TEXT
518     );
519
520     CREATE TABLE bar (
521         id INTEGER PRIMARY KEY,
522         foo INTEGER REFERENCES foo,
523         data TEXT
524     );
525
526     INSERT INTO foo (data) VALUES ('TEST!');
527
528
529     % sqlite /tmp/myapp.db < myapp.sql
530
531 Now we can create a CDBI component for this database.
532
533     package MyApp::M::CDBI;
534
535     use strict;
536     use base 'Catalyst::Model::CDBI';
537
538     __PACKAGE__->config(
539         dsn           => 'dbi:SQLite:/tmp/myapp.db',
540         relationships => 1
541     );
542
543     1;
544
545 Catalyst automatically loads table layouts and relationships. Use the stash to pass data to your templates.
546
547     package MyApp;
548
549     use strict;
550     use Catalyst '-Debug';
551
552     __PACKAGE__->config(
553         name => 'My Application',
554         root => '/home/joeuser/myapp/root'
555     );
556     
557     __PACKAGE__->setup;
558
559     sub end : Private {
560         my ( $self, $c ) = @_;
561         $c->stash->{template} ||= 'index.tt';
562         $c->forward('MyApp::V::TT');
563     }
564
565     sub view : Global {
566         my ( $self, $c, $id ) = @_;
567         $c->stash->{item} = MyApp::M::CDBI::Foo->retrieve($id);
568     }
569
570     1;
571
572     The id is [% item.data %]
573
574 =head4 Controllers
575
576 Multiple Controllers are a good way to separate logical domains of your application.
577
578     package MyApp::C::Login;
579
580     sign-in : Relative { }
581     new-password :Relative { }
582     sign-out : Relative { }
583
584     package MyApp::C::Catalog;
585
586     sub view : Local { }
587     sub list : Local { }
588
589     package MyApp::C::Cart;
590
591     sub add : Local { }
592     sub update : Local { }
593     sub order : Local { }
594
595 =head3 Testing
596
597 Catalyst has a built in http server for testing! (Later, you can easily use a more powerful server, e.g. Apache/mod_perl, in a production environment).
598
599 Start your application on the command line...
600
601     script/server.pl
602
603 ...then visit http://localhost:3000/ in a browser to view the output.
604
605 You can also do it all from the command line:
606
607     script/test.pl http://localhost/
608
609 Have fun!
610
611 =head1 SUPPORT
612
613 IRC:
614
615     Join #catalyst on irc.perl.org.
616
617 Mailing-Lists:
618
619     http://lists.rawmode.org/mailman/listinfo/catalyst
620     http://lists.rawmode.org/mailman/listinfo/catalyst-dev
621
622 =head1 AUTHOR
623
624 Sebastian Riedel, C<sri@oook.de> 
625 David Naughton, C<naughton@umn.edu>
626 Marcus Ramberg, C<mramberg@cpan.org>
627
628 =head1 COPYRIGHT
629
630 This program is free software, you can redistribute it and/or modify it under
631 the same terms as Perl itself.