Forgot to add Ubuntu quick time sync command to prev commit
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Cookbook.pod
CommitLineData
cb93c9d7 1=head1 NAME
2
3Catalyst::Manual::Cookbook - Cooking with Catalyst
4
5=head1 DESCRIPTION
6
7Yummy code like your mum used to bake!
8
9=head1 RECIPES
10
11=head1 Basics
12
c718cfb6 13These recipes cover some basic stuff that is worth knowing for
14catalyst developers.
cb93c9d7 15
16=head2 Delivering a Custom Error Page
17
18By default, Catalyst will display its own error page whenever it
19encounters an error in your application. When running under C<-Debug>
c718cfb6 20mode, the error page is a useful screen including the error message
21and L<Data::Dump> output of the relevant parts of the C<$c> context
22object. When not in C<-Debug>, users see a simple "Please come back
23later" screen.
cb93c9d7 24
c718cfb6 25To use a custom error page, use a special C<end> method to
26short-circuit the error processing. The following is an example; you
27might want to adjust it further depending on the needs of your
28application (for example, any calls to C<fillform> will probably need
29to go into this C<end> method; see L<Catalyst::Plugin::FillInForm>).
cb93c9d7 30
31 sub end : Private {
32 my ( $self, $c ) = @_;
33
34 if ( scalar @{ $c->error } ) {
35 $c->stash->{errors} = $c->error;
36 $c->stash->{template} = 'errors.tt';
37 $c->forward('MyApp::View::TT');
38 $c->error(0);
39 }
40
41 return 1 if $c->response->status =~ /^3\d\d$/;
42 return 1 if $c->response->body;
43
44 unless ( $c->response->content_type ) {
45 $c->response->content_type('text/html; charset=utf-8');
46 }
47
48 $c->forward('MyApp::View::TT');
49 }
50
51You can manually set errors in your code to trigger this page by calling
52
53 $c->error( 'You broke me!' );
54
55=head2 Disable statistics
56
c718cfb6 57Just add this line to your application class if you don't want those
58nifty statistics in your debug messages.
cb93c9d7 59
60 sub Catalyst::Log::info { }
61
62=head2 Enable debug status in the environment
63
64Normally you enable the debugging info by adding the C<-Debug> flag to
65your C<use Catalyst> statement. However, you can also enable it using
66environment variable, so you can (for example) get debug info without
67modifying your application scripts. Just set C<CATALYST_DEBUG> or
68C<E<lt>MYAPPE<gt>_DEBUG> to a true value.
69
70=head2 Sessions
71
c718cfb6 72When you have your users identified, you will want to somehow remember
73that fact, to save them from having to identify themselves for every
74single page. One way to do this is to send the username and password
75parameters in every single page, but that's ugly, and won't work for
76static pages.
cb93c9d7 77
c718cfb6 78Sessions are a method of saving data related to some transaction, and
79giving the whole collection a single ID. This ID is then given to the
80user to return to us on every page they visit while logged in. The
81usual way to do this is using a browser cookie.
cb93c9d7 82
83Catalyst uses two types of plugins to represent sessions:
84
85=head3 State
86
c718cfb6 87A State module is used to keep track of the state of the session
88between the users browser, and your application.
cb93c9d7 89
c718cfb6 90A common example is the Cookie state module, which sends the browser a
91cookie containing the session ID. It will use default value for the
92cookie name and domain, so will "just work" when used.
cb93c9d7 93
94=head3 Store
95
c718cfb6 96A Store module is used to hold all the data relating to your session,
97for example the users ID, or the items for their shopping cart. You
98can store data in memory (FastMmap), in a file (File) or in a database
99(DBI).
cb93c9d7 100
101=head3 Authentication magic
102
103If you have included the session modules in your application, the
104Authentication modules will automagically use your session to save and
105retrieve the user data for you.
106
107=head3 Using a session
108
109Once the session modules are loaded, the session is available as C<<
c718cfb6 110$c->session >>, and can be writen to and read from as a simple hash
111reference.
cb93c9d7 112
113=head3 EXAMPLE
114
115 use Catalyst qw/
116 Session
117 Session::Store::FastMmap
118 Session::State::Cookie
119 /;
120
121
122 ## Write data into the session
123
124 sub add_item : Local {
125 my ( $self, $c ) = @_;
126
127 my $item_id = $c->req->param("item");
128
129 push @{ $c->session->{items} }, $item_id;
130
131 }
132
133 ## A page later we retrieve the data from the session:
134
135 sub get_items : Local {
136 my ( $self, $c ) = @_;
137
138 $c->stash->{items_to_display} = $c->session->{items};
139
140 }
141
142
143=head3 More information
144
145L<http://search.cpan.org/dist/Catalyst-Plugin-Session>
146
147L<http://search.cpan.org/dist/Catalyst-Plugin-Session-State-Cookie>
148
149L<http://search.cpan.org/dist/Catalyst-Plugin-Session-State-URI>
150
151L<http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-FastMmap>
152
153L<http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-File>
154
155L<http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-DBI>
156
157=head2 Configure your application
158
159You configure your application with the C<config> method in your
160application class. This can be hard-coded, or brought in from a
161separate configuration file.
162
c010ae0d 163=head3 Using Config::General
cb93c9d7 164
c010ae0d 165L<Config::General|Config::General> is a method for creating flexible
166and readable configuration files. It's a great way to keep your
167Catalyst application configuration in one easy-to-understand location.
cb93c9d7 168
c010ae0d 169Now create C<myapp.conf> in your application home:
cb93c9d7 170
c010ae0d 171 name MyApp
cb93c9d7 172
173 # session; perldoc Catalyst::Plugin::Session::FastMmap
c010ae0d 174 <Session>
175 expires 3600
176 rewrite 0
177 storage /tmp/myapp.session
178 </Session>
cb93c9d7 179
180 # emails; perldoc Catalyst::Plugin::Email
181 # this passes options as an array :(
c010ae0d 182 Mail SMTP
183 Mail localhost
cb93c9d7 184
185This is equivalent to:
186
187 # configure base package
188 __PACKAGE__->config( name => MyApp );
189 # configure authentication
190 __PACKAGE__->config->{authentication} = {
191 user_class => 'MyApp::Model::MyDB::Customer',
192 ...
193 };
194 # configure sessions
195 __PACKAGE__->config->{session} = {
196 expires => 3600,
197 ...
198 };
199 # configure email sending
200 __PACKAGE__->config->{email} = [qw/SMTP localhost/];
201
c010ae0d 202See also L<Config::General|Config::General>.
cb93c9d7 203
204=head1 Skipping your VCS's directories
205
206Catalyst uses Module::Pluggable to load Models, Views and Controllers.
207Module::Pluggable will scan through all directories and load modules
208it finds. Sometimes you might want to skip some of these directories,
209for example when your version control system makes a subdirectory with
210meta-information in every version-controlled directory. While
211Catalyst skips subversion and CVS directories already, there are other
212source control systems. Here is the configuration you need to add
213their directories to the list to skip.
214
215You can make catalyst skip these directories using the Catalyst config:
216
217 # Configure the application
218 __PACKAGE__->config(
219 name => 'MyApp',
220 setup_components => { except => qr/SCCS/ },
221 );
222
223See the Module::Pluggable manual page for more information on B<except>
224and other options.
225
226=head1 Users and Access Control
227
228Most multiuser, and some single user web applications require that
229users identify themselves, and the application is often required to
230define those roles. The recipes below describe some ways of doing
231this.
232
233=head2 Authentication (logging in)
234
235This is extensively covered in other documentation; see in particular
236L<Catalyst::Plugin::Authentication> and the Authentication chapter
237of the Tutorial at L<Catalyst::Manual::Tutorial::Authorization>.
238
239=head2 Pass-through login (and other actions)
240
241An easy way of having assorted actions that occur during the processing
242of a request that are orthogonal to its actual purpose - logins, silent
243commands etc. Provide actions for these, but when they're required for
244something else fill e.g. a form variable __login and have a sub begin
245like so:
246
247 sub begin : Private {
248 my ($self, $c) = @_;
249 foreach my $action (qw/login docommand foo bar whatever/) {
250 if ($c->req->params->{"__${action}"}) {
251 $c->forward($action);
252 }
253 }
254 }
255
256
257=head2 Role-based Authorization
258
259For more advanced access control, you may want to consider using role-based
260authorization. This means you can assign different roles to each user, e.g.
261"user", "admin", etc.
262
263The C<login> and C<logout> methods and view template are exactly the same as
264in the previous example.
265
266The L<Catalyst::Plugin::Authorization::Roles> plugin is required when
267implementing roles:
268
269 use Catalyst qw/
270 Authentication
271 Authentication::Credential::Password
272 Authentication::Store::Htpasswd
273 Authorization::Roles
274 /;
275
276Roles are implemented automatically when using
277L<Catalyst::Authentication::Store::Htpasswd>:
278
279 # no additional role configuration required
280 __PACKAGE__->config->{authentication}{htpasswd} = "passwdfile";
281
282Or can be set up manually when using L<Catalyst::Authentication::Store::DBIC>:
283
284 # Authorization using a many-to-many role relationship
285 __PACKAGE__->config->{authorization}{dbic} = {
286 'role_class' => 'My::Model::DBIC::Role',
287 'role_field' => 'name',
288 'user_role_user_field' => 'user',
289
290 # DBIx::Class only (omit if using Class::DBI)
291 'role_rel' => 'user_role',
292
293 # Class::DBI only, (omit if using DBIx::Class)
294 'user_role_class' => 'My::Model::CDBI::UserRole'
295 'user_role_role_field' => 'role',
296 };
297
298To restrict access to any action, you can use the C<check_user_roles> method:
299
300 sub restricted : Local {
301 my ( $self, $c ) = @_;
302
303 $c->detach("unauthorized")
304 unless $c->check_user_roles( "admin" );
305
306 # do something restricted here
307 }
308
c718cfb6 309You can also use the C<assert_user_roles> method. This just gives an
310error if the current user does not have one of the required roles:
cb93c9d7 311
312 sub also_restricted : Global {
313 my ( $self, $c ) = @_;
314 $c->assert_user_roles( qw/ user admin / );
315 }
316
317=head2 Authentication/Authorization
318
319This is done in several steps:
320
321=over 4
322
323=item Verification
324
325Getting the user to identify themselves, by giving you some piece of
c718cfb6 326information known only to you and the user. Then you can assume that
327the user is who they say they are. This is called B<credential
328verification>.
cb93c9d7 329
330=item Authorization
331
c718cfb6 332Making sure the user only accesses functions you want them to
333access. This is done by checking the verified users data against your
334internal list of groups, or allowed persons for the current page.
cb93c9d7 335
336=back
337
338=head3 Modules
339
c718cfb6 340The Catalyst Authentication system is made up of many interacting
341modules, to give you the most flexibility possible.
cb93c9d7 342
343=head4 Credential verifiers
344
c718cfb6 345A Credential module tables the user input, and passes it to a Store,
346or some other system, for verification. Typically, a user object is
347created by either this module or the Store and made accessible by a
348C<< $c->user >> call.
cb93c9d7 349
350Examples:
351
352 Password - Simple username/password checking.
353 HTTPD - Checks using basic HTTP auth.
354 TypeKey - Check using the typekey system.
355
356=head3 Storage backends
357
c718cfb6 358A Storage backend contains the actual data representing the users. It
359is queried by the credential verifiers. Updating the store is not done
360within this system, you will need to do it yourself.
cb93c9d7 361
362Examples:
363
364 DBIC - Storage using a database.
365 Minimal - Storage using a simple hash (for testing).
366
367=head3 User objects
368
c718cfb6 369A User object is created by either the storage backend or the
370credential verifier, and filled with the retrieved user information.
cb93c9d7 371
372Examples:
373
374 Hash - A simple hash of keys and values.
375
376=head3 ACL authorization
377
c718cfb6 378ACL stands for Access Control List. The ACL plugin allows you to
379regulate access on a path by path basis, by listing which users, or
380roles, have access to which paths.
cb93c9d7 381
382=head3 Roles authorization
383
c718cfb6 384Authorization by roles is for assigning users to groups, which can
385then be assigned to ACLs, or just checked when needed.
cb93c9d7 386
387=head3 Logging in
388
389When you have chosen your modules, all you need to do is call the C<<
390$c->login >> method. If called with no parameters, it will try to find
c718cfb6 391suitable parameters, such as B<username> and B<password>, or you can
392pass it these values.
cb93c9d7 393
394=head3 Checking roles
395
c718cfb6 396Role checking is done by using the C<< $c->check_user_roles >> method,
397this will check using the currently logged in user (via C<< $c->user
398>>). You pass it the name of a role to check, and it returns true if
399the user is a member.
cb93c9d7 400
401=head3 EXAMPLE
402
403 use Catalyst qw/Authentication
404 Authentication::Credential::Password
405 Authentication::Store::Htpasswd
406 Authorization::Roles/;
407
408 __PACKAGE__->config->{authentication}{htpasswd} = "passwdfile";
409
410 sub login : Local {
411 my ($self, $c) = @_;
412
413 if ( my $user = $c->req->param("user")
414 and my $password = $c->req->param("password") )
415 {
416 if ( $c->login( $user, $password ) ) {
417 $c->res->body( "hello " . $c->user->name );
418 } else {
419 # login incorrect
420 }
421 }
422 else {
423 # invalid form input
424 }
425 }
426
427 sub restricted : Local {
428 my ( $self, $c ) = @_;
429
430 $c->detach("unauthorized")
431 unless $c->check_user_roles( "admin" );
432
433 # do something restricted here
434 }
435
436=head3 Using authentication in a testing environment
437
c718cfb6 438Ideally, to write tests for authentication/authorization code one
439would first set up a test database with known data, then use
440L<Test::WWW::Mechanize::Catalyst> to simulate a user logging
441in. Unfortunately the former can be rather awkward, which is why it's
442a good thing that the authentication framework is so flexible.
cb93c9d7 443
c718cfb6 444Instead of using a test database, one can simply change the
445authentication store to something a bit easier to deal with in a
446testing environment. Additionally, this has the advantage of not
447modifying one's database, which can be problematic if one forgets to
448use the testing instead of production database.
cb93c9d7 449
450e.g.,
451
452 use Catalyst::Plugin::Authentication::Store::Minimal::Backend;
453
454 # Sets up the user `test_user' with password `test_pass'
455 MyApp->default_auth_store(
456 Catalyst::Plugin::Authentication::Store::Minimal::Backend->new({
457 test_user => { password => 'test_pass' },
458 })
459 );
460
461Now, your test code can call C<$c->login('test_user', 'test_pass')> and
462successfully login, without messing with the database at all.
463
464=head3 More information
465
466L<http://search.cpan.org/perldoc?Catalyst::Plugin::Authentication> has a longer explanation.
467
468=head2 Authorization
469
470=head3 Introduction
471
c718cfb6 472Authorization is the step that comes after
473authentication. Authentication establishes that the user agent is
474really representing the user we think it's representing, and then
475authorization determines what this user is allowed to do.
cb93c9d7 476
477=head3 Role Based Access Control
478
c718cfb6 479Under role based access control each user is allowed to perform any
480number of roles. For example, at a zoo no one but specially trained
481personnel can enter the moose cage (Mynd you, møøse bites kan be
482pretty nasti!). For example:
cb93c9d7 483
484 package Zoo::Controller::MooseCage;
485
486 sub feed_moose : Local {
487 my ( $self, $c ) = @_;
488
489 $c->model( "Moose" )->eat( $c->req->param("food") );
490 }
491
c718cfb6 492With this action, anyone can just come into the moose cage and feed
493the moose, which is a very dangerous thing. We need to restrict this
494action, so that only a qualified moose feeder can perform that action.
cb93c9d7 495
c718cfb6 496The Authorization::Roles plugin let's us perform role based access
497control checks. Let's load it:
cb93c9d7 498
499 use Catalyst qw/
500 Authentication # yadda yadda
501 Authorization::Roles
502 /;
503
504And now our action should look like this:
505
506 sub feed_moose : Local {
507 my ( $self, $c ) = @_;
508
509 if ( $c->check_roles( "moose_feeder" ) ) {
510 $c->model( "Moose" )->eat( $c->req->param("food") );
511 } else {
512 $c->stash->{error} = "unauthorized";
513 }
514 }
515
c718cfb6 516This checks C<< $c->user >>, and only if the user has B<all> the roles
517in the list, a true value is returned.
cb93c9d7 518
c718cfb6 519C<check_roles> has a sister method, C<assert_roles>, which throws an
520exception if any roles are missing.
cb93c9d7 521
522Some roles that might actually make sense in, say, a forum application:
523
524=over 4
525
526=item *
527
528administrator
529
530=item *
531
532moderator
533
534=back
535
c718cfb6 536each with a distinct task (system administration versus content
537administration).
cb93c9d7 538
539=head3 Access Control Lists
540
541Checking for roles all the time can be tedious and error prone.
542
c718cfb6 543The Authorization::ACL plugin let's us declare where we'd like checks
544to be done automatically for us.
cb93c9d7 545
546For example, we may want to completely block out anyone who isn't a
547C<moose_feeder> from the entire C<MooseCage> controller:
548
549 Zoo->deny_access_unless( "/moose_cage", [qw/moose_feeder/] );
550
c718cfb6 551The role list behaves in the same way as C<check_roles>. However, the
552ACL plugin isn't limited to just interacting with the Roles plugin. We
553can use a code reference instead. For example, to allow either moose
554trainers or moose feeders into the moose cage, we can create a more
555complex check:
cb93c9d7 556
557 Zoo->deny_access_unless( "/moose_cage", sub {
558 my $c = shift;
559 $c->check_roles( "moose_trainer" ) || $c->check_roles( "moose_feeder" );
560 });
561
c718cfb6 562The more specific a role, the earlier it will be checked. Let's say
563moose feeders are now restricted to only the C<feed_moose> action,
564while moose trainers get access everywhere:
cb93c9d7 565
566 Zoo->deny_access_unless( "/moose_cage", [qw/moose_trainer/] );
567 Zoo->allow_access_if( "/moose_cage/feed_moose", [qw/moose_feeder/]);
568
c718cfb6 569When the C<feed_moose> action is accessed the second check will be
570made. If the user is a C<moose_feeder>, then access will be
571immediately granted. Otherwise, the next rule in line will be tested -
572the one checking for a C<moose_trainer>. If this rule is not
573satisfied, access will be immediately denied.
cb93c9d7 574
c718cfb6 575Rules applied to the same path will be checked in the order they were
576added.
cb93c9d7 577
c718cfb6 578Lastly, handling access denial events is done by creating an
579C<access_denied> private action:
cb93c9d7 580
581 sub access_denied : Private {
582 my ( $self, $c, $action ) = @_;
cb93c9d7 583 }
584
c718cfb6 585This action works much like auto, in that it is inherited across
586namespaces (not like object oriented code). This means that the
587C<access_denied> action which is B<nearest> to the action which was
588blocked will be triggered.
cb93c9d7 589
c718cfb6 590If this action does not exist, an error will be thrown, which you can
591clean up in your C<end> private action instead.
cb93c9d7 592
c718cfb6 593Also, it's important to note that if you restrict access to "/" then
594C<end>, C<default>, etc will also be restricted.
cb93c9d7 595
596 MyApp->acl_allow_root_internals;
597
598will create rules that permit access to C<end>, C<begin>, and C<auto> in the
599root of your app (but not in any other controller).
600
601=head1 Models
602
603Models are where application data belongs. Catalyst is exteremely
604flexible with the kind of models that it can use. The recipes here
605are just the start.
606
607=head2 Using existing DBIC (etc.) classes with Catalyst
608
c718cfb6 609Many people have existing Model classes that they would like to use
610with Catalyst (or, conversely, they want to write Catalyst models that
611can be used outside of Catalyst, e.g. in a cron job). It's trivial to
612write a simple component in Catalyst that slurps in an outside Model:
cb93c9d7 613
614 package MyApp::Model::DB;
615 use base qw/Catalyst::Model::DBIC::Schema/;
616 __PACKAGE__->config(
617 schema_class => 'Some::DBIC::Schema',
618 connect_info => ['dbi:SQLite:foo.db', '', '', {AutoCommit=>1}];
619 );
620 1;
621
622and that's it! Now C<Some::DBIC::Schema> is part of your
623Cat app as C<MyApp::Model::DB>.
624
625=head2 DBIx::Class as a Catalyst Model
626
627See L<Catalyst::Model::DBIC::Schema>.
628
8428e94d 629=head2 Create accessors to preload static data once per server instance
630
631When you have data that you want to load just once from the model at
632server load instead of for each request, use mk_group_accessors to
633create accessors and tie them to resultsets in your package that
634inherits from DBIx::Class::Schema
635
636 package My::Schema;
637 use base qw/DBIx::Class::Schema/;
638 __PACKAGE__->register_class('RESULTSOURCEMONIKER',
639 'My::Schema::RESULTSOURCE');
640 __PACKAGE__->mk_group_accessors('simple' =>
641 qw(ACCESSORNAME1 ACCESSORNAME2 ACCESSORNAMEn));
642
643 sub connection {
644 my ($self, @rest) = @_;
645 $self->next::method(@rest);
646 # $self is now a live My::Schema object, complete with DB connection
647
648 $self->ACCESSORNAME1([ $self->resultset('RESULTSOURCEMONIKER')->all ]);
649 $self->ACCESSORNAME2([ $self->resultset('RESULTSOURCEMONIKER')->search({ COLUMN => { '<' => '30' } })->all ]);
650 $self->ACCESSORNAMEn([ $self->resultset('RESULTSOURCEMONIKER')->find(1) ]);
651 }
652
653 1;
654
655and now in the controller, you can now access any of these without a
656per-request fetch:
657
658 $c->stash->{something} = $c->model('My::Schema')->schema->ACCESSORNAMEn;
659
660
cb93c9d7 661=head2 XMLRPC
662
663Unlike SOAP, XMLRPC is a very simple (and imo elegant) web-services
664protocol, exchanging small XML messages like these:
665
666Request:
667
668 POST /api HTTP/1.1
669 TE: deflate,gzip;q=0.3
670 Connection: TE, close
671 Accept: text/xml
672 Accept: multipart/*
673 Host: 127.0.0.1:3000
674 User-Agent: SOAP::Lite/Perl/0.60
675 Content-Length: 192
676 Content-Type: text/xml
677
678 <?xml version="1.0" encoding="UTF-8"?>
679 <methodCall>
680 <methodName>add</methodName>
681 <params>
682 <param><value><int>1</int></value></param>
683 <param><value><int>2</int></value></param>
684 </params>
685 </methodCall>
686
687Response:
688
689 Connection: close
690 Date: Tue, 20 Dec 2005 07:45:55 GMT
691 Content-Length: 133
692 Content-Type: text/xml
693 Status: 200
694 X-Catalyst: 5.70
695
696 <?xml version="1.0" encoding="us-ascii"?>
697 <methodResponse>
698 <params>
699 <param><value><int>3</int></value></param>
700 </params>
701 </methodResponse>
702
703Now follow these few steps to implement the application:
704
7051. Install Catalyst (5.61 or later), Catalyst::Plugin::XMLRPC (0.06 or
706later) and SOAP::Lite (for XMLRPCsh.pl).
707
7082. Create an application framework:
709
710 % catalyst.pl MyApp
711 ...
712 % cd MyApp
713
7143. Add the XMLRPC plugin to MyApp.pm
715
716 use Catalyst qw/-Debug Static::Simple XMLRPC/;
717
7184. Add an API controller
719
720 % ./script/myapp_create.pl controller API
721
7225. Add a XMLRPC redispatch method and an add method with Remote
723attribute to lib/MyApp/Controller/API.pm
724
725 sub default : Private {
726 my ( $self, $c ) = @_;
727 $c->xmlrpc;
728 }
729
730 sub add : Remote {
731 my ( $self, $c, $a, $b ) = @_;
732 return $a + $b;
733 }
734
735The default action is the entry point for each XMLRPC request. It will
736redispatch every request to methods with Remote attribute in the same
737class.
738
739The C<add> method is not a traditional action; it has no private or
740public path. Only the XMLRPC dispatcher knows it exists.
741
7426. That's it! You have built your first web service. Let's test it with
743XMLRPCsh.pl (part of SOAP::Lite):
744
745 % ./script/myapp_server.pl
746 ...
747 % XMLRPCsh.pl http://127.0.0.1:3000/api
748 Usage: method[(parameters)]
749 > add( 1, 2 )
750 --- XMLRPC RESULT ---
751 '3'
752
753=head3 Tip
754
755Your return data type is usually auto-detected, but you can easily
756enforce a specific one.
757
758 sub add : Remote {
759 my ( $self, $c, $a, $b ) = @_;
760 return RPC::XML::int->new( $a + $b );
761 }
762
763
764
765=head1 Views
766
767Views pertain to the display of your application. As with models,
768catalyst is uncommonly flexible. The recipes below are just a start.
769
770=head2 Catalyst::View::TT
771
772One of the first things you probably want to do when starting a new
773Catalyst application is set up your View. Catalyst doesn't care how you
774display your data; you can choose to generate HTML, PDF files, or plain
775text if you wanted.
776
777Most Catalyst applications use a template system to generate their HTML,
778and though there are several template systems available, Template
779Toolkit is probably the most popular.
780
781Once again, the Catalyst developers have done all the hard work, and
782made things easy for the rest of us. Catalyst::View::TT provides the
783interface to Template Toolkit, and provides Helpers which let us set it
784up that much more easily.
785
786=head3 Creating your View
787
788Catalyst::View::TT provides two different helpers for us to use: TT and
789TTSite.
790
791=head4 TT
792
793Create a basic Template Toolkit View using the provided helper script:
794
795 script/myapp_create.pl view TT TT
796
797This will create lib/MyApp/View/MyView.pm, which is going to be pretty
798empty to start. However, it sets everything up that you need to get
799started. You can now define which template you want and forward to your
800view. For instance:
801
802 sub hello : Local {
803 my ( $self, $c ) = @_;
804
805 $c->stash->{template} = 'hello.tt';
806
807 $c->forward( $c->view('TT') );
808 }
809
810In practice you wouldn't do the forwarding manually, but would
811use L<Catalyst::Action::RenderView>.
812
813=head4 TTSite
814
815Although the TT helper does create a functional, working view, you may
816find yourself having to create the same template files and changing the
817same options every time you create a new application. The TTSite helper
818saves us even more time by creating the basic templates and setting some
819common options for us.
820
821Once again, you can use the helper script:
822
823 script/myapp_create.pl view TT TTSite
824
825This time, the helper sets several options for us in the generated View.
826
827 __PACKAGE__->config({
828 CATALYST_VAR => 'Catalyst',
829 INCLUDE_PATH => [
830 MyApp->path_to( 'root', 'src' ),
831 MyApp->path_to( 'root', 'lib' )
832 ],
833 PRE_PROCESS => 'config/main',
834 WRAPPER => 'site/wrapper',
835 ERROR => 'error.tt2',
836 TIMER => 0
837 });
838
839=over
840
841=item
842
843INCLUDE_PATH defines the directories that Template Toolkit should search
844for the template files.
845
846=item
847
848PRE_PROCESS is used to process configuration options which are common to
849every template file.
850
851=item
852
853WRAPPER is a file which is processed with each template, usually used to
854easily provide a common header and footer for every page.
855
856=back
857
858In addition to setting these options, the TTSite helper also created the
859template and config files for us! In the 'root' directory, you'll notice
860two new directories: src and lib.
861
862Several configuration files in root/lib/config are called by PRE_PROCESS.
863
864The files in root/lib/site are the site-wide templates, called by
865WRAPPER, and display the html framework, control the layout, and provide
866the templates for the header and footer of your page. Using the template
867organization provided makes it much easier to standardize pages and make
868changes when they are (inevitably) needed.
869
870The template files that you will create for your application will go
871into root/src, and you don't need to worry about putting the the <html>
872or <head> sections; just put in the content. The WRAPPER will the rest
873of the page around your template for you.
874
875
876=head3 $c->stash
877
878Of course, having the template system include the header and footer for
879you isn't all that we want our templates to do. We need to be able to
880put data into our templates, and have it appear where and how we want
881it, right? That's where the stash comes in.
882
883In our controllers, we can add data to the stash, and then access it
884from the template. For instance:
885
886 sub hello : Local {
887 my ( $self, $c ) = @_;
888
889 $c->stash->{name} = 'Adam';
890
891 $c->stash->{template} = 'hello.tt';
892
893 $c->forward( $c->view('TT') );
894 }
895
896Then, in hello.tt:
897
898 <strong>Hello, [% name %]!</strong>
899
900When you view this page, it will display "Hello, Adam!"
901
902All of the information in your stash is available, by its name/key, in
903your templates. And your data don't have to be plain, old, boring
904scalars. You can pass array references and hash references, too.
905
906In your controller:
907
908 sub hello : Local {
909 my ( $self, $c ) = @_;
910
911 $c->stash->{names} = [ 'Adam', 'Dave', 'John' ];
912
913 $c->stash->{template} = 'hello.tt';
914
915 $c->forward( $c->view('TT') );
916 }
917
918In hello.tt:
919
920 [% FOREACH name IN names %]
921 <strong>Hello, [% name %]!</strong><br />
922 [% END %]
923
924This allowed us to loop through each item in the arrayref, and display a
925line for each name that we have.
926
927This is the most basic usage, but Template Toolkit is quite powerful,
928and allows you to truly keep your presentation logic separate from the
929rest of your application.
930
931=head3 $c->uri_for()
932
933One of my favorite things about Catalyst is the ability to move an
934application around without having to worry that everything is going to
935break. One of the areas that used to be a problem was with the http
936links in your template files. For example, suppose you have an
937application installed at http://www.domain.com/Calendar. The links point
938to "/Calendar", "/Calendar/2005", "/Calendar/2005/10", etc. If you move
939the application to be at http://www.mydomain.com/Tools/Calendar, then
940all of those links will suddenly break.
941
942That's where $c->uri_for() comes in. This function will merge its
943parameters with either the base location for the app, or its current
944namespace. Let's take a look at a couple of examples.
945
946In your template, you can use the following:
947
948 <a href="[% c.uri_for('/login') %]">Login Here</a>
949
c718cfb6 950Although the parameter starts with a forward slash, this is relative
951to the application root, not the webserver root. This is important to
952remember. So, if your application is installed at
953http://www.domain.com/Calendar, then the link would be
954http://www.mydomain.com/Calendar/Login. If you move your application
955to a different domain or path, then that link will still be correct.
cb93c9d7 956
957Likewise,
958
959 <a href="[% c.uri_for('2005','10', '24') %]">October, 24 2005</a>
960
c718cfb6 961The first parameter does NOT have a forward slash, and so it will be
962relative to the current namespace. If the application is installed at
963http://www.domain.com/Calendar. and if the template is called from
964MyApp::Controller::Display, then the link would become
965http://www.domain.com/Calendar/Display/2005/10/24.
966
967If you want to link to a parent uri of your current namespace you can
968prefix the arguments with multiple '../':
969
970 <a href="[% c.uri_for('../../view', stashed_object.id) %]">User view</a>
cb93c9d7 971
c718cfb6 972Once again, this allows you to move your application around without
973having to worry about broken links. But there's something else, as
974well. Since the links are generated by uri_for, you can use the same
975template file by several different controllers, and each controller
976will get the links that its supposed to. Since we believe in Don't
977Repeat Yourself, this is particularly helpful if you have common
978elements in your site that you want to keep in one file.
cb93c9d7 979
980Further Reading:
981
982L<http://search.cpan.org/perldoc?Catalyst>
983
984L<http://search.cpan.org/perldoc?Catalyst%3A%3AView%3A%3ATT>
985
986L<http://search.cpan.org/perldoc?Template>
987
988=head2 Adding RSS feeds
989
990Adding RSS feeds to your Catalyst applications is simple. We'll see two
991different aproaches here, but the basic premise is that you forward to
992the normal view action first to get the objects, then handle the output
993differently.
994
995=head3 Using TT templates
996
997This is the aproach used in Agave (L<http://dev.rawmode.org/>).
998
999 sub rss : Local {
1000 my ($self,$c) = @_;
1001 $c->forward('view');
1002 $c->stash->{template}='rss.tt';
1003 }
1004
1005Then you need a template. Here's the one from Agave:
1006
1007 <?xml version="1.0" encoding="UTF-8"?>
1008 <rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
1009 <channel>
1010 <title>[ [% blog.name || c.config.name || "Agave" %] ] RSS Feed</title>
1011 <link>[% base %]</link>
1012 <description>Recent posts</description>
1013 <language>en-us</language>
1014 <ttl>40</ttl>
1015 [% WHILE (post = posts.next) %]
1016 <item>
1017 <title>[% post.title %]</title>
1018 <description>[% post.formatted_teaser|html%]</description>
1019 <pubDate>[% post.pub_date %]</pubDate>
1020 <guid>[% post.full_uri %]</guid>
1021 <link>[% post.full_uri %]</link>
1022 <dc:creator>[% post.author.screenname %]</dc:creator>
1023 </item>
1024 [% END %]
1025 </channel>
1026 </rss>
1027
1028=head3 Using XML::Feed
1029
1030A more robust solution is to use XML::Feed, as was done in the Catalyst
1031Advent Calendar. Assuming we have a C<view> action that populates
1032'entries' with some DBIx::Class iterator, the code would look something
1033like this:
1034
1035 sub rss : Local {
1036 my ($self,$c) = @_;
1037 $c->forward('view'); # get the entries
1038
1039 my $feed = XML::Feed->new('RSS');
1040 $feed->title( $c->config->{name} . ' RSS Feed' );
1041 $feed->link( $c->req->base ); # link to the site.
1042 $feed->description('Catalyst advent calendar'); Some description
1043
1044 # Process the entries
1045 while( my $entry = $c->stash->{entries}->next ) {
1046 my $feed_entry = XML::Feed::Entry->new('RSS');
1047 $feed_entry->title($entry->title);
1048 $feed_entry->link( $c->uri_for($entry->link) );
1049 $feed_entry->issued( DateTime->from_epoch(epoch => $entry->created) );
1050 $feed->add_entry($feed_entry);
1051 }
1052 $c->res->body( $feed->as_xml );
1053 }
1054
1055A little more code in the controller, but with this approach you're
1056pretty sure to get something that validates.
1057
1058Note that for both of the above aproaches, you'll need to set the
1059content type like this:
1060
1061 $c->res->content_type('application/rss+xml');
1062
1063=head3 Final words
1064
1065You could generalize the second variant easily by replacing 'RSS' with a
1066variable, so you can generate Atom feeds with the same code.
1067
1068Now, go ahead and make RSS feeds for all your stuff. The world *needs*
1069updates on your goldfish!
1070
1071=head2 Forcing the browser to download content
1072
1073Sometimes you need your application to send content for download. For
1074example, you can generate a comma-separated values (CSV) file for your
1075users to download and import into their spreadsheet program.
1076
1077Let's say you have an C<Orders> controller which generates a CSV file
1078in the C<export> action (i.e., C<http://localhost:3000/orders/export>):
1079
1080 sub export : Local Args(0) {
1081 my ( $self, $c ) = @_;
1082
1083 # In a real application, you'd generate this from the database
1084 my $csv = "1,5.99\n2,29.99\n3,3.99\n";
1085
1086 $c->res->content_type('text/comma-separated-values');
1087 $c->res->body($csv);
1088 }
1089
1090Normally the browser uses the last part of the URI to generate a
1091filename for data it cannot display. In this case your browser would
1092likely ask you to save a file named C<export>.
1093
1094Luckily you can have the browser download the content with a specific
1095filename by setting the C<Content-Disposition> header:
1096
1097 my $filename = 'Important Orders.csv';
1098 $c->res->header('Content-Disposition', qq[attachment; filename="$filename"]);
1099
1100Note the use of quotes around the filename; this ensures that any
1101spaces in the filename are handled by the browser.
1102
1103Put this right before calling C<< $c->res->body >> and your browser
1104will download a file named C<Important Orders.csv> instead of
1105C<export>.
1106
1107You can also use this to have the browser download content which it
1108normally displays, such as JPEG images or even HTML. Just be sure to
1109set the appropriate content type and disposition.
1110
1111
1112=head1 Controllers
1113
1114Controllers are the main point of communication between the web server
1115and your application. Here we explore some aspects of how they work.
1116
1117=head2 Extending RenderView (formerly DefaultEnd)
1118
1119The recommended approach for an C<end> action is to use
1120L<Catalyst::Action::RenderView> (taking the place of
1121L<Catalyst::Plugin::DefaultEnd>), which does what you usually need.
1122However there are times when you need to add a bit to it, but don't want
1123to write your own C<end> action.
1124
1125You can extend it like this:
1126
1127To add something to an C<end> action that is called before rendering
1128(this is likely to be what you want), simply place it in the C<end>
1129method:
1130
1131 sub end : ActionClass('RenderView') {
1132 my ( $self, $c ) = @_;
1133 # do stuff here; the RenderView action is called afterwards
1134 }
1135
1136To add things to an C<end> action that are called I<after> rendering,
1137you can set it up like this:
1138
1139 sub render : ActionClass('RenderView') { }
1140
1141 sub end : Private {
1142 my ( $self, $c ) = @_;
1143 $c->forward('render');
1144 # do stuff here
1145 }
1146
1147=head2 Action Types
1148
1149=head3 Introduction
1150
c718cfb6 1151A Catalyst application is driven by one or more Controller
1152modules. There are a number of ways that Catalyst can decide which of
1153the methods in your controller modules it should call. Controller
1154methods are also called actions, because they determine how your
1155catalyst application should (re-)act to any given URL. When the
1156application is started up, catalyst looks at all your actions, and
1157decides which URLs they map to.
cb93c9d7 1158
1159=head3 Type attributes
1160
1161Each action is a normal method in your controller, except that it has an
1162L<attribute|http://search.cpan.org/~nwclark/perl-5.8.7/lib/attributes.pm>
1163attached. These can be one of several types.
1164
1165Assume our Controller module starts with the following package declaration:
1166
1167 package MyApp::Controller::Buckets;
1168
1169and we are running our application on localhost, port 3000 (the test
1170server default).
1171
1172=over 4
1173
1174=item Path
1175
1176A Path attribute also takes an argument, this can be either a relative
c718cfb6 1177or an absolute path. A relative path will be relative to the
1178controller namespace, an absolute path will represent an exact
1179matching URL.
cb93c9d7 1180
1181 sub my_handles : Path('handles') { .. }
1182
1183becomes
1184
1185 http://localhost:3000/buckets/handles
1186
1187and
1188
1189 sub my_handles : Path('/handles') { .. }
1190
1191becomes
1192
1193 http://localhost:3000/handles
1194
1195=item Local
1196
c718cfb6 1197When using a Local attribute, no parameters are needed, instead, the
1198name of the action is matched in the URL. The namespaces created by
1199the name of the controller package is always part of the URL.
cb93c9d7 1200
1201 sub my_handles : Local { .. }
1202
1203becomes
1204
1205 http://localhost:3000/buckets/my_handles
1206
1207=item Global
1208
c718cfb6 1209A Global attribute is similar to a Local attribute, except that the
1210namespace of the controller is ignored, and matching starts at root.
cb93c9d7 1211
1212 sub my_handles : Global { .. }
1213
1214becomes
1215
1216 http://localhost:3000/my_handles
1217
1218=item Regex
1219
c718cfb6 1220By now you should have figured that a Regex attribute is just what it
1221sounds like. This one takes a regular expression, and matches starting
1222from root. These differ from the rest as they can match multiple URLs.
cb93c9d7 1223
1224 sub my_handles : Regex('^handles') { .. }
1225
1226matches
1227
1228 http://localhost:3000/handles
1229
1230and
1231
1232 http://localhost:3000/handles_and_other_parts
1233
1234etc.
1235
1236=item LocalRegex
1237
1238A LocalRegex is similar to a Regex, except it only matches below the current
1239controller namespace.
1240
1241 sub my_handles : LocalRegex(^handles') { .. }
1242
1243matches
1244
1245 http://localhost:3000/buckets/handles
1246
1247and
1248
1249 http://localhost:3000/buckets/handles_and_other_parts
1250
1251etc.
1252
1253=item Private
1254
c718cfb6 1255Last but not least, there is the Private attribute, which allows you
1256to create your own internal actions, which can be forwarded to, but
1257won't be matched as URLs.
cb93c9d7 1258
1259 sub my_handles : Private { .. }
1260
1261becomes nothing at all..
1262
c718cfb6 1263Catalyst also predefines some special Private actions, which you can
1264override, these are:
cb93c9d7 1265
1266=over 4
1267
1268=item default
1269
c718cfb6 1270The default action will be called, if no other matching action is
1271found. If you don't have one of these in your namespace, or any sub
1272part of your namespace, you'll get an error page instead. If you want
1273to find out where it was the user was trying to go, you can look in
1274the request object using C<< $c->req->path >>.
cb93c9d7 1275
1276 sub default : Private { .. }
1277
c718cfb6 1278works for all unknown URLs, in this controller namespace, or every one
1279if put directly into MyApp.pm.
cb93c9d7 1280
1281=item index
1282
c718cfb6 1283The index action is called when someone tries to visit the exact
1284namespace of your controller. If index, default and matching Path
1285actions are defined, then index will be used instead of default and
1286Path.
cb93c9d7 1287
1288 sub index : Private { .. }
1289
1290becomes
1291
1292 http://localhost:3000/buckets
1293
1294=item begin
1295
c718cfb6 1296The begin action is called at the beginning of every request involving
1297this namespace directly, before other matching actions are called. It
1298can be used to set up variables/data for this particular part of your
1299app. A single begin action is called, its always the one most relevant
1300to the current namespace.
cb93c9d7 1301
1302 sub begin : Private { .. }
1303
1304is called once when
1305
1306 http://localhost:3000/bucket/(anything)?
1307
1308is visited.
1309
1310=item end
1311
c718cfb6 1312Like begin, this action is always called for the namespace it is in,
1313after every other action has finished. It is commonly used to forward
1314processing to the View component. A single end action is called, its
1315always the one most relevant to the current namespace.
cb93c9d7 1316
1317
1318 sub end : Private { .. }
1319
1320is called once after any actions when
1321
1322 http://localhost:3000/bucket/(anything)?
1323
1324is visited.
1325
1326=item auto
1327
c718cfb6 1328Lastly, the auto action is magic in that B<every> auto action in the
1329chain of paths up to and including the ending namespace, will be
1330called. (In contrast, only one of the begin/end/default actions will
1331be called, the relevant one).
cb93c9d7 1332
1333 package MyApp.pm;
1334 sub auto : Private { .. }
1335
1336and
1337
1338 sub auto : Private { .. }
1339
1340will both be called when visiting
1341
1342 http://localhost:3000/bucket/(anything)?
1343
1344=back
1345
1346=back
1347
1348=head3 A word of warning
1349
c718cfb6 1350Due to possible namespace conflicts with Plugins, it is advised to
1351only put the pre-defined Private actions in your main MyApp.pm file,
1352all others should go in a Controller module.
cb93c9d7 1353
1354=head3 More Information
1355
1356L<http://search.cpan.org/author/SRI/Catalyst-5.61/lib/Catalyst/Manual/Intro.pod>
1357
1358L<http://dev.catalyst.perl.org/wiki/FlowChart>
1359
1360=head2 Component-based Subrequests
1361
1362See L<Catalyst::Plugin::SubRequest>.
1363
1364=head2 File uploads
1365
1366=head3 Single file upload with Catalyst
1367
1368To implement uploads in Catalyst, you need to have a HTML form similar to
1369this:
1370
1371 <form action="/upload" method="post" enctype="multipart/form-data">
1372 <input type="hidden" name="form_submit" value="yes">
1373 <input type="file" name="my_file">
1374 <input type="submit" value="Send">
1375 </form>
1376
1377It's very important not to forget C<enctype="multipart/form-data"> in
1378the form.
1379
1380Catalyst Controller module 'upload' action:
1381
1382 sub upload : Global {
1383 my ($self, $c) = @_;
1384
1385 if ( $c->request->parameters->{form_submit} eq 'yes' ) {
1386
1387 if ( my $upload = $c->request->upload('my_file') ) {
1388
1389 my $filename = $upload->filename;
1390 my $target = "/tmp/upload/$filename";
1391
1392 unless ( $upload->link_to($target) || $upload->copy_to($target) ) {
1393 die( "Failed to copy '$filename' to '$target': $!" );
1394 }
1395 }
1396 }
1397
1398 $c->stash->{template} = 'file_upload.html';
1399 }
1400
1401=head3 Multiple file upload with Catalyst
1402
1403Code for uploading multiple files from one form needs a few changes:
1404
1405The form should have this basic structure:
1406
1407 <form action="/upload" method="post" enctype="multipart/form-data">
1408 <input type="hidden" name="form_submit" value="yes">
1409 <input type="file" name="file1" size="50"><br>
1410 <input type="file" name="file2" size="50"><br>
1411 <input type="file" name="file3" size="50"><br>
1412 <input type="submit" value="Send">
1413 </form>
1414
1415And in the controller:
1416
1417 sub upload : Local {
1418 my ($self, $c) = @_;
1419
1420 if ( $c->request->parameters->{form_submit} eq 'yes' ) {
1421
1422 for my $field ( $c->req->upload ) {
1423
1424 my $upload = $c->req->upload($field);
1425 my $filename = $upload->filename;
1426 my $target = "/tmp/upload/$filename";
1427
1428 unless ( $upload->link_to($target) || $upload->copy_to($target) ) {
1429 die( "Failed to copy '$filename' to '$target': $!" );
1430 }
1431 }
1432 }
1433
1434 $c->stash->{template} = 'file_upload.html';
1435 }
1436
1437C<for my $field ($c-E<gt>req->upload)> loops automatically over all file
1438input fields and gets input names. After that is basic file saving code,
1439just like in single file upload.
1440
1441Notice: C<die>ing might not be what you want to do, when an error
1442occurs, but it works as an example. A better idea would be to store
1443error C<$!> in $c->stash->{error} and show a custom error template
1444displaying this message.
1445
1446For more information about uploads and usable methods look at
1447L<Catalyst::Request::Upload> and L<Catalyst::Request>.
1448
1449=head2 Forwarding with arguments
1450
1451Sometimes you want to pass along arguments when forwarding to another
1452action. As of version 5.30, arguments can be passed in the call to
1453C<forward>; in earlier versions, you can manually set the arguments in
1454the Catalyst Request object:
1455
1456 # version 5.30 and later:
1457 $c->forward('/wherever', [qw/arg1 arg2 arg3/]);
1458
1459 # pre-5.30
1460 $c->req->args([qw/arg1 arg2 arg3/]);
1461 $c->forward('/wherever');
1462
1463(See the L<Catalyst::Manual::Intro> Flow_Control section for more
1464information on passing arguments via C<forward>.)
1465
1466
1467=head1 Deployment
1468
1469The recipes below describe aspects of the deployment process,
1470including web server engines and tips to improve application efficiency.
1471
1472=head2 mod_perl Deployment
1473
1474mod_perl is the best solution for many applications, but we'll list some pros
1475and cons so you can decide for yourself. The other production deployment
1476option is FastCGI, for which see below.
1477
1478=head3 Pros
1479
1480=head4 Speed
1481
1482mod_perl is very fast and your app will benefit from being loaded in memory
1483within each Apache process.
1484
1485=head4 Shared memory for multiple apps
1486
1487If you need to run several Catalyst apps on the same server, mod_perl will
1488share the memory for common modules.
1489
1490=head3 Cons
1491
1492=head4 Memory usage
1493
1494Since your application is fully loaded in memory, every Apache process will
1495be rather large. This means a large Apache process will be tied up while
1496serving static files, large files, or dealing with slow clients. For this
1497reason, it is best to run a two-tiered web architecture with a lightweight
1498frontend server passing dynamic requests to a large backend mod_perl
1499server.
1500
1501=head4 Reloading
1502
1503Any changes made to the core code of your app require a full Apache restart.
1504Catalyst does not support Apache::Reload or StatINC. This is another good
1505reason to run a frontend web server where you can set up an
1506C<ErrorDocument 502> page to report that your app is down for maintenance.
1507
1508=head4 Cannot run multiple versions of the same app
1509
1510It is not possible to run two different versions of the same application in
1511the same Apache instance because the namespaces will collide.
1512
1513=head4 Setup
1514
1515Now that we have that out of the way, let's talk about setting up mod_perl
1516to run a Catalyst app.
1517
1518=head4 1. Install Catalyst::Engine::Apache
1519
1520You should install the latest versions of both Catalyst and
1521Catalyst::Engine::Apache. The Apache engines were separated from the
1522Catalyst core in version 5.50 to allow for updates to the engine without
1523requiring a new Catalyst release.
1524
1525=head4 2. Install Apache with mod_perl
1526
1527Both Apache 1.3 and Apache 2 are supported, although Apache 2 is highly
1528recommended. With Apache 2, make sure you are using the prefork MPM and not
1529the worker MPM. The reason for this is that many Perl modules are not
1530thread-safe and may have problems running within the threaded worker
1531environment. Catalyst is thread-safe however, so if you know what you're
1532doing, you may be able to run using worker.
1533
1534In Debian, the following commands should get you going.
1535
1536 apt-get install apache2-mpm-prefork
1537 apt-get install libapache2-mod-perl2
1538
1539=head4 3. Configure your application
1540
1541Every Catalyst application will automagically become a mod_perl handler
1542when run within mod_perl. This makes the configuration extremely easy.
1543Here is a basic Apache 2 configuration.
1544
1545 PerlSwitches -I/var/www/MyApp/lib
1546 PerlModule MyApp
1547
1548 <Location />
1549 SetHandler modperl
1550 PerlResponseHandler MyApp
1551 </Location>
1552
1553The most important line here is C<PerlModule MyApp>. This causes mod_perl
1554to preload your entire application into shared memory, including all of your
1555controller, model, and view classes and configuration. If you have -Debug
1556mode enabled, you will see the startup output scroll by when you first
1557start Apache.
1558
1559For an example Apache 1.3 configuration, please see the documentation for
1560L<Catalyst::Engine::Apache::MP13>.
1561
1562=head3 Test It
1563
1564That's it, your app is now a full-fledged mod_perl application! Try it out
1565by going to http://your.server.com/.
1566
1567=head3 Other Options
1568
1569=head4 Non-root location
1570
1571You may not always want to run your app at the root of your server or virtual
1572host. In this case, it's a simple change to run at any non-root location
1573of your choice.
1574
1575 <Location /myapp>
1576 SetHandler modperl
1577 PerlResponseHandler MyApp
1578 </Location>
1579
1580When running this way, it is best to make use of the C<uri_for> method in
1581Catalyst for constructing correct links.
1582
1583=head4 Static file handling
1584
1585Static files can be served directly by Apache for a performance boost.
1586
1587 DocumentRoot /var/www/MyApp/root
1588 <Location /static>
1589 SetHandler default-handler
1590 </Location>
1591
1592This will let all files within root/static be handled directly by Apache. In
1593a two-tiered setup, the frontend server should handle static files.
1594The configuration to do this on the frontend will vary.
1595
3cca8359 1596The same is accomplished in lighttpd with the following snippet:
1597
1598 $HTTP["url"] !~ "^/(?:img/|static/|css/|favicon.ico$)" {
1599 fastcgi.server = (
1600 "" => (
1601 "MyApp" => (
1602 "socket" => "/tmp/myapp.socket",
1603 "check-local" => "disable",
1604 )
1605 )
1606 )
1607 }
1608
1609Which serves everything in the img, static, css directories
1610statically, as well as the favicon file.
1611
c1c35b01 1612Note the path of the application needs to be stated explicitly in the
1613web server configuration for both these recipes.
3cca8359 1614
cb93c9d7 1615=head2 Catalyst on shared hosting
1616
1617So, you want to put your Catalyst app out there for the whole world to
1618see, but you don't want to break the bank. There is an answer - if you
1619can get shared hosting with FastCGI and a shell, you can install your
1620Catalyst app in a local directory on your shared host. First, run
1621
1622 perl -MCPAN -e shell
1623
1624and go through the standard CPAN configuration process. Then exit out
1625without installing anything. Next, open your .bashrc and add
1626
1627 export PATH=$HOME/local/bin:$HOME/local/script:$PATH
1628 perlversion=`perl -v | grep 'built for' | awk '{print $4}' | sed -e 's/v//;'`
1629 export PERL5LIB=$HOME/local/share/perl/$perlversion:$HOME/local/lib/perl/$perlversion:$HOME/local/lib:$PERL5LIB
1630
1631and log out, then back in again (or run C<". .bashrc"> if you
1632prefer). Finally, edit C<.cpan/CPAN/MyConfig.pm> and add
1633
1634 'make_install_arg' => qq[SITEPREFIX=$ENV{HOME}/local],
1635 'makepl_arg' => qq[INSTALLDIRS=site install_base=$ENV{HOME}/local],
1636
1637Now you can install the modules you need using CPAN as normal; they
1638will be installed into your local directory, and perl will pick them
1639up. Finally, change directory into the root of your virtual host and
1640symlink your application's script directory in:
1641
1642 cd path/to/mydomain.com
1643 ln -s ~/lib/MyApp/script script
1644
1645And add the following lines to your .htaccess file (assuming the server
1646is setup to handle .pl as fcgi - you may need to rename the script to
1647myapp_fastcgi.fcgi and/or use a SetHandler directive):
1648
1649 RewriteEngine On
1650 RewriteCond %{REQUEST_URI} !^/?script/myapp_fastcgi.pl
1651 RewriteRule ^(.*)$ script/myapp_fastcgi.pl/$1 [PT,L]
1652
1653Now C<http://mydomain.com/> should now Just Work. Congratulations, now
1654you can tell your friends about your new website (or in our case, tell
1655the client it's time to pay the invoice :) )
1656
1657=head2 FastCGI Deployment
1658
1659FastCGI is a high-performance extension to CGI. It is suitable
1660for production environments.
1661
1662=head3 Pros
1663
1664=head4 Speed
1665
1666FastCGI performs equally as well as mod_perl. Don't let the 'CGI' fool you;
1667your app runs as multiple persistent processes ready to receive connections
1668from the web server.
1669
1670=head4 App Server
1671
1672When using external FastCGI servers, your application runs as a standalone
1673application server. It may be restarted independently from the web server.
1674This allows for a more robust environment and faster reload times when
1675pushing new app changes. The frontend server can even be configured to
1676display a friendly "down for maintenance" page while the application is
1677restarting.
1678
1679=head4 Load-balancing
1680
1681You can launch your application on multiple backend servers and allow the
1682frontend web server to load-balance between all of them. And of course, if
1683one goes down, your app continues to run fine.
1684
1685=head4 Multiple versions of the same app
1686
1687Each FastCGI application is a separate process, so you can run different
1688versions of the same app on a single server.
1689
1690=head4 Can run with threaded Apache
1691
1692Since your app is not running inside of Apache, the faster mpm_worker module
1693can be used without worrying about the thread safety of your application.
1694
1695=head3 Cons
1696
1697=head4 More complex environment
1698
1699With FastCGI, there are more things to monitor and more processes running
1700than when using mod_perl.
1701
1702=head3 Setup
1703
1704=head4 1. Install Apache with mod_fastcgi
1705
1706mod_fastcgi for Apache is a third party module, and can be found at
1707L<http://www.fastcgi.com/>. It is also packaged in many distributions,
1708for example, libapache2-mod-fastcgi in Debian.
1709
1710=head4 2. Configure your application
1711
1712 # Serve static content directly
1713 DocumentRoot /var/www/MyApp/root
1714 Alias /static /var/www/MyApp/root/static
1715
1716 FastCgiServer /var/www/MyApp/script/myapp_fastcgi.pl -processes 3
1717 Alias /myapp/ /var/www/MyApp/script/myapp_fastcgi.pl/
1718
1719 # Or, run at the root
1720 Alias / /var/www/MyApp/script/myapp_fastcgi.pl/
1721
1722The above commands will launch 3 app processes and make the app available at
1723/myapp/
1724
1725=head3 Standalone server mode
1726
1727While not as easy as the previous method, running your app as an external
1728server gives you much more flexibility.
1729
1730First, launch your app as a standalone server listening on a socket.
1731
1732 script/myapp_fastcgi.pl -l /tmp/myapp.socket -n 5 -p /tmp/myapp.pid -d
1733
1734You can also listen on a TCP port if your web server is not on the same
1735machine.
1736
1737 script/myapp_fastcgi.pl -l :8080 -n 5 -p /tmp/myapp.pid -d
1738
1739You will probably want to write an init script to handle starting/stopping
1740of the app using the pid file.
1741
1742Now, we simply configure Apache to connect to the running server.
1743
1744 # 502 is a Bad Gateway error, and will occur if the backend server is down
1745 # This allows us to display a friendly static page that says "down for
1746 # maintenance"
1747 Alias /_errors /var/www/MyApp/root/error-pages
1748 ErrorDocument 502 /_errors/502.html
1749
31bdf270 1750 FastCgiExternalServer /tmp/myapp.fcgi -socket /tmp/myapp.socket
1751 Alias /myapp/ /tmp/myapp.fcgi/
cb93c9d7 1752
1753 # Or, run at the root
31bdf270 1754 Alias / /tmp/myapp.fcgi/
cb93c9d7 1755
1756=head3 More Info
1757
1758L<Catalyst::Engine::FastCGI>.
1759
1760=head2 Development server deployment
1761
1762The development server is a mini web server written in perl. If you
1763expect a low number of hits or you don't need mod_perl/FastCGI speed,
1764you could use the development server as the application server with a
ad2a47ab 1765lightweight proxy web server at the front. However, consider using
1766L<Catalyst::Engine::HTTP::POE> for this kind of deployment instead, since
1767it can better handle multiple concurrent requests without forking, or can
1768prefork a set number of servers for improved performance.
cb93c9d7 1769
1770=head3 Pros
1771
1772As this is an application server setup, the pros are the same as
1773FastCGI (with the exception of speed).
1774It is also:
1775
1776=head4 Simple
1777
1778The development server is what you create your code on, so if it works
1779here, it should work in production!
1780
1781=head3 Cons
1782
1783=head4 Speed
1784
1785Not as fast as mod_perl or FastCGI. Needs to fork for each request
1786that comes in - make sure static files are served by the web server to
1787save forking.
1788
1789=head3 Setup
1790
1791=head4 Start up the development server
1792
ad2a47ab 1793 script/myapp_server.pl -p 8080 -k -f -pidfile=/tmp/myapp.pid
cb93c9d7 1794
1795You will probably want to write an init script to handle stop/starting
1796the app using the pid file.
1797
1798=head4 Configuring Apache
1799
1800Make sure mod_proxy is enabled and add:
1801
1802 # Serve static content directly
1803 DocumentRoot /var/www/MyApp/root
1804 Alias /static /var/www/MyApp/root/static
1805
1806 ProxyRequests Off
1807 <Proxy *>
1808 Order deny,allow
1809 Allow from all
1810 </Proxy>
1811 ProxyPass / http://localhost:8080/
1812 ProxyPassReverse / http://localhost:8080/
1813
1814You can wrap the above within a VirtualHost container if you want
1815different apps served on the same host.
1816
1817=head2 Quick deployment: Building PAR Packages
1818
1819You have an application running on your development box, but then you
1820have to quickly move it to another one for
1821demonstration/deployment/testing...
1822
1823PAR packages can save you from a lot of trouble here. They are usual Zip
1824files that contain a blib tree; you can even include all prereqs and a
1825perl interpreter by setting a few flags!
1826
1827=head3 Follow these few points to try it out!
1828
18291. Install Catalyst and PAR 0.89 (or later)
1830
1831 % perl -MCPAN -e 'install Catalyst'
1832 ...
1833 % perl -MCPAN -e 'install PAR'
1834 ...
1835
18362. Create a application
1837
1838 % catalyst.pl MyApp
1839 ...
1840 % cd MyApp
1841
1842Recent versions of Catalyst (5.62 and up) include
1843L<Module::Install::Catalyst>, which simplifies the process greatly. From the shell in your application directory:
1844
1845 % perl Makefile.PL
1846 % make catalyst_par
1847
1848Congratulations! Your package "myapp.par" is ready, the following
1849steps are just optional.
1850
18513. Test your PAR package with "parl" (no typo)
1852
1853 % parl myapp.par
1854 Usage:
1855 [parl] myapp[.par] [script] [arguments]
1856
1857 Examples:
1858 parl myapp.par myapp_server.pl -r
1859 myapp myapp_cgi.pl
1860
1861 Available scripts:
1862 myapp_cgi.pl
1863 myapp_create.pl
1864 myapp_fastcgi.pl
1865 myapp_server.pl
1866 myapp_test.pl
1867
1868 % parl myapp.par myapp_server.pl
1869 You can connect to your server at http://localhost:3000
1870
1871Yes, this nifty little starter application gets automatically included.
1872You can also use "catalyst_par_script('myapp_server.pl')" to set a
1873default script to execute.
1874
18756. Want to create a binary that includes the Perl interpreter?
1876
1877 % pp -o myapp myapp.par
1878 % ./myapp myapp_server.pl
1879 You can connect to your server at http://localhost:3000
1880
1881=head2 Serving static content
1882
1883Serving static content in Catalyst used to be somewhat tricky; the use
1884of L<Catalyst::Plugin::Static::Simple> makes everything much easier.
1885This plugin will automatically serve your static content during development,
1886but allows you to easily switch to Apache (or other server) in a
1887production environment.
1888
1889=head3 Introduction to Static::Simple
1890
1891Static::Simple is a plugin that will help to serve static content for your
1892application. By default, it will serve most types of files, excluding some
1893standard Template Toolkit extensions, out of your B<root> file directory. All
1894files are served by path, so if B<images/me.jpg> is requested, then
1895B<root/images/me.jpg> is found and served.
1896
1897=head3 Usage
1898
1899Using the plugin is as simple as setting your use line in MyApp.pm to include:
1900
1901 use Catalyst qw/Static::Simple/;
1902
1903and already files will be served.
1904
1905=head3 Configuring
1906
1907Static content is best served from a single directory within your root
1908directory. Having many different directories such as C<root/css> and
1909C<root/images> requires more code to manage, because you must separately
1910identify each static directory--if you decide to add a C<root/js>
1911directory, you'll need to change your code to account for it. In
1912contrast, keeping all static directories as subdirectories of a main
1913C<root/static> directory makes things much easier to manage. Here's an
1914example of a typical root directory structure:
1915
1916 root/
1917 root/content.tt
1918 root/controller/stuff.tt
1919 root/header.tt
1920 root/static/
1921 root/static/css/main.css
1922 root/static/images/logo.jpg
1923 root/static/js/code.js
1924
1925
1926All static content lives under C<root/static>, with everything else being
1927Template Toolkit files.
1928
1929=over 4
1930
1931=item Include Path
1932
1933You may of course want to change the default locations, and make
1934Static::Simple look somewhere else, this is as easy as:
1935
1936 MyApp->config->{static}->{include_path} = [
1937 MyApp->config->{root},
1938 '/path/to/my/files'
1939 ];
1940
1941When you override include_path, it will not automatically append the
1942normal root path, so you need to add it yourself if you still want
1943it. These will be searched in order given, and the first matching file
1944served.
1945
1946=item Static directories
1947
1948If you want to force some directories to be only static, you can set
1949them using paths relative to the root dir, or regular expressions:
1950
1951 MyApp->config->{static}->{dirs} = [
1952 'static',
1953 qr/^(images|css)/,
1954 ];
1955
1956=item File extensions
1957
1958By default, the following extensions are not served (that is, they will
1959be processed by Catalyst): B<tmpl, tt, tt2, html, xhtml>. This list can
1960be replaced easily:
1961
1962 MyApp->config->{static}->{ignore_extensions} = [
1963 qw/tmpl tt tt2 html xhtml/
1964 ];
1965
1966=item Ignoring directories
1967
1968Entire directories can be ignored. If used with include_path,
1969directories relative to the include_path dirs will also be ignored:
1970
1971 MyApp->config->{static}->{ignore_dirs} = [ qw/tmpl css/ ];
1972
1973=back
1974
1975=head3 More information
1976
1977L<http://search.cpan.org/dist/Catalyst-Plugin-Static-Simple/>
1978
1979=head3 Serving manually with the Static plugin with HTTP::Daemon (myapp_server.pl)
1980
1981In some situations you might want to control things more directly,
1982using L<Catalyst::Plugin::Static>.
1983
1984In your main application class (MyApp.pm), load the plugin:
1985
1986 use Catalyst qw/-Debug FormValidator Static OtherPlugin/;
1987
1988You will also need to make sure your end method does I<not> forward
1989static content to the view, perhaps like this:
1990
1991 sub end : Private {
1992 my ( $self, $c ) = @_;
1993
1994 $c->forward( 'MyApp::View::TT' )
1995 unless ( $c->res->body || !$c->stash->{template} );
1996 }
1997
1998This code will only forward to the view if a template has been
1999previously defined by a controller and if there is not already data in
2000C<$c-E<gt>res-E<gt>body>.
2001
2002Next, create a controller to handle requests for the /static path. Use
2003the Helper to save time. This command will create a stub controller as
2004C<lib/MyApp/Controller/Static.pm>.
2005
2006 $ script/myapp_create.pl controller Static
2007
2008Edit the file and add the following methods:
2009
2010 # serve all files under /static as static files
2011 sub default : Path('/static') {
2012 my ( $self, $c ) = @_;
2013
2014 # Optional, allow the browser to cache the content
2015 $c->res->headers->header( 'Cache-Control' => 'max-age=86400' );
2016
2017 $c->serve_static; # from Catalyst::Plugin::Static
2018 }
2019
2020 # also handle requests for /favicon.ico
2021 sub favicon : Path('/favicon.ico') {
2022 my ( $self, $c ) = @_;
2023
2024 $c->serve_static;
2025 }
2026
2027You can also define a different icon for the browser to use instead of
2028favicon.ico by using this in your HTML header:
2029
2030 <link rel="icon" href="/static/myapp.ico" type="image/x-icon" />
2031
2032=head3 Common problems with the Static plugin
2033
2034The Static plugin makes use of the C<shared-mime-info> package to
2035automatically determine MIME types. This package is notoriously
2036difficult to install, especially on win32 and OS X. For OS X the easiest
2037path might be to install Fink, then use C<apt-get install
2038shared-mime-info>. Restart the server, and everything should be fine.
2039
2040Make sure you are using the latest version (>= 0.16) for best
2041results. If you are having errors serving CSS files, or if they get
2042served as text/plain instead of text/css, you may have an outdated
2043shared-mime-info version. You may also wish to simply use the following
2044code in your Static controller:
2045
2046 if ($c->req->path =~ /css$/i) {
2047 $c->serve_static( "text/css" );
2048 } else {
2049 $c->serve_static;
2050 }
2051
2052=head3 Serving Static Files with Apache
2053
2054When using Apache, you can bypass Catalyst and any Static
2055plugins/controllers controller by intercepting requests for the
2056C<root/static> path at the server level. All that is required is to
2057define a DocumentRoot and add a separate Location block for your static
2058content. Here is a complete config for this application under mod_perl
20591.x:
2060
2061 <Perl>
2062 use lib qw(/var/www/MyApp/lib);
2063 </Perl>
2064 PerlModule MyApp
2065
2066 <VirtualHost *>
2067 ServerName myapp.example.com
2068 DocumentRoot /var/www/MyApp/root
2069 <Location />
2070 SetHandler perl-script
2071 PerlHandler MyApp
2072 </Location>
2073 <LocationMatch "/(static|favicon.ico)">
2074 SetHandler default-handler
2075 </LocationMatch>
2076 </VirtualHost>
2077
2078And here's a simpler example that'll get you started:
2079
2080 Alias /static/ "/my/static/files/"
2081 <Location "/static">
2082 SetHandler none
2083 </Location>
2084
2085=head2 Caching
2086
2087Catalyst makes it easy to employ several different types of caching to
2088speed up your applications.
2089
2090=head3 Cache Plugins
2091
2092There are three wrapper plugins around common CPAN cache modules:
2093Cache::FastMmap, Cache::FileCache, and Cache::Memcached. These can be
2094used to cache the result of slow operations.
2095
2096This very page you're viewing makes use of the FileCache plugin to cache the
2097rendered XHTML version of the source POD document. This is an ideal
2098application for a cache because the source document changes infrequently but
2099may be viewed many times.
2100
2101 use Catalyst qw/Cache::FileCache/;
2102
2103 ...
2104
2105 use File::stat;
2106 sub render_pod : Local {
2107 my ( self, $c ) = @_;
2108
2109 # the cache is keyed on the filename and the modification time
2110 # to check for updates to the file.
2111 my $file = $c->path_to( 'root', '2005', '11.pod' );
2112 my $mtime = ( stat $file )->mtime;
2113
2114 my $cached_pod = $c->cache->get("$file $mtime");
2115 if ( !$cached_pod ) {
2116 $cached_pod = do_slow_pod_rendering();
2117 # cache the result for 12 hours
2118 $c->cache->set( "$file $mtime", $cached_pod, '12h' );
2119 }
2120 $c->stash->{pod} = $cached_pod;
2121 }
2122
2123We could actually cache the result forever, but using a value such as 12 hours
2124allows old entries to be automatically expired when they are no longer needed.
2125
2126=head3 Page Caching
2127
2128Another method of caching is to cache the entire HTML page. While this is
2129traditionally handled by a front-end proxy server like Squid, the Catalyst
2130PageCache plugin makes it trivial to cache the entire output from
2131frequently-used or slow actions.
2132
2133Many sites have a busy content-filled front page that might look something
2134like this. It probably takes a while to process, and will do the exact same
2135thing for every single user who views the page.
2136
2137 sub front_page : Path('/') {
2138 my ( $self, $c ) = @_;
2139
2140 $c->forward( 'get_news_articles' );
2141 $c->forward( 'build_lots_of_boxes' );
2142 $c->forward( 'more_slow_stuff' );
2143
2144 $c->stash->{template} = 'index.tt';
2145 }
2146
2147We can add the PageCache plugin to speed things up.
2148
2149 use Catalyst qw/Cache::FileCache PageCache/;
2150
2151 sub front_page : Path ('/') {
2152 my ( $self, $c ) = @_;
2153
2154 $c->cache_page( 300 );
2155
2156 # same processing as above
2157 }
2158
2159Now the entire output of the front page, from <html> to </html>, will be
2160cached for 5 minutes. After 5 minutes, the next request will rebuild the
2161page and it will be re-cached.
2162
2163Note that the page cache is keyed on the page URI plus all parameters, so
2164requests for / and /?foo=bar will result in different cache items. Also,
2165only GET requests will be cached by the plugin.
2166
2167You can even get that front-end Squid proxy to help out by enabling HTTP
2168headers for the cached page.
2169
2170 MyApp->config->{page_cache}->{set_http_headers} = 1;
2171
2172This would now set the following headers so proxies and browsers may cache
2173the content themselves.
2174
2175 Cache-Control: max-age=($expire_time - time)
2176 Expires: $expire_time
2177 Last-Modified: $cache_created_time
2178
2179=head3 Template Caching
2180
2181Template Toolkit provides support for caching compiled versions of your
2182templates. To enable this in Catalyst, use the following configuration.
2183TT will cache compiled templates keyed on the file mtime, so changes will
2184still be automatically detected.
2185
2186 package MyApp::View::TT;
2187
2188 use strict;
2189 use warnings;
2190 use base 'Catalyst::View::TT';
2191
2192 __PACKAGE__->config(
2193 COMPILE_DIR => '/tmp/template_cache',
2194 );
2195
2196 1;
2197
2198=head3 More Info
2199
2200See the documentation for each cache plugin for more details and other
2201available configuration options.
2202
2203L<Catalyst::Plugin::Cache::FastMmap>
2204L<Catalyst::Plugin::Cache::FileCache>
2205L<Catalyst::Plugin::Cache::Memcached>
2206L<Catalyst::Plugin::PageCache>
2207L<http://search.cpan.org/dist/Template-Toolkit/lib/Template/Manual/Config.pod#Caching_and_Compiling_Options>
2208
2209=head1 Testing
2210
2211Testing is an integral part of the web application development
2212process. Tests make multi developer teams easier to coordinate, and
2213they help ensure that there are no nasty surprises after upgrades or
2214alterations.
2215
2216=head2 Testing
2217
2218Catalyst provides a convenient way of testing your application during
2219development and before deployment in a real environment.
2220
2221C<Catalyst::Test> makes it possible to run the same tests both locally
2222(without an external daemon) and against a remote server via HTTP.
2223
2224=head3 Tests
2225
2226Let's examine a skeleton application's C<t/> directory:
2227
2228 mundus:~/MyApp chansen$ ls -l t/
2229 total 24
2230 -rw-r--r-- 1 chansen chansen 95 18 Dec 20:50 01app.t
2231 -rw-r--r-- 1 chansen chansen 190 18 Dec 20:50 02pod.t
2232 -rw-r--r-- 1 chansen chansen 213 18 Dec 20:50 03podcoverage.t
2233
2234=over 4
2235
2236=item C<01app.t>
2237
2238Verifies that the application loads, compiles, and returns a successful
2239response.
2240
2241=item C<02pod.t>
2242
2243Verifies that all POD is free from errors. Only executed if the C<TEST_POD>
2244environment variable is true.
2245
2246=item C<03podcoverage.t>
2247
2248Verifies that all methods/functions have POD coverage. Only executed if the
2249C<TEST_POD> environment variable is true.
2250
2251=back
2252
2253=head3 Creating tests
2254
2255 mundus:~/MyApp chansen$ cat t/01app.t | perl -ne 'printf( "%2d %s", $., $_ )'
2256 1 use Test::More tests => 2;
2257 2 use_ok( Catalyst::Test, 'MyApp' );
2258 3
2259 4 ok( request('/')->is_success );
2260
2261The first line declares how many tests we are going to run, in this case
2262two. The second line tests and loads our application in test mode. The
2263fourth line verifies that our application returns a successful response.
2264
2265C<Catalyst::Test> exports two functions, C<request> and C<get>. Each can
2266take three different arguments:
2267
2268=over 4
2269
2270=item A string which is a relative or absolute URI.
2271
2272 request('/my/path');
2273 request('http://www.host.com/my/path');
2274
2275=item An instance of C<URI>.
2276
2277 request( URI->new('http://www.host.com/my/path') );
2278
2279=item An instance of C<HTTP::Request>.
2280
2281 request( HTTP::Request->new( GET => 'http://www.host.com/my/path') );
2282
2283=back
2284
2285C<request> returns an instance of C<HTTP::Response> and C<get> returns the
2286content (body) of the response.
2287
2288=head3 Running tests locally
2289
2290 mundus:~/MyApp chansen$ CATALYST_DEBUG=0 TEST_POD=1 prove --lib lib/ t/
2291 t/01app............ok
2292 t/02pod............ok
2293 t/03podcoverage....ok
2294 All tests successful.
2295 Files=3, Tests=4, 2 wallclock secs ( 1.60 cusr + 0.36 csys = 1.96 CPU)
2296
2297C<CATALYST_DEBUG=0> ensures that debugging is off; if it's enabled you
2298will see debug logs between tests.
2299
2300C<TEST_POD=1> enables POD checking and coverage.
2301
2302C<prove> A command-line tool that makes it easy to run tests. You can
2303find out more about it from the links below.
2304
2305=head3 Running tests remotely
2306
2307 mundus:~/MyApp chansen$ CATALYST_SERVER=http://localhost:3000/ prove --lib lib/ t/01app.t
2308 t/01app....ok
2309 All tests successful.
2310 Files=1, Tests=2, 0 wallclock secs ( 0.40 cusr + 0.01 csys = 0.41 CPU)
2311
2312C<CATALYST_SERVER=http://localhost:3000/> is the absolute deployment URI of
2313your application. In C<CGI> or C<FastCGI> it should be the host and path
2314to the script.
2315
2316=head3 C<Test::WWW::Mechanize> and Catalyst
2317
2318Be sure to check out C<Test::WWW::Mechanize::Catalyst>. It makes it easy to
2319test HTML, forms and links. A short example of usage:
2320
2321 use Test::More tests => 6;
2322 use_ok( Test::WWW::Mechanize::Catalyst, 'MyApp' );
2323
2324 my $mech = Test::WWW::Mechanize::Catalyst->new;
2325 $mech->get_ok("http://localhost/", 'Got index page');
2326 $mech->title_like( qr/^MyApp on Catalyst/, 'Got right index title' );
2327 ok( $mech->find_link( text_regex => qr/^Wiki/i ), 'Found link to Wiki' );
2328 ok( $mech->find_link( text_regex => qr/^Mailing-List/i ), 'Found link to Mailing-List' );
2329 ok( $mech->find_link( text_regex => qr/^IRC channel/i ), 'Found link to IRC channel' );
2330
2331=head3 Further Reading
2332
2333=over 4
2334
2335=item Catalyst::Test
2336
2337L<http://search.cpan.org/dist/Catalyst/lib/Catalyst/Test.pm>
2338
2339=item Test::WWW::Mechanize::Catalyst
2340
2341L<http://search.cpan.org/dist/Test-WWW-Mechanize-Catalyst/lib/Test/WWW/Mechanize/Catalyst.pm>
2342
2343=item Test::WWW::Mechanize
2344
2345L<http://search.cpan.org/dist/Test-WWW-Mechanize/Mechanize.pm>
2346
2347=item WWW::Mechanize
2348
2349L<http://search.cpan.org/dist/WWW-Mechanize/lib/WWW/Mechanize.pm>
2350
2351=item LWP::UserAgent
2352
2353L<http://search.cpan.org/dist/libwww-perl/lib/LWP/UserAgent.pm>
2354
2355=item HTML::Form
2356
2357L<http://search.cpan.org/dist/libwww-perl/lib/HTML/Form.pm>
2358
2359=item HTTP::Message
2360
2361L<http://search.cpan.org/dist/libwww-perl/lib/HTTP/Message.pm>
2362
2363=item HTTP::Request
2364
2365L<http://search.cpan.org/dist/libwww-perl/lib/HTTP/Request.pm>
2366
2367=item HTTP::Request::Common
2368
2369L<http://search.cpan.org/dist/libwww-perl/lib/HTTP/Request/Common.pm>
2370
2371=item HTTP::Response
2372
2373L<http://search.cpan.org/dist/libwww-perl/lib/HTTP/Response.pm>
2374
2375=item HTTP::Status
2376
2377L<http://search.cpan.org/dist/libwww-perl/lib/HTTP/Status.pm>
2378
2379=item URI
2380
2381L<http://search.cpan.org/dist/URI/URI.pm>
2382
2383=item Test::More
2384
2385L<http://search.cpan.org/dist/Test-Simple/lib/Test/More.pm>
2386
2387=item Test::Pod
2388
2389L<http://search.cpan.org/dist/Test-Pod/Pod.pm>
2390
2391=item Test::Pod::Coverage
2392
2393L<http://search.cpan.org/dist/Test-Pod-Coverage/Coverage.pm>
2394
2395=item prove (Test::Harness)
2396
2397L<http://search.cpan.org/dist/Test-Harness/bin/prove>
2398
2399=back
2400
2401=head3 More Information
2402
2403L<http://search.cpan.org/perldoc?Catalyst::Plugin::Authorization::Roles>
2404L<http://search.cpan.org/perldoc?Catalyst::Plugin::Authorization::ACL>
2405
2406=head1 AUTHORS
2407
2408Sebastian Riedel C<sri@oook.de>
2409
2410Danijel Milicevic C<me@danijel.de>
2411
2412Viljo Marrandi C<vilts@yahoo.com>
2413
2414Marcus Ramberg C<mramberg@cpan.org>
2415
2416Jesse Sheidlower C<jester@panix.com>
2417
2418Andy Grundman C<andy@hybridized.org>
2419
2420Chisel Wright C<pause@herlpacker.co.uk>
2421
2422Will Hawes C<info@whawes.co.uk>
2423
2424Gavin Henry C<ghenry@perl.me.uk>
2425
2426Kieren Diment C<kd@totaldatasolution.com>
2427
2428=head1 COPYRIGHT
2429
2430This document is free, you can redistribute it and/or modify it
2431under the same terms as Perl itself.
2432