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