e125cd748a9c8af0bc44b28088ecb19b64772b2b
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / MoreCatalystBasics.pod
1 =head1 NAME
2
3 Catalyst::Manual::Tutorial::MoreCatalystBasics - Catalyst Tutorial - Chapter 3: More Catalyst Application Development Basics
4
5
6 =head1 OVERVIEW
7
8 This is B<Chapter 3 of 10> for the Catalyst tutorial.
9
10 L<Tutorial Overview|Catalyst::Manual::Tutorial>
11
12 =over 4
13
14 =item 1
15
16 L<Introduction|Catalyst::Manual::Tutorial::Intro>
17
18 =item 2
19
20 L<Catalyst Basics|Catalyst::Manual::Tutorial::CatalystBasics>
21
22 =item 3
23
24 B<More Catalyst Basics>
25
26 =item 4
27
28 L<Basic CRUD|Catalyst::Manual::Tutorial::BasicCRUD>
29
30 =item 5
31
32 L<Authentication|Catalyst::Manual::Tutorial::Authentication>
33
34 =item 6
35
36 L<Authorization|Catalyst::Manual::Tutorial::Authorization>
37
38 =item 7
39
40 L<Debugging|Catalyst::Manual::Tutorial::Debugging>
41
42 =item 8
43
44 L<Testing|Catalyst::Manual::Tutorial::Testing>
45
46 =item 9
47
48 L<Advanced CRUD|Catalyst::Manual::Tutorial::AdvancedCRUD>
49
50 =item 10
51
52 L<Appendices|Catalyst::Manual::Tutorial::Appendices>
53
54 =back
55
56
57 =head1 DESCRIPTION
58
59 This chapter of the tutorial builds on the work done in Chapter 2 to 
60 explore some features that are more typical of "real world" web 
61 applications. From this chapter of the tutorial onward, we will be 
62 building a simple book database application.  Although the application 
63 will be too limited to be of use to anyone, it should provide a basic 
64 environment where we can explore a variety of features used in 
65 virtually all web applications.
66
67 You can checkout the source code for this example from the catalyst
68 subversion repository as per the instructions in
69 L<Catalyst::Manual::Tutorial::Intro|Catalyst::Manual::Tutorial::Intro>.
70
71
72 =head1 CREATE A NEW APPLICATION
73
74 The remainder of the tutorial will build an application called C<MyApp>.
75 First use the Catalyst C<catalyst.pl> script to initialize the framework
76 for the C<MyApp> application (make sure you aren't still inside the
77 directory of the C<Hello> application from the previous chapter of the
78 tutorial or in a directory that already has a "MyApp" subdirectory):
79
80     $ catalyst.pl MyApp
81     created "MyApp"
82     created "MyApp/script"
83     created "MyApp/lib"
84     created "MyApp/root"
85     ...
86     created "MyApp/script/myapp_create.pl"
87     $ cd MyApp
88
89 This creates a similar skeletal structure to what we saw in Chapter 2 of
90 the tutorial, except with C<MyApp> and C<myapp> substituted for
91 C<Hello> and C<hello>.
92
93
94 =head1 EDIT THE LIST OF CATALYST PLUGINS
95
96 One of the greatest benefits of Catalyst is that it has such a large
97 library of plugins and base classes available.  Plugins are used to
98 seamlessly integrate existing Perl modules into the overall Catalyst
99 framework.  In general, they do this by adding additional methods to the
100 C<context> object (generally written as C<$c>) that Catalyst passes to
101 every component throughout the framework.
102
103 By default, Catalyst enables three plugins/flags:
104
105 =over 4
106
107 =item *
108
109 C<-Debug> Flag
110
111 Enables the Catalyst debug output you saw when we started the
112 C<script/myapp_server.pl> development server earlier.  You can remove
113 this item when you place your application into production.
114
115 As you may have noticed, C<-Debug> is not a plugin, but a I<flag>. 
116 Although most of the items specified on the C<__PACKAGE__-E<gt>setup> 
117 line of your application class will be plugins, Catalyst supports a 
118 limited number of flag options (of these, C<-Debug> is the most 
119 common).  See the documentation for C<Catalyst.pm> to get details on 
120 other flags (currently C<-Engine>, C<-Home>, and C<-Log>).
121
122 If you prefer, you can use the C<$c-E<gt>debug> method to enable debug
123 messages.
124
125 B<TIP>: Depending on your needs, it can be helpful to permanently
126 remove C<-Debug> from C<lib/MyApp.pm> and then use the C<-d> option
127 to C<script/myapp_server.pl> to re-enable it just for the development
128 server.  We will not be using that approach in the tutorial, but feel
129 free to make use of it in your own projects.
130
131 =item *
132
133 L<Catalyst::Plugin::ConfigLoader|Catalyst::Plugin::ConfigLoader>
134
135 C<ConfigLoader> provides an automatic way to load configurable
136 parameters for your application from a central
137 L<Config::General|Config::General> file (versus having the values
138 hard-coded inside your Perl modules).  Config::General uses syntax
139 very similar to Apache configuration files.  We will see how to use
140 this feature of Catalyst during the authentication and authorization
141 sections (Chapter 5 and Chapter 6).
142
143 B<IMPORTANT NOTE:> If you are using a version of 
144 L<Catalyst::Devel|Catalyst::Devel> prior to version 1.06, be aware 
145 that Catalyst changed the default format from YAML to the more 
146 straightforward C<Config::General> style.  This tutorial uses the 
147 newer C<myapp.conf> file for C<Config::General>. However, Catalyst 
148 supports both formats and will automatically use either C<myapp.conf> 
149 or C<myapp.yml> (or any other format supported by 
150 L<Catalyst::Plugin::ConfigLoader|Catalyst::Plugin::ConfigLoader> and 
151 L<Config::Any|Config::Any>).  If you are using a version of 
152 Catalyst::Devel prior to 1.06, you can convert to the newer format by 
153 simply creating the C<myapp.conf> file manually and deleting 
154 C<myapp.yml>.  The default contents of the C<myapp.conf> you create 
155 should only consist of one line: 
156
157     name MyApp
158
159 B<TIP>: This script can be useful for converting between configuration
160 formats:
161
162     perl -Ilib -e 'use MyApp; use Config::General;
163         Config::General->new->save_file("myapp.conf", MyApp->config);'
164
165 =item *
166
167 L<Catalyst::Plugin::Static::Simple|Catalyst::Plugin::Static::Simple>
168
169 C<Static::Simple> provides an easy method of serving static content such
170 as images and CSS files under the development server.
171
172 =back
173
174 For our application, we want to add one new plugin into the mix.  To 
175 do this, edit C<lib/MyApp.pm> (this file is generally referred to as 
176 your I<application class>) and delete the lines with:
177
178     use Catalyst qw/-Debug
179                     ConfigLoader
180                     Static::Simple/;
181
182 Then replace it with:
183
184     # Load plugins
185     use Catalyst qw/-Debug
186                 ConfigLoader
187                 Static::Simple
188                 
189                 StackTrace
190                 /;
191
192 B<Note:> Recent versions of C<Catalyst::Devel> have used a variety of 
193 techniques to load these plugins/flags.  For example, you might see
194 the following:
195
196     __PACKAGE__->setup(qw/-Debug ConfigLoader Static::Simple/);
197
198 Don't let these variations confuse you -- they all accomplish the same 
199 result.
200
201 This tells Catalyst to start using one new plugin, 
202 L<Catalyst::Plugin::StackTrace|Catalyst::Plugin::StackTrace>, to add a 
203 stack trace to the standard Catalyst "debug screen" (the screen 
204 Catalyst sends to your browser when an error occurs). Be aware that 
205 L<StackTrace|Catalyst::Plugin::StackTrace> output appears in your 
206 browser, not in the console window from which you're running your 
207 application, which is where logging output usually goes.
208
209 B<Notes:> 
210
211 =over 4
212
213 =item *
214
215 C<__PACKAGE__> is just a shorthand way of referencing the name of the 
216 package where it is used.  Therefore, in C<MyApp.pm>, C<__PACKAGE__> 
217 is equivalent to C<MyApp>.
218
219 =item *
220
221 You will want to disable L<StackTrace|Catalyst::Plugin::StackTrace> 
222 before you put your application into production, but it can be helpful 
223 during development.
224
225 =item *
226
227 When specifying plugins on the C<__PACKAGE__-E<gt>setup> line, you can 
228 omit C<Catalyst::Plugin::> from the name.  Additionally, you can 
229 spread the plugin names across multiple lines as shown here, or place 
230 them all on one (or more) lines as with the default configuration.
231
232 =back
233
234
235 =head1 CREATE A CATALYST CONTROLLER
236
237 As discussed earlier, controllers are where you write methods that
238 interact with user input.  Typically, controller methods respond to
239 C<GET> and C<POST> messages from the user's web browser.
240
241 Use the Catalyst C<create> script to add a controller for book-related
242 actions:
243
244     $ script/myapp_create.pl controller Books
245      exists "/home/me/MyApp/script/../lib/MyApp/Controller"
246      exists "/home/me/MyApp/script/../t"
247     created "/home/me/MyApp/script/../lib/MyApp/Controller/Books.pm"
248     created "/home/me/MyApp/script/../t/controller_Books.t"
249
250 Then edit C<lib/MyApp/Controller/Books.pm> (as discussed in Chapter 2 of
251 the Tutorial, Catalyst has a separate directory under C<lib/MyApp> for
252 each of the three parts of MVC: C<Model>, C<View>, and C<Controller>)
253 and add the following method to the controller:
254
255     =head2 list
256     
257     Fetch all book objects and pass to books/list.tt2 in stash to be displayed
258     
259     =cut
260     
261     sub list : Local {
262         # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
263         # 'Context' that's used to 'glue together' the various components
264         # that make up the application
265         my ($self, $c) = @_;
266     
267         # Retrieve all of the book records as book model objects and store in the
268         # stash where they can be accessed by the TT template
269         # $c->stash->{books} = [$c->model('DB::Books')->all];
270         # But, for now, use this code until we create the model later
271         $c->stash->{books} = '';
272     
273         # Set the TT template to use.  You will almost always want to do this
274         # in your action methods (action methods respond to user input in
275         # your controllers).
276         $c->stash->{template} = 'books/list.tt2';
277     }
278
279 B<TIP>: See Appendix 1 for tips on removing the leading spaces when
280 cutting and pasting example code from POD-based documents.
281
282 Programmers experienced with object-oriented Perl should recognize 
283 C<$self> as a reference to the object where this method was called. 
284 On the other hand, C<$c> will be new to many Perl programmers who have 
285 not used Catalyst before (it's sometimes written as C<$context>).  The 
286 Context object is automatically passed to all Catalyst components.  It 
287 is used to pass information between components and provide access to 
288 Catalyst and plugin functionality.
289
290 Catalyst actions are regular Perl methods, but they make use of 
291 attributes (the "C<: Local>" next to the "C<sub list>" in the code 
292 above) to provide additional information to the Catalyst dispatcher 
293 logic (note that the space between the colon and the attribute name is 
294 optional... you will see attributes written both ways).  Most Catalyst 
295 Controllers use one of five action types:
296
297 =over 4
298
299 =item *
300
301 B<:Private> -- Use C<:Private> for methods that you want to make into 
302 an action, but you do not want Catalyst to directly expose the action 
303 to your users.  Catalyst will not map C<:Private> methods to a URI. 
304 Use them for various sorts of "special" methods (the C<begin>, 
305 C<auto>, etc. discussed below) or for methods you want to be able to 
306 C<forward> or C<detach> to.  (If the method is a plain old "helper 
307 method" that you don't want to be an action at all, then just define 
308 the method without any attribute -- you can call it in your code, but 
309 the Catalyst dispatcher will ignore it.)
310
311 There are five types of "special" build-in C<:Private> actions: 
312 C<begin>, C<end>, C<default>, C<index>, and C<auto>.
313
314 =over 4
315
316 =item *
317
318 With C<begin>, C<end>, C<default>, C<index> private actions, only the
319 most specific action of each type will be called.  For example, if you
320 define a C<begin> action in your controller it will I<override> a
321 C<begin> action in your application/root controller -- I<only> the
322 action in your controller will be called.
323
324 =item *
325
326 Unlike the other actions where only a single method is called for each
327 request, I<every> auto action along the chain of namespaces will be
328 called.  Each C<auto> action will be called I<from the application/root
329 controller down through the most specific class>.
330
331 =back
332
333 =item *
334
335 B<:Path> -- C<:Path> actions let you map a method to an explicit URI 
336 path.  For example, "C<:Path('list')>" in 
337 C<lib/MyApp/Controller/Books.pm> would match on the URL 
338 C<http://localhost:3000/books/list> but "C<:Path('/list')>" would match 
339 on C<http://localhost:3000/list>.  You can use C<:Args()> to specify 
340 how many arguments an action should except.  See 
341 L<Catalyst::Manual::Intro/Action_types> for more information and a few 
342 examples.
343
344 =item *
345
346 B<:Local> -- C<:Local> is merely a shorthand for 
347 "C<:Path('_name_of_method_')>".  For example, these are equivalent:
348 "C<sub create_book :Local {...}>" and 
349 "C<sub create_book :Path('create_book') {...}>".
350
351 =item *
352
353 B<:Global> -- C<:Global> is merely a shorthand for 
354 "C<:Path('/_name_of_method_')>".  For example, these are equivalent:
355 "C<sub create_book :Global {...}>" and 
356 "C<sub create_book :Path('/create_book') {...}>".
357
358 =item *
359
360 B<:Chained> -- Newer Catalyst applications tend to use the Chained 
361 dispatch form of action types because of its power and flexibility.  
362 It allows a series of controller methods to automatically be dispatched
363 to service a single user request.  See 
364 L<Catalyst::Manual::Tutorial::BasicCRUD|Catalyst::Manual::Tutorial::BasicCRUD> 
365 and L<Catalyst::DispatchType::Chained|Catalyst::DispatchType::Chained> 
366 for more information on chained actions.
367
368 =back
369
370 You should refer to L<Catalyst::Manual::Intro/Action_types> for 
371 additional information and for coverage of some lesser-used action 
372 types not discussed here (C<Regex> and C<LocalRegex>).
373
374
375 =head1 CATALYST VIEWS
376
377 As mentioned in Chapter 2 of the tutorial, views are where you render 
378 output, typically for display in the user's web browser (but also 
379 possibly using other display output-generation systems).  The code in 
380 C<lib/MyApp/View> selects the I<type> of view to use, with the actual 
381 rendering template found in the C<root> directory.  As with virtually 
382 every aspect of Catalyst, options abound when it comes to the specific 
383 view technology you adopt inside your application. However, most 
384 Catalyst applications use the Template Toolkit, known as TT (for more 
385 information on TT, see L<http://www.template-toolkit.org>). Other 
386 somewhat popular view technologies include Mason 
387 (L<http://www.masonhq.com> and L<http://www.masonbook.com>) and 
388 L<HTML::Template> (L<http://html-template.sourceforge.net>).
389
390
391 =head2 Create a Catalyst View
392
393 When using TT for the Catalyst view, there are two main helper scripts:
394
395 =over 4
396
397 =item *
398
399 L<Catalyst::Helper::View::TT|Catalyst::Helper::View::TT>
400
401 =item *
402
403 L<Catalyst::Helper::View::TTSite|Catalyst::Helper::View::TTSite>
404
405 =back
406
407 Both helpers are similar. C<TT> creates the C<lib/MyApp/View/TT.pm>
408 file and leaves the creation of any hierarchical template organization
409 entirely up to you. (It also creates a C<t/view_TT.t> file for testing;
410 test cases will be discussed in Chapter 8.) C<TTSite>, on the other hand, 
411 creates a modular and hierarchical view layout with
412 separate Template Toolkit (TT) files for common header and footer
413 information, configuration values, a CSS stylesheet, and more.
414
415 While C<TTSite> was useful to bootstrap a project, its use is now
416 deprecated and to be considered historical.  For most Catalyst
417 applications it adds redundant functionality and structure; many in the
418 Catalyst community recommend that it's easier to learn both Catalyst and
419 Template Toolkit if you use the more basic C<TT> approach.
420 Consequently, this tutorial will use "plain old TT."
421
422 Enter the following command to enable the C<TT> style of view
423 rendering for this tutorial:
424
425     $ script/myapp_create.pl view TT TT
426      exists "/home/me/MyApp/script/../lib/MyApp/View"
427      exists "/home/me/MyApp/script/../t"
428      created "/home/me/MyApp/script/../lib/MyApp/View/TT.pm"
429      created "/home/me/MyApp/script/../t/view_TT.t"
430
431 This simply creates a view called C<TT> (the second 'TT' argument) in 
432 a file called C<TT.pm> (the first 'TT' argument). It is now up to you 
433 to decide how you want to structure your view layout.  For the 
434 tutorial, we will start with a very simple TT template to initially 
435 demonstrate the concepts, but quickly migrate to a more typical 
436 "wrapper page" type of configuration (where the "wrapper" controls the 
437 overall "look and feel" of your site from a single file or set of 
438 files).
439
440 Edit C<lib/MyApp/View/TT.pm> and you should see that the default
441 contents contains something similar to the following:
442
443     __PACKAGE__->config(TEMPLATE_EXTENSION => '.tt');
444
445 And update it to match:
446
447     __PACKAGE__->config(
448         # Change default TT extension
449         TEMPLATE_EXTENSION => '.tt2',
450         # Set the location for TT files
451         INCLUDE_PATH => [
452                 MyApp->path_to( 'root', 'src' ),
453             ],
454     );
455
456 B<NOTE:> Make sure to add a comma after '.tt2' outside the single
457 quote.
458
459 This changes the default extension for Template Toolkit from '.tt' to
460 '.tt2' and changes the base directory for your template files from
461 C<root> to C<root/src>.  These changes from the default are done mostly
462 to facilitate the application we're developing in this tutorial; as with
463 most things Perl, there's more than one way to do it...
464
465 B<Note:> We will use C<root/src> as the base directory for our 
466 template files, which a full naming convention of 
467 C<root/src/_controller_name_/_action_name_.tt2>.  Another popular option is to
468 use C<root/> as the base (with a full filename pattern of 
469 C<root/_controller_name_/_action_name_.tt2>).
470
471
472 =head2 Create a TT Template Page
473
474 First create a directory for book-related TT templates:
475
476     $ mkdir -p root/src/books
477
478 Then create C<root/src/books/list.tt2> in your editor and enter:
479
480     [% # This is a TT comment.  The '-' at the end "chomps" the newline.  You won't -%]
481     [% # see this "chomping" in your browser because HTML ignores blank lines, but  -%]
482     [% # it WILL eliminate a blank line if you view the HTML source.  It's purely   -%]
483     [%- # optional, but both the beginning and the ending TT tags support chomping. -%]
484     
485     [% # Provide a title -%]
486     [% META title = 'Book List' -%]
487     
488     <table>
489     <tr><th>Title</th><th>Rating</th><th>Author(s)</th></tr>
490     [% # Display each book in a table row %]
491     [% FOREACH book IN books -%]
492       <tr>
493         <td>[% book.title %]</td>
494         <td>[% book.rating %]</td>
495       </tr>
496     [% END -%]
497     </table>
498
499 As indicated by the inline comments above, the C<META title> line uses
500 TT's META feature to provide a title to the "wrapper" that we will
501 create later. Meanwhile, the C<FOREACH> loop iterates through each
502 C<book> model object and prints the C<title> and C<rating> fields.
503
504 If you are new to TT, the C<[%> and C<%]> tags are used to delimit TT
505 code.  TT supports a wide variety of directives for "calling" other
506 files, looping, conditional logic, etc.  In general, TT simplifies the
507 usual range of Perl operators down to the single dot (C<.>) operator.
508 This applies to operations as diverse as method calls, hash lookups, and
509 list index values (see
510 L<http://search.cpan.org/perldoc?Template::Manual::Variables>
511 for details and examples).  In addition to the usual C<Template> module
512 Pod documentation, you can access the TT manual at
513 L<http://search.cpan.org/perldoc?Template::Manual>.
514
515 B<TIP:> While you can build all sorts of complex logic into your TT
516 templates, you should in general keep the "code" part of your templates
517 as simple as possible.  If you need more complex logic, create helper
518 methods in your model that abstract out a set of code into a single call
519 from your TT template.  (Note that the same is true of your controller
520 logic as well -- complex sections of code in your controllers should
521 often be pulled out and placed into your model objects.)
522
523
524 =head2 Test Run The Application
525
526 To test your work so far, first start the development server:
527
528     $ script/myapp_server.pl
529
530 Then point your browser to L<http://localhost:3000> and you should
531 still get the Catalyst welcome page.  Next, change the URL in your
532 browser to L<http://localhost:3000/books/list>.  If you have
533 everything working so far, you should see a web page that displays
534 nothing other than our column headers for "Title", "Rating", and
535 "Author(s)" -- we will not see any books until we get the database and
536 model working below.
537
538 If you run into problems getting your application to run correctly, it
539 might be helpful to refer to some of the debugging techniques covered in
540 the L<Debugging|Catalyst::Manual::Tutorial::Debugging> part of the
541 tutorial.
542
543
544 =head1 CREATE A SQLITE DATABASE
545
546 In this step, we make a text file with the required SQL commands to
547 create a database table and load some sample data.  We will use SQLite,
548 a popular database that is lightweight and easy to use.  Open
549 C<myapp01.sql> in your editor and enter:
550
551     --
552     -- Create a very simple database to hold book and author information
553     --
554     CREATE TABLE books (
555             id          INTEGER PRIMARY KEY,
556             title       TEXT ,
557             rating      INTEGER
558     );
559     -- 'book_authors' is a many-to-many join table between books & authors
560     CREATE TABLE book_authors (
561             book_id     INTEGER,
562             author_id   INTEGER,
563             PRIMARY KEY (book_id, author_id)
564     );
565     CREATE TABLE authors (
566             id          INTEGER PRIMARY KEY,
567             first_name  TEXT,
568             last_name   TEXT
569     );
570     ---
571     --- Load some sample data
572     ---
573     INSERT INTO books VALUES (1, 'CCSP SNRS Exam Certification Guide', 5);
574     INSERT INTO books VALUES (2, 'TCP/IP Illustrated, Volume 1', 5);
575     INSERT INTO books VALUES (3, 'Internetworking with TCP/IP Vol.1', 4);
576     INSERT INTO books VALUES (4, 'Perl Cookbook', 5);
577     INSERT INTO books VALUES (5, 'Designing with Web Standards', 5);
578     INSERT INTO authors VALUES (1, 'Greg', 'Bastien');
579     INSERT INTO authors VALUES (2, 'Sara', 'Nasseh');
580     INSERT INTO authors VALUES (3, 'Christian', 'Degu');
581     INSERT INTO authors VALUES (4, 'Richard', 'Stevens');
582     INSERT INTO authors VALUES (5, 'Douglas', 'Comer');
583     INSERT INTO authors VALUES (6, 'Tom', 'Christiansen');
584     INSERT INTO authors VALUES (7, 'Nathan', 'Torkington');
585     INSERT INTO authors VALUES (8, 'Jeffrey', 'Zeldman');
586     INSERT INTO book_authors VALUES (1, 1);
587     INSERT INTO book_authors VALUES (1, 2);
588     INSERT INTO book_authors VALUES (1, 3);
589     INSERT INTO book_authors VALUES (2, 4);
590     INSERT INTO book_authors VALUES (3, 5);
591     INSERT INTO book_authors VALUES (4, 6);
592     INSERT INTO book_authors VALUES (4, 7);
593     INSERT INTO book_authors VALUES (5, 8);
594
595 Then use the following command to build a C<myapp.db> SQLite database:
596
597     $ sqlite3 myapp.db < myapp01.sql
598
599 If you need to create the database more than once, you probably want to
600 issue the C<rm myapp.db> command to delete the database before you use
601 the C<sqlite3 myapp.db E<lt> myapp01.sql> command.
602
603 Once the C<myapp.db> database file has been created and initialized, you
604 can use the SQLite command line environment to do a quick dump of the
605 database contents:
606
607     $ sqlite3 myapp.db
608     SQLite version 3.5.9
609     Enter ".help" for instructions
610     sqlite> select * from books;
611     1|CCSP SNRS Exam Certification Guide|5
612     2|TCP/IP Illustrated, Volume 1|5
613     3|Internetworking with TCP/IP Vol.1|4
614     4|Perl Cookbook|5
615     5|Designing with Web Standards|5
616     sqlite> .q
617     $
618
619 Or:
620
621     $ sqlite3 myapp.db "select * from books"
622     1|CCSP SNRS Exam Certification Guide|5
623     2|TCP/IP Illustrated, Volume 1|5
624     3|Internetworking with TCP/IP Vol.1|4
625     4|Perl Cookbook|5
626     5|Designing with Web Standards|5
627
628 As with most other SQL tools, if you are using the full "interactive"
629 environment you need to terminate your SQL commands with a ";" (it's not
630 required if you do a single SQL statement on the command line).  Use
631 ".q" to exit from SQLite from the SQLite interactive mode and return to
632 your OS command prompt.
633
634 For using other databases, such as PostgreSQL or MySQL, see 
635 L<Appendix 2|Catalyst::Manual::Tutorial::Appendices>.
636
637
638 =head1 DATABASE ACCESS WITH C<DBIx::Class>
639
640 Catalyst can be used with virtually any form of persistent datastore 
641 available via Perl.  For example, 
642 L<Catalyst::Model::DBI|Catalyst::Model::DBI> can be used to easily 
643 access databases through the traditional Perl C<DBI> interface. However, 
644 most Catalyst applications use some form of ORM technology to 
645 automatically create and save model objects as they are used.  Although 
646 L<Class::DBI|Class::DBI> has been a popular choice in the past, Matt 
647 Trout's L<DBIx::Class|DBIx::Class> (abbreviated as "DBIC") has rapidly 
648 emerged as the Perl-based ORM technology of choice. Most new Catalyst 
649 applications rely on DBIC, as will this tutorial.
650
651
652 =head2 Create a Dynamic DBIC Model
653
654 Use the C<create=dynamic> model helper option to build a model that
655 dynamically reads your database structure every time the application
656 starts:
657
658     $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
659         create=dynamic dbi:SQLite:myapp.db
660      exists "/home/me/MyApp/script/../lib/MyApp/Model"
661      exists "/home/me/MyApp/script/../t"
662      exists "/home/me/MyApp/script/../lib/MyApp"
663     created "/home/me/MyApp/script/../lib/MyApp/Schema.pm"
664     created "/home/me/MyApp/script/../lib/MyApp/Model/DB.pm"
665     created "/home/me/MyApp/script/../t/model_DB.t"
666
667
668 The C<script/myapp_create.pl> command breaks down like this:
669
670 =over 4
671
672 =item *
673
674 C<DB> is the name of the model class to be created by the helper in 
675 C<lib/MyApp/Model>.
676
677 =item *
678
679 C<DBIC::Schema> is the type of the model to create.
680
681 =item *
682
683 C<MyApp::Schema> is the name of the DBIC schema file written to
684 C<lib/MyApp/Schema.pm>.
685
686 =item *
687
688 Because we specified C<create=dynamic> to the helper, it use 
689 L<DBIx::Class::Schema::Loader|DBIx::Class::Schema::Loader> to 
690 dynamically load the schema information from the database every time 
691 the application starts.
692
693 =item *
694
695 And finally, C<dbi:SQLite:myapp.db> is the standard DBI connect string 
696 for use with SQLite.
697
698 =back
699
700 B<NOTE:> Although the C<create=dynamic> option to the DBIC helper
701 makes for a nifty demonstration, is only really suitable for very
702 small applications. After this demonstration, you should almost always
703 use the C<create=static> option that we switch to below.
704
705
706 =head1 ENABLE THE MODEL IN THE CONTROLLER
707
708 Open C<lib/MyApp/Controller/Books.pm> and un-comment the model code we 
709 left disabled earlier so that your version matches the following (un-
710 comment the line containing C<[$c-E<gt>model('DB::Books')-E<gt>all]> 
711 and delete the next 2 lines):
712
713     =head2 list
714     
715     Fetch all book objects and pass to books/list.tt2 in stash to be displayed
716     
717     =cut
718     
719     sub list : Local {
720         # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
721         # 'Context' that's used to 'glue together' the various components
722         # that make up the application
723         my ($self, $c) = @_;
724     
725         # Retrieve all of the book records as book model objects and store in the
726         # stash where they can be accessed by the TT template
727         $c->stash->{books} = [$c->model('DB::Books')->all];
728     
729         # Set the TT template to use.  You will almost always want to do this
730         # in your action methods (action methods respond to user input in
731         # your controllers).
732         $c->stash->{template} = 'books/list.tt2';
733     }
734
735 B<TIP>: You may see the C<$c-E<gt>model('DB::Books')> un-commented 
736 above written as C<$c-E<gt>model('DB')-E<gt>resultset('Books')>.  The 
737 two are equivalent.  Either way, C<$c-E<gt>model> returns a 
738 L<DBIx::Class::ResultSet|DBIx::Class::ResultSet> which handles queries 
739 against the database and iterating over the set of results that are 
740 returned.
741
742 We are using the C<-E<gt>all> to fetch all of the books.  DBIC 
743 supports a wide variety of more advanced operations to easily do 
744 things like filtering and sorting the results.  For example, the 
745 following could be used to sort the results by descending title:
746
747     $c->model('DB::Books')->search({}, {order_by => 'title DESC'});
748
749 Some other examples are provided in 
750 L<DBIx::Class::Manual::Cookbook/Complex WHERE clauses>, with 
751 additional information found at L<DBIx::Class::ResultSet/search>, 
752 L<DBIx::Class::Manual::FAQ/Searching>, 
753 L<DBIx::Class::Manual::Intro|DBIx::Class::Manual::Intro> 
754 and L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema>.
755
756
757 =head2 Test Run The Application
758
759 First, let's enable an environment variable that causes DBIx::Class to 
760 dump the SQL statements used to access the database.  This is a 
761 helpful trick when you are trying to debug your database-oriented 
762 code:
763
764     $ export DBIC_TRACE=1
765
766 This assumes you are using BASH as your shell -- adjust accordingly if
767 you are using a different shell (for example, under tcsh, use
768 C<setenv DBIC_TRACE 1>).
769
770 B<NOTE:> You can also set this in your code using
771 C<$class-E<gt>storage-E<gt>debug(1);>.  See
772 L<DBIx::Class::Manual::Troubleshooting> for details (including options
773 to log to file instead of displaying to the Catalyst development server
774 log).
775
776 Then launch the Catalyst development server.  The log output should
777 display something like:
778
779     $ script/myapp_server.pl
780     [debug] Debug messages enabled
781     [debug] Statistics enabled
782     [debug] Loaded plugins:
783     .----------------------------------------------------------------------------.
784     | Catalyst::Plugin::ConfigLoader  0.20                                       |
785     | Catalyst::Plugin::StackTrace  0.08                                         |
786     | Catalyst::Plugin::Static::Simple  0.20                                     |
787     '----------------------------------------------------------------------------'
788     
789     [debug] Loaded dispatcher "Catalyst::Dispatcher"
790     [debug] Loaded engine "Catalyst::Engine::HTTP"
791     [debug] Found home "/home/me/MyApp"
792     [debug] Loaded Config "/home/me/MyApp/myapp.conf"
793     [debug] Loaded components:
794     .-----------------------------------------------------------------+----------.
795     | Class                                                           | Type     |
796     +-----------------------------------------------------------------+----------+
797     | MyApp::Controller::Books                                        | instance |
798     | MyApp::Controller::Root                                         | instance |
799     | MyApp::Model::DB                                                | instance |
800     | MyApp::Model::DB::Authors                                       | class    |
801     | MyApp::Model::DB::BookAuthors                                   | class    |
802     | MyApp::Model::DB::Books                                         | class    |
803     | MyApp::View::TT                                                 | instance |
804     '-----------------------------------------------------------------+----------'
805     
806     [debug] Loaded Private actions:
807     .----------------------+--------------------------------------+--------------.
808     | Private              | Class                                | Method       |
809     +----------------------+--------------------------------------+--------------+
810     | /default             | MyApp::Controller::Root              | default      |
811     | /end                 | MyApp::Controller::Root              | end          |
812     | /index               | MyApp::Controller::Root              | index        |
813     | /books/index         | MyApp::Controller::Books             | index        |
814     | /books/list          | MyApp::Controller::Books             | list         |
815     '----------------------+--------------------------------------+--------------'
816     
817     [debug] Loaded Path actions:
818     .-------------------------------------+--------------------------------------.
819     | Path                                | Private                              |
820     +-------------------------------------+--------------------------------------+
821     | /                                   | /default                             |
822     | /                                   | /index                               |
823     | /books                              | /books/index                         |
824     | /books/list                         | /books/list                          |
825     '-------------------------------------+--------------------------------------'
826     
827     [info] MyApp powered by Catalyst 5.71000
828     You can connect to your server at http://debian:3000
829
830 B<NOTE:> Be sure you run the C<script/myapp_server.pl> command from
831 the 'base' directory of your application, not inside the C<script>
832 directory itself or it will not be able to locate the C<myapp.db>
833 database file.  You can use a fully qualified or a relative path to
834 locate the database file, but we did not specify that when we ran the
835 model helper earlier.
836
837 Some things you should note in the output above:
838
839 =over 4
840
841 =item *
842
843 Catalyst::Model::DBIC::Schema dynamically created three model classes,
844 one to represent each of the three tables in our database
845 (C<MyApp::Model::DB::Authors>, C<MyApp::Model::DB::BookAuthors>,
846 and C<MyApp::Model::DB::Books>).
847
848 =item *
849
850 The "list" action in our Books controller showed up with a path of
851 C</books/list>.
852
853 =back
854
855 Point your browser to L<http://localhost:3000> and you should still get
856 the Catalyst welcome page.
857
858 Next, to view the book list, change the URL in your browser to
859 L<http://localhost:3000/books/list>. You should get a list of the five
860 books loaded by the C<myapp01.sql> script above without any formatting.
861 The rating for each book should appear on each row, but the "Author(s)"
862 column will still be blank (we will fill that in later).
863
864 Also notice in the output of the C<script/myapp_server.pl> that DBIC
865 used the following SQL to retrieve the data:
866
867     SELECT me.id, me.title, me.rating FROM books me
868
869 because we enabled DBIC_TRACE.
870
871 You now have the beginnings of a simple but workable web application.
872 Continue on to future sections and we will develop the application
873 more fully.
874
875
876 =head1 CREATE A WRAPPER FOR THE VIEW
877
878 When using TT, you can (and should) create a wrapper that will
879 literally wrap content around each of your templates.  This is
880 certainly useful as you have one main source for changing things that
881 will appear across your entire site/application instead of having to
882 edit many individual files.
883
884
885 =head2 Configure TT.pm For The Wrapper
886
887 In order to create a wrapper, you must first edit your TT view and
888 tell it where to find your wrapper file. Your TT view is located in
889 C<lib/MyApp/View/TT.pm>.
890
891 Edit C<lib/MyApp/View/TT.pm> and change it to match the following:
892
893     __PACKAGE__->config(
894         # Change default TT extension
895         TEMPLATE_EXTENSION => '.tt2',
896         # Set the location for TT files
897         INCLUDE_PATH => [
898                 MyApp->path_to( 'root', 'src' ),
899             ],
900         # Set to 1 for detailed timer stats in your HTML as comments
901         TIMER              => 0,
902         # This is your wrapper template located in the 'root/src'
903         WRAPPER => 'wrapper.tt2',
904     );
905
906
907 =head2 Create the Wrapper Template File and Stylesheet
908
909 Next you need to set up your wrapper template.  Basically, you'll want
910 to take the overall layout of your site and put it into this file.
911 For the tutorial, open C<root/src/wrapper.tt2> and input the following:
912
913     <?xml version="1.0" encoding="UTF-8"?>
914     <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
915     <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
916     <head>
917     <title>[% template.title or "My Catalyst App!" %]</title>
918     <link rel="stylesheet" href="[% c.uri_for('/static/css/main.css') %]" />
919     </head>
920     
921     <body>
922     <div id="outer">
923     <div id="header">
924         [%# Your logo could go here -%]
925         <img src="[% c.uri_for('/static/images/btn_88x31_powered.png') %]" />
926         [%# Insert the page title -%]
927         <h1>[% template.title or site.title %]</h1>
928     </div>
929     
930     <div id="bodyblock">
931     <div id="menu">
932         Navigation:
933         <ul>
934             <li><a href="[% c.uri_for('/books/list') %]">Home</a></li>
935             <li><a href="[% c.uri_for('/') %]" title="Catalyst Welcome Page">Welcome</a></li>
936         </ul>
937     </div><!-- end menu -->
938     
939     <div id="content">
940         [%# Status and error messages %]
941         <span class="message">[% status_msg %]</span>
942         <span class="error">[% error_msg %]</span>
943         [%# This is where TT will stick all of your template's contents. -%]
944         [% content %]
945     </div><!-- end content -->
946     </div><!-- end bodyblock -->
947     
948     <div id="footer">Copyright (c) your name goes here</div>
949     </div><!-- end outer -->
950     
951     </body>
952     </html>
953
954 Notice the status and error message sections in the code above:
955
956     <span class="status">[% status_msg %]</span>
957     <span class="error">[% error_msg %]</span>
958
959 If we set either message in the Catalyst stash (e.g.,
960 C<$c-E<gt>stash-E<gt>{status_msg} = 'Request was successful!'>) it
961 will be displayed whenever any view used by that request is rendered.
962 The C<message> and C<error> CSS styles can be customized to suit your
963 needs in the C<root/static/css/main.css> file we create below.
964
965 B<Notes:> 
966
967 =over 4
968
969 =item *
970
971 The Catalyst stash only lasts for a single HTTP request.  If
972 you need to retain information across requests you can use
973 L<Catalyst::Plugin::Session|Catalyst::Plugin::Session> (we will use
974 Catalyst sessions in the Authentication chapter of the tutorial).
975
976 =item *
977
978 Although it is beyond the scope of this tutorial, you may wish to use
979 a JavaScript or AJAX tool such as jQuery (L<http://www.jquery.com>) or
980 Dojo (L<http://www.dojotoolkit.org>).
981
982 =back
983
984
985 =head3 Create A Basic Stylesheet
986
987 First create a central location for stylesheets under the static
988 directory:
989
990     $ mkdir root/static/css
991
992 Then open the file C<root/static/css/main.css> (the file referenced in
993 the stylesheet href link of our wrapper above) and add the following
994 content:
995
996     #header {
997         text-align: center;
998     }
999     #header h1 {
1000         margin: 0;
1001     }
1002     #header img {
1003         float: right;
1004     }
1005     #footer {
1006         text-align: center;
1007         font-style: italic;
1008         padding-top: 20px;
1009     }
1010     #menu {
1011         font-weight: bold;
1012         background-color: #ddd;
1013     }
1014     #menu ul {
1015         list-style: none;
1016         float: left;
1017         margin: 0;
1018         padding: 0 0 50% 5px;
1019         font-weight: normal;
1020         background-color: #ddd;
1021         width: 100px;
1022     }
1023     #content {
1024         margin-left: 120px;
1025     }
1026     .message {
1027         color: #390;
1028     }
1029     .error {
1030         color: #f00;
1031     }
1032
1033 You may wish to check out a "CSS Framework" like Emastic
1034 (L<http://code.google.com/p/emastic/>) as a way to quickly
1035 provide lots of high-quality CSS functionality.
1036
1037
1038 =head2 Test Run The Application
1039
1040 Restart the development server and hit "Reload" in your web browser
1041 and you should now see a formatted version of our basic book list.
1042 Although our wrapper and stylesheet are obviously very simple, you
1043 should see how it allows us to control the overall look of an entire
1044 website from two central files.  To add new pages to the site, just
1045 provide a template that fills in the C<content> section of our wrapper
1046 template -- the wrapper will provide the overall feel of the page.
1047
1048
1049 =head1 A STATIC DATABASE MODEL WITH C<DBIx::Class>
1050
1051 First, let's be sure we have a recent versino of the DBIC helper,
1052 L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema>, by
1053 running this command:
1054
1055     $ perl -MCatalyst::Model::DBIC::Schema -e \
1056         'print "$Catalyst::Model::DBIC::Schema::VERSION\n"'
1057     0.23
1058
1059 If you don't have version 0.23 or higher, please run this command
1060 to install it directly from CPAN:
1061
1062     $ sudo cpan Catalyst::Model::DBIC::Schema
1063
1064 And re-run the version print command to verify that you are now at 
1065 0.23 or higher.
1066
1067
1068 =head2 Create Static DBIC Schema Files
1069
1070 Unlike the previous DBIC section where we had C<create=dynamic>
1071 automatically discover the structure of the database every time the
1072 application started, here we will use static schema files for more
1073 control.  This is typical of most "real world" applications.
1074
1075 One option would be to manually create a separate schema file for each 
1076 table in the database, however, lets use the same 
1077 L<DBIx::Class::Schema::Loader|DBIx::Class::Schema::Loader> used 
1078 earlier with C<create=dynamic> to build the static files for us. 
1079 First, lets remove the schema file created earlier:
1080
1081     $ rm lib/MyApp/Schema.pm
1082
1083 Now regenerate the schema using the C<create=static> option:
1084
1085     $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
1086         create=static components=TimeStamp dbi:SQLite:myapp.db
1087      exists "/home/me/MyApp/script/../lib/MyApp/Model"
1088      exists "/home/me/MyApp/script/../t"
1089     Dumping manual schema for MyApp::Schema to directory /home/me/MyApp/script/../lib ...
1090     Schema dump completed.
1091      exists "/home/me/MyApp/script/../lib/MyApp/Model/DB.pm"
1092
1093 We could have also deleted C<lib/MyApp/Model/DB.pm>, but it would
1094 have regenerated the same file (note the C<exists> in the output above).
1095 If you take a look at C<lib/MyApp/Model/DB.pm>, it simply contains
1096 a reference to the actual schema file in C<lib/MyApp/Schema.pm>
1097 along with the database connect string.
1098
1099 If you look in the C<lib/MyApp/Schema.pm> file, you will find that it 
1100 is no longer using 
1101 L<DBIx::Class::Schema::Loader|DBIx::Class::Schema::Loader> as its base 
1102 class (L<DBIx::Class::Schema::Loader|DBIx::Class::Schema::Loader> is 
1103 only being used by the helper to load the schema once and then create 
1104 the static files for us) and C<Schema.pm> only contains a call to the 
1105 C<load_namespaces> method.  You will also find that C<lib/MyApp> 
1106 contains a C<Schema> subdirectory, which then has a subdirectory 
1107 called "Result".  This "Result" subdirectory then has files named 
1108 according to each of the tables in our simple database (C<Authors.pm>, 
1109 C<BookAuthors.pm>, and C<Books.pm>).  These three files are called 
1110 "Result Classes" in DBIC nomenclature. Although the Result Class files 
1111 are named after tables in our database, the classes correspond to the 
1112 I<row-level data> that is returned by DBIC (more on this later, 
1113 especially in 
1114 L<Catalyst::Manual::Tutorial::BasicCRUD/EXPLORING THE POWER OF DBIC>.
1115
1116 The idea with the Result Source files created under 
1117 C<lib/MyApp/Schema/Result> by the C<create=static> option is to only 
1118 edit the files below the C<# DO NOT MODIFY THIS OR ANYTHING ABOVE!> 
1119 warning. If you place all of your changes below that point in the 
1120 file, you can regenerate the automatically created information at the 
1121 top of each file should your database structure get updated.
1122
1123 Also note the "flow" of the model information across the various files 
1124 and directories.  Catalyst will initially load the model from 
1125 C<lib/MyApp/Model/DB.pm>.  This file contains a reference to 
1126 C<lib/MyApp/Schema.pm>, so that file is loaded next.  Finally, the 
1127 call to C<load_namespaces> in C<Schema.pm> will load each of the 
1128 "Result Class" files from the C<lib/MyApp/Schema/Result> subdirectory. 
1129 The final outcome is that Catalyst will dynamically create three 
1130 table-specific Catalyst models every time the application starts (you 
1131 can see these three model files listed in the debug output generated 
1132 when you launch the application).
1133
1134 B<NOTE:> Older versions of 
1135 L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema> use the 
1136 deprecated DBIC C<load_classes> technique instead of the newer 
1137 C<load_namspaces>.  For new applications, please try to use 
1138 C<load_namespaces> since it more easily supports a very useful DBIC 
1139 technique called "ResultSet Classes."  If you need to convert an 
1140 existing application from "load_classes" to "load_namespaces," you can 
1141 use this process to automate the migration (but first make sure you 
1142 have v0.23 C<Catalyst::Model::DBIC::Schema> as discussed above):
1143
1144     $ # First delete the existing schema file to disable "compatibility" mode
1145     $ rm lib/MyApp/Schema.pm
1146     $
1147     $ # Then re-run the helper to build the files for "load_namespaces"
1148     $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
1149         create=static components=TimeStamp dbi:SQLite:myapp.db
1150     $
1151     $ # Now convert the existing files over
1152     $ cd lib/MyApp/Schema
1153     $ perl -MIO::All -e 'for (@ARGV) { my $s < io($_); $s =~ s/.*\n\# You can replace.*?\n//s;
1154           $s =~ s/'MyApp::Schema::/'MyApp::Schema::Result::/g; my $d < io("Result/$_");
1155           $d =~ s/1;\n?//; "$d$s" > io("Result/$_"); }' *.pm
1156     $ cd ../../..
1157     $
1158     $ # And finally delete the old files
1159     $ rm lib/MyApp/Schema/*.pm
1160
1161 The "C<perl -MIO::ALL ...>" script will copy all the customized 
1162 relationship (and other) information below "C<# DO NOT MODIFY>" line 
1163 from the old files in C<lib/MyApp/Schema> to the new files in 
1164 C<lib/MyApp/Schema/Result> (we will be starting to add some 
1165 "customized relationship information in the section below).
1166
1167
1168 =head2 Updating the Generated DBIC Result Class Files
1169
1170 Let's manually add some relationship information to the auto-generated 
1171 Result Class files. (Note: if you are using a database other than 
1172 SQLite, such as PostgreSQL, then the relationship could have been 
1173 automatically placed in the Result Class files.  If so, you can skip 
1174 this step.)  First edit C<lib/MyApp/Schema/Result/Books.pm> and add the 
1175 following text below the C<# You can replace this text...> comment:
1176
1177     #
1178     # Set relationships:
1179     #
1180     
1181     # has_many():
1182     #   args:
1183     #     1) Name of relationship, DBIC will create accessor with this name
1184     #     2) Name of the model class referenced by this relationship
1185     #     3) Column name in *foreign* table (aka, foreign key in peer table)
1186     __PACKAGE__->has_many(book_authors => 'MyApp::Schema::Result::BookAuthors', 'book_id');
1187     
1188     # many_to_many():
1189     #   args:
1190     #     1) Name of relationship, DBIC will create accessor with this name
1191     #     2) Name of has_many() relationship this many_to_many() is shortcut for
1192     #     3) Name of belongs_to() relationship in model class of has_many() above
1193     #   You must already have the has_many() defined to use a many_to_many().
1194     __PACKAGE__->many_to_many(authors => 'book_authors', 'author');
1195
1196
1197 B<Note:> Be careful to put this code I<above> the C<1;> at the end of the
1198 file.  As with any Perl package, we need to end the last line with
1199 a statement that evaluates to C<true>.  This is customarily done with
1200 C<1;> on a line by itself.
1201
1202 C<Important Note:> Although this tutorial uses plural names for both 
1203 the names of the SQL tables and therefore the Result Classes (after 
1204 all, C<Schema::Loader> automatically named the Result Classes from the 
1205 names of the SQL tables it found), DBIC users prefer singular names 
1206 for these items.  B<Please try to use singular table and DBIC 
1207 model/Result Class names in your applications.>  This tutorial will 
1208 migrate to singular names as soon as possible (patches welcomed). 
1209 B<Note that while singular is preferred for the DBIC model, plural is 
1210 perfectly acceptable for the names of the controller classes.>  After 
1211 all, the C<Books.pm> controller operates on multiple books.
1212
1213 This code defines both a C<has_many> and a C<many_to_many> relationship.
1214 The C<many_to_many> relationship is optional, but it makes it easier to
1215 map a book to its collection of authors.  Without it, we would have to
1216 "walk" though the C<book_authors> table as in 
1217 C<$book-E<gt>book_authors-E<gt>first-E<gt>author-E<gt>last_name> 
1218 (we will see examples on how to use DBIC objects in your code soon, 
1219 but note that because C<$book-E<gt>book_authors> can return multiple 
1220 authors, we have to use C<first> to display a single author). 
1221 C<many_to_many> allows us to use the shorter 
1222 C<$book-E<gt>authors-E<gt>first-E<gt>last_name>. 
1223 Note that you cannot define a C<many_to_many> relationship without 
1224 also having the C<has_many> relationship in place.
1225
1226 Then edit C<lib/MyApp/Schema/Result/Authors.pm> and add relationship
1227 information as follows (again, be careful to put in above the C<1;> but
1228 below the C<# DO NOT MODIFY THIS OR ANYTHING ABOVE!> comment):
1229
1230     #
1231     # Set relationships:
1232     #
1233     
1234     # has_many():
1235     #   args:
1236     #     1) Name of relationship, DBIC will create accessor with this name
1237     #     2) Name of the model class referenced by this relationship
1238     #     3) Column name in *foreign* table (aka, foreign key in peer table)
1239     __PACKAGE__->has_many(book_author => 'MyApp::Schema::Result::BookAuthors', 'author_id');
1240     
1241     # many_to_many():
1242     #   args:
1243     #     1) Name of relationship, DBIC will create accessor with this name
1244     #     2) Name of has_many() relationship this many_to_many() is shortcut for
1245     #     3) Name of belongs_to() relationship in model class of has_many() above
1246     #   You must already have the has_many() defined to use a many_to_many().
1247     __PACKAGE__->many_to_many(books => 'book_author', 'book');
1248
1249 Finally, do the same for the "join table,"
1250 C<lib/MyApp/Schema/Result/BookAuthors.pm>:
1251
1252     #
1253     # Set relationships:
1254     #
1255     
1256     # belongs_to():
1257     #   args:
1258     #     1) Name of relationship, DBIC will create accessor with this name
1259     #     2) Name of the model class referenced by this relationship
1260     #     3) Column name in *this* table
1261     __PACKAGE__->belongs_to(book => 'MyApp::Schema::Result::Books', 'book_id');
1262     
1263     # belongs_to():
1264     #   args:
1265     #     1) Name of relationship, DBIC will create accessor with this name
1266     #     2) Name of the model class referenced by this relationship
1267     #     3) Column name in *this* table
1268     __PACKAGE__->belongs_to(author => 'MyApp::Schema::Result::Authors', 'author_id');
1269
1270
1271 =head2 Run The Application
1272
1273 Run the Catalyst "demo server" script with the C<DBIC_TRACE> option
1274 (it might still be enabled from earlier in the tutorial, but here
1275 is an alternate way to specify the option just in case):
1276
1277     $ DBIC_TRACE=1 script/myapp_server.pl
1278
1279 Make sure that the application loads correctly and that you see the
1280 three dynamically created model class (one for each of the
1281 Result Classes we created).
1282
1283 Then hit the URL L<http://localhost:3000/books/list> with your browser 
1284 and be sure that the book list is displayed via the relationships 
1285 established above. You can leave the development server running for 
1286 the next step if you wish.
1287
1288 B<Note:> You will not see the authors yet because the view does not yet 
1289 use the new relations. Read on to the next section where we update the 
1290 template to do that.
1291
1292
1293 =head1 UPDATING THE VIEW
1294
1295 Let's add a new column to our book list page that takes advantage of 
1296 the relationship information we manually added to our schema files in 
1297 the previous section.  Edit C<root/src/books/list.tt2> add add the 
1298 following code below the existing table cell that contains 
1299 C<book.rating> (IOW, add a new table cell below the existing two 
1300 C<E<lt>tdE<gt>> tags but above the closing C<E<lt>/trE<gt>> and 
1301 C<E<lt>/tableE<gt>> tags):
1302
1303     ...
1304     <td>
1305       [% # First initialize a TT variable to hold a list.  Then use a TT FOREACH -%]
1306       [% # loop in 'side effect notation' to load just the last names of the     -%]
1307       [% # authors into the list. Note that the 'push' TT vmethod does not print -%]
1308       [% # a value, so nothing will be printed here.  But, if you have something -%]
1309       [% # in TT that does return a method and you don't want it printed, you    -%]
1310       [% # can: 1) assign it to a bogus value, or 2) use the CALL keyword to     -%]
1311       [% # call it and discard the return value.                                 -%]
1312       [% tt_authors = [ ];
1313          tt_authors.push(author.last_name) FOREACH author = book.authors %]
1314       [% # Now use a TT 'virtual method' to display the author count in parens   -%]
1315       [% # Note the use of the TT filter "| html" to escape dangerous characters -%]
1316       ([% tt_authors.size | html %])
1317       [% # Use another TT vmethod to join & print the names & comma separators   -%]
1318       [% tt_authors.join(', ') | html %]
1319     </td>
1320     ...
1321
1322 Then hit "Reload" in your browser (note that you don't need to reload 
1323 the development server or use the C<-r> option when updating TT 
1324 templates) and you should now see the number of authors each book has 
1325 along with a comma-separated list of the authors' last names.  (If you 
1326 didn't leave the development server running from the previous step, 
1327 you will obviously need to start it before you can refresh your 
1328 browser window.)
1329
1330 If you are still running the development server with C<DBIC_TRACE>
1331 enabled, you should also now see five more C<SELECT> statements in the
1332 debug output (one for each book as the authors are being retrieved by
1333 DBIC):
1334
1335     SELECT me.id, me.title, me.rating FROM books me:
1336     SELECT author.id, author.first_name, author.last_name FROM book_authors me  
1337     JOIN authors author ON ( author.id = me.author_id ) WHERE ( me.book_id = ? ): '1'
1338     SELECT author.id, author.first_name, author.last_name FROM book_authors me  
1339     JOIN authors author ON ( author.id = me.author_id ) WHERE ( me.book_id = ? ): '2'
1340     SELECT author.id, author.first_name, author.last_name FROM book_authors me  
1341     JOIN authors author ON ( author.id = me.author_id ) WHERE ( me.book_id = ? ): '3'
1342     SELECT author.id, author.first_name, author.last_name FROM book_authors me  
1343     JOIN authors author ON ( author.id = me.author_id ) WHERE ( me.book_id = ? ): '4'
1344     SELECT author.id, author.first_name, author.last_name FROM book_authors me  
1345     JOIN authors author ON ( author.id = me.author_id ) WHERE ( me.book_id = ? ): '5'
1346
1347 Also note in C<root/src/books/list.tt2> that we are using "| html", a 
1348 type of TT filter, to escape characters such as E<lt> and E<gt> to &lt; 
1349 and &gt; and avoid various types of dangerous hacks against your 
1350 application.  In a real application, you would probably want to put 
1351 "| html" at the end of every field where a user has control over the 
1352 information that can appear in that field (and can therefore inject 
1353 markup or code if you don't "neutralize" those fields).  In addition to 
1354 "| html", Template Toolkit has a variety of other useful filters that 
1355 can found in the documentation for 
1356 L<Template::Filters|Template::Filters>.
1357
1358
1359 =head1 RUNNING THE APPLICATION FROM THE COMMAND LINE
1360
1361 In some situations, it can be useful to run your application and
1362 display a page without using a browser.  Catalyst lets you do this
1363 using the C<scripts/myapp_test.pl> script.  Just supply the URL you
1364 wish to display and it will run that request through the normal
1365 controller dispatch logic and use the appropriate view to render the
1366 output (obviously, complex pages may dump a lot of text to your
1367 terminal window).  For example, if you type:
1368
1369     $ script/myapp_test.pl "/books/list"
1370
1371 You should get the same text as if you visited
1372 L<http://localhost:3000/books/list> with the normal development server
1373 and asked your browser to view the page source.
1374
1375
1376 =head1 OPTIONAL INFORMATION
1377
1378 B<NOTE: The rest of this chapter of the tutorial is optional.  You can
1379 skip to Chapter 4, L<Basic CRUD|Catalyst::Manual::Tutorial::BasicCRUD>,
1380 if you wish.>
1381
1382
1383 =head2 Using C<RenderView> for the Default View
1384
1385 Once your controller logic has processed the request from a user, it
1386 forwards processing to your view in order to generate the appropriate
1387 response output.  Catalyst uses
1388 L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> by
1389 default to automatically performs this operation.  If you look in
1390 C<lib/MyApp/Controller/Root.pm>, you should see the empty
1391 definition for the C<sub end> method:
1392
1393     sub end : ActionClass('RenderView') {}
1394
1395 The following bullet points provide a quick overview of the
1396 C<RenderView> process:
1397
1398 =over 4
1399
1400 =item *
1401
1402 C<Root.pm> is designed to hold application-wide logic.
1403
1404 =item *
1405
1406 At the end of a given user request, Catalyst will call the most specific
1407 C<end> method that's appropriate.  For example, if the controller for a
1408 request has an C<end> method defined, it will be called.  However, if
1409 the controller does not define a controller-specific C<end> method, the
1410 "global" C<end> method in C<Root.pm> will be called.
1411
1412 =item *
1413
1414 Because the definition includes an C<ActionClass> attribute, the
1415 L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> logic
1416 will be executed B<after> any code inside the definition of C<sub end>
1417 is run.  See L<Catalyst::Manual::Actions|Catalyst::Manual::Actions>
1418 for more information on C<ActionClass>.
1419
1420 =item *
1421
1422 Because C<sub end> is empty, this effectively just runs the default
1423 logic in C<RenderView>.  However, you can easily extend the
1424 C<RenderView> logic by adding your own code inside the empty method body
1425 (C<{}>) created by the Catalyst Helpers when we first ran the
1426 C<catalyst.pl> to initialize our application.  See
1427 L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> for more
1428 detailed information on how to extended C<RenderView> in C<sub end>.
1429
1430 =back
1431
1432
1433 =head2 Using The Default Template Name
1434
1435 By default, C<Catalyst::View::TT> will look for a template that uses the
1436 same name as your controller action, allowing you to save the step of
1437 manually specifying the template name in each action.  For example, this
1438 would allow us to remove the
1439 C<$c-E<gt>stash-E<gt>{template} = 'books/list.tt2';> line of our
1440 C<list> action in the Books controller.  Open
1441 C<lib/MyApp/Controller/Books.pm> in your editor and comment out this line
1442 to match the following (only the C<$c-E<gt>stash-E<gt>{template}> line
1443 has changed):
1444
1445     =head2 list
1446     
1447     Fetch all book objects and pass to books/list.tt2 in stash to be displayed
1448     
1449     =cut
1450     
1451     sub list : Local {
1452         # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
1453         # 'Context' that's used to 'glue together' the various components
1454         # that make up the application
1455         my ($self, $c) = @_;
1456     
1457         # Retrieve all of the book records as book model objects and store in the
1458         # stash where they can be accessed by the TT template
1459         $c->stash->{books} = [$c->model('DB::Books')->all];
1460     
1461         # Set the TT template to use.  You will almost always want to do this
1462         # in your action methods (actions methods respond to user input in
1463         # your controllers).
1464         #$c->stash->{template} = 'books/list.tt2';
1465     }
1466
1467
1468 You should now be able to restart the development server as per the
1469 previous section and access the L<http://localhost:3000/books/list>
1470 as before.
1471
1472 B<NOTE:> Please note that if you use the default template technique,
1473 you will B<not> be able to use either the C<$c-E<gt>forward> or
1474 the C<$c-E<gt>detach> mechanisms (these are discussed in Chapter 2 and
1475 Chapter 9 of the Tutorial).
1476
1477
1478 =head2 Return To A Manually-Specified Template
1479
1480 In order to be able to use C<$c-E<gt>forward> and C<$c-E<gt>detach>
1481 later in the tutorial, you should remove the comment from the
1482 statement in C<sub list> in C<lib/MyApp/Controller/Books.pm>:
1483
1484     $c->stash->{template} = 'books/list.tt2';
1485
1486 Then delete the C<TEMPLATE_EXTENSION> line in
1487 C<lib/MyApp/View/TT.pm>.
1488
1489 You should then be able to restart the development server and
1490 access L<http://localhost:3000/books/list> in the same manner as
1491 with earlier sections.
1492
1493
1494 =head1 AUTHOR
1495
1496 Kennedy Clark, C<hkclark@gmail.com>
1497
1498 Please report any errors, issues or suggestions to the author.  The
1499 most recent version of the Catalyst Tutorial can be found at
1500 L<http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/>.
1501
1502 Copyright 2006-2008, Kennedy Clark, under Creative Commons License
1503 (L<http://creativecommons.org/licenses/by-sa/3.0/us/>).