various formatting cleanups
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / 04_BasicCRUD.pod
1 =head1 NAME
2
3 Catalyst::Manual::Tutorial::04_BasicCRUD - Catalyst Tutorial - Chapter 4: Basic CRUD
4
5
6 =head1 OVERVIEW
7
8 This is B<Chapter 4 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::01_Intro>
17
18 =item 2
19
20 L<Catalyst Basics|Catalyst::Manual::Tutorial::02_CatalystBasics>
21
22 =item 3
23
24 L<More Catalyst Basics|Catalyst::Manual::Tutorial::03_MoreCatalystBasics>
25
26 =item 4
27
28 B<04_Basic CRUD>
29
30 =item 5
31
32 L<Authentication|Catalyst::Manual::Tutorial::05_Authentication>
33
34 =item 6
35
36 L<Authorization|Catalyst::Manual::Tutorial::06_Authorization>
37
38 =item 7
39
40 L<Debugging|Catalyst::Manual::Tutorial::07_Debugging>
41
42 =item 8
43
44 L<Testing|Catalyst::Manual::Tutorial::08_Testing>
45
46 =item 9
47
48 L<Advanced CRUD|Catalyst::Manual::Tutorial::09_AdvancedCRUD>
49
50 =item 10
51
52 L<Appendices|Catalyst::Manual::Tutorial::10_Appendices>
53
54 =back
55
56
57 =head1 DESCRIPTION
58
59 This chapter of the tutorial builds on the fairly primitive application
60 created in
61 L<Chapter 3|Catalyst::Manual::Tutorial::03_MoreCatalystBasics> to add
62 basic support for Create, Read, Update, and Delete (CRUD) of C<Book>
63 objects.  Note that the 'list' function in
64 L<Chapter 3|Catalyst::Manual::Tutorial::03_MoreCatalystBasics> already
65 implements the Read portion of CRUD (although Read normally refers to
66 reading a single object; you could implement full Read functionality
67 using the techniques introduced below).  This section will focus on the
68 Create and Delete aspects of CRUD.  More advanced capabilities,
69 including full Update functionality, will be addressed in
70 L<Chapter 9|Catalyst::Manual::Tutorial::09_AdvancedCRUD>.
71
72 Although this chapter of the tutorial will show you how to build CRUD
73 functionality yourself, another option is to use a "CRUD builder" type
74 of tool to automate the process.  You get less control, but it can be
75 quick and easy.  For example, see L<Catalyst::Plugin::AutoCRUD>,
76 L<CatalystX::CRUD>, and L<CatalystX::CRUD::YUI>.
77
78 Source code for the tutorial in included in the F</home/catalyst/Final>
79 directory of the Tutorial Virtual machine (one subdirectory per
80 chapter).  There are also instructions for downloading the code in
81 L<Catalyst::Manual::Tutorial::01_Intro>.
82
83
84 =head1 FORMLESS SUBMISSION
85
86 Our initial attempt at object creation will utilize the "URL arguments"
87 feature of Catalyst (we will employ the more common form-based
88 submission in the sections that follow).
89
90
91 =head2 Include a Create Action in the Books Controller
92
93 Edit F<lib/MyApp/Controller/Books.pm> and enter the following method:
94
95     =head2 url_create
96
97     Create a book with the supplied title, rating, and author
98
99     =cut
100
101     sub url_create :Local {
102         # In addition to self & context, get the title, rating, &
103         # author_id args from the URL.  Note that Catalyst automatically
104         # puts extra information after the "/<controller_name>/<action_name/"
105         # into @_.  The args are separated  by the '/' char on the URL.
106         my ($self, $c, $title, $rating, $author_id) = @_;
107
108         # Call create() on the book model object. Pass the table
109         # columns/field values we want to set as hash values
110         my $book = $c->model('DB::Book')->create({
111                 title  => $title,
112                 rating => $rating
113             });
114
115         # Add a record to the join table for this book, mapping to
116         # appropriate author
117         $book->add_to_book_authors({author_id => $author_id});
118         # Note: Above is a shortcut for this:
119         # $book->create_related('book_authors', {author_id => $author_id});
120
121         # Assign the Book object to the stash for display and set template
122         $c->stash(book     => $book,
123                   template => 'books/create_done.tt2');
124
125         # Disable caching for this page
126         $c->response->header('Cache-Control' => 'no-cache');
127     }
128
129 Notice that Catalyst takes "extra slash-separated information" from the
130 URL and passes it as arguments in C<@_> (as long as the number of
131 arguments is not "fixed" using an attribute like C<:Args(0)>).  The
132 C<url_create> action then uses a simple call to the DBIC C<create>
133 method to add the requested information to the database (with a separate
134 call to C<add_to_book_authors> to update the join table).  As do
135 virtually all controller methods (at least the ones that directly handle
136 user input), it then sets the template that should handle this request.
137
138 Also note that we are explicitly setting a C<no-cache> "Cache-Control"
139 header to force browsers using the page to get a fresh copy every time.
140 You could even move this to a C<auto> method in
141 F<lib/MyApp/Controller/Root.pm> and it would automatically get applied
142 to every page in the whole application via a single line of code
143 (remember from Chapter 3, that every C<auto> method gets run in the
144 Controller hierarchy).
145
146
147 =head2 Include a Template for the 'url_create' Action:
148
149 Edit F<root/src/books/create_done.tt2> and then enter:
150
151     [% # Use the TT Dumper plugin to Data::Dumper variables to the browser   -%]
152     [% # Not a good idea for production use, though. :-)  'Indent=1' is      -%]
153     [% # optional, but prevents "massive indenting" of deeply nested objects -%]
154     [% USE Dumper(Indent=1) -%]
155
156     [% # Set the page title.  META can 'go back' and set values in templates -%]
157     [% # that have been processed 'before' this template (here it's updating -%]
158     [% # the title in the root/src/wrapper.tt2 wrapper template).  Note that -%]
159     [% # META only works on simple/static strings (i.e. there is no variable -%]
160     [% # interpolation -- if you need dynamic/interpolated content in your   -%]
161     [% # title, set "$c->stash(title => $something)" in the controller).     -%]
162     [% META title = 'Book Created' %]
163
164     [% # Output information about the record that was added.  First title.   -%]
165     <p>Added book '[% book.title %]'
166
167     [% # Then, output the last name of the first author -%]
168     by '[% book.authors.first.last_name %]'
169
170     [% # Then, output the rating for the book that was added -%]
171     with a rating of [% book.rating %].</p>
172
173     [% # Provide a link back to the list page.  'c.uri_for' builds -%]
174     [% # a full URI; e.g., 'http://localhost:3000/books/list'      -%]
175     <p><a href="[% c.uri_for('/books/list') %]">Return to list</a></p>
176
177     [% # Try out the TT Dumper (for development only!) -%]
178     <pre>
179     Dump of the 'book' variable:
180     [% Dumper.dump(book) %]
181     </pre>
182
183 The TT C<USE> directive allows access to a variety of plugin modules (TT
184 plugins, that is, not Catalyst plugins) to add extra functionality to
185 the base TT capabilities.  Here, the plugin allows L<Data::Dumper>
186 "pretty printing" of objects and variables.  Other than that, the rest
187 of the code should be familiar from the examples in Chapter 3.
188
189
190 =head2 Try the 'url_create' Feature
191
192 Make sure the development server is running with the "-r" restart
193 option:
194
195     $ DBIC_TRACE=1 script/myapp_server.pl -r
196
197 Note that new path for C</books/url_create> appears in the startup debug
198 output.
199
200 Next, use your browser to enter the following URL:
201
202     http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
203
204 Your browser should display "Added book 'TCPIP_Illustrated_Vol-2' by
205 'Stevens' with a rating of 5." along with a dump of the new book model
206 object as it was returned by DBIC.  You should also see the following
207 DBIC debug messages displayed in the development server log messages if
208 you have DBIC_TRACE set:
209
210     INSERT INTO book (rating, title) VALUES (?, ?): `5', `TCPIP_Illustrated_Vol-2'
211     INSERT INTO book_author (author_id, book_id) VALUES (?, ?): `4', `6'
212
213 The C<INSERT> statements are obviously adding the book and linking it to
214 the existing record for Richard Stevens.  The C<SELECT> statement
215 results from DBIC automatically fetching the book for the
216 C<Dumper.dump(book)>.
217
218 If you then click the "Return to list" link, you should find that there
219 are now six books shown (if necessary, Shift+Reload or Ctrl+Reload your
220 browser at the C</books/list> page).  You should now see the six DBIC
221 debug messages similar to the following (where N=1-6):
222
223     SELECT author.id, author.first_name, author.last_name
224         FROM book_author me  JOIN author author
225         ON author.id = me.author_id WHERE ( me.book_id = ? ): 'N'
226
227
228 =head1 CONVERT TO A CHAINED ACTION
229
230 Although the example above uses the same C<Local> action type for the
231 method that we saw in the previous chapter of the tutorial, there is an
232 alternate approach that allows us to be more specific while also paving
233 the way for more advanced capabilities.  Change the method declaration
234 for C<url_create> in F<lib/MyApp/Controller/Books.pm> you entered above
235 to match the following:
236
237     sub url_create :Chained('/') :PathPart('books/url_create') :Args(3) {
238         # In addition to self & context, get the title, rating, &
239         # author_id args from the URL.  Note that Catalyst automatically
240         # puts the first 3 arguments worth of extra information after the
241         # "/<controller_name>/<action_name/" into @_ because we specified
242         # "Args(3)".  The args are separated  by the '/' char on the URL.
243         my ($self, $c, $title, $rating, $author_id) = @_;
244
245         ...
246
247 This converts the method to take advantage of the Chained
248 action/dispatch type. Chaining lets you have a single URL automatically
249 dispatch to several controller methods, each of which can have precise
250 control over the number of arguments that it will receive.  A chain can
251 essentially be thought of having three parts -- a beginning, a middle,
252 and an end.  The bullets below summarize the key points behind each of
253 these parts of a chain:
254
255
256 =over 4
257
258
259 =item *
260
261 Beginning
262
263 =over 4
264
265 =item *
266
267 B<Use "C<:Chained('/')>" to start a chain>
268
269 =item *
270
271 Get arguments through C<CaptureArgs()>
272
273 =item *
274
275 Specify the path to match with C<PathPart()>
276
277 =back
278
279
280 =item *
281
282 Middle
283
284 =over 4
285
286 =item *
287
288 Link to previous part of the chain with C<:Chained('_name_')>
289
290 =item *
291
292 Get arguments through C<CaptureArgs()>
293
294 =item *
295
296 Specify the path to match with C<PathPart()>
297
298 =back
299
300
301 =item *
302
303 End
304
305 =over 4
306
307 =item *
308
309 Link to previous part of the chain with C<:Chained('_name_')>
310
311 =item *
312
313 B<< Do NOT get arguments through "C<CaptureArgs()>," use "C<Args()>" instead to end a chain >>
314
315 =item *
316
317 Specify the path to match with C<PathPart()>
318
319 =back
320
321
322 =back
323
324 In our C<url_create> method above, we have combined all three parts into
325 a single method: C<:Chained('/')> to start the chain,
326 C<:PathPart('books/url_create')> to specify the base URL to match, and
327 C<:Args(3)> to capture exactly three arguments and to end the chain.
328
329 As we will see shortly, a chain can consist of as many "links" as you
330 wish, with each part capturing some arguments and doing some work along
331 the way.  We will continue to use the Chained action type in this
332 chapter of the tutorial and explore slightly more advanced capabilities
333 with the base method and delete feature below.  But Chained dispatch is
334 capable of far more.  For additional information, see
335 L<Catalyst::Manual::Intro/Action types>,
336 L<Catalyst::DispatchType::Chained>, and the 2006 Advent calendar entry
337 on the subject: L<http://www.catalystframework.org/calendar/2006/10>.
338
339
340 =head2 Try the Chained Action
341
342 If you look back at the development server startup logs from your
343 initial version of the C<url_create> method (the one using the C<:Local>
344 attribute), you will notice that it produced output similar to the
345 following:
346
347     [debug] Loaded Path actions:
348     .-------------------------------------+--------------------------------------.
349     | Path                                | Private                              |
350     +-------------------------------------+--------------------------------------+
351     | /                                   | /default                             |
352     | /                                   | /index                               |
353     | /books                              | /books/index                         |
354     | /books/list                         | /books/list                          |
355     | /books/url_create                   | /books/url_create                    |
356     '-------------------------------------+--------------------------------------'
357
358 When the development server restarts after our conversion to Chained
359 dispatch, the debug output should change to something along the lines of
360 the following:
361
362     [debug] Loaded Path actions:
363     .-------------------------------------+--------------------------------------.
364     | Path                                | Private                              |
365     +-------------------------------------+--------------------------------------+
366     | /                                   | /default                             |
367     | /                                   | /index                               |
368     | /books                              | /books/index                         |
369     | /books/list                         | /books/list                          |
370     '-------------------------------------+--------------------------------------'
371
372     [debug] Loaded Chained actions:
373     .-------------------------------------+--------------------------------------.
374     | Path Spec                           | Private                              |
375     +-------------------------------------+--------------------------------------+
376     | /books/url_create/*/*/*             | /books/url_create                    |
377     '-------------------------------------+--------------------------------------'
378
379 C<url_create> has disappeared from the "Loaded Path actions" section but
380 it now shows up under the newly created "Loaded Chained actions"
381 section.  And the "/*/*/*" portion clearly shows our requirement for
382 three arguments.
383
384 As with our non-chained version of C<url_create>, use your browser to
385 enter the following URL:
386
387     http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
388
389 You should see the same "Added book 'TCPIP_Illustrated_Vol-2' by
390 'Stevens' with a rating of 5." along with a dump of the new book model
391 object.  Click the "Return to list" link, and you should find that there
392 are now seven books shown (two copies of I<TCPIP_Illustrated_Vol-2>).
393
394
395 =head2 Refactor to Use a 'base' Method to Start the Chains
396
397 Let's make a quick update to our initial Chained action to show a little
398 more of the power of chaining.  First, open
399 F<lib/MyApp/Controller/Books.pm> in your editor and add the following
400 method:
401
402     =head2 base
403
404     Can place common logic to start chained dispatch here
405
406     =cut
407
408     sub base :Chained('/') :PathPart('books') :CaptureArgs(0) {
409         my ($self, $c) = @_;
410
411         # Store the ResultSet in stash so it's available for other methods
412         $c->stash(resultset => $c->model('DB::Book'));
413
414         # Print a message to the debug log
415         $c->log->debug('*** INSIDE BASE METHOD ***');
416     }
417
418 Here we print a log message and store the DBIC ResultSet in
419 C<< $c->stash->{resultset} >> so that it's automatically available
420 for other actions that chain off C<base>.  If your controller always
421 needs a book ID as its first argument, you could have the base method
422 capture that argument (with C<:CaptureArgs(1)>) and use it to pull the
423 book object with C<< ->find($id) >> and leave it in the stash for later
424 parts of your chains to then act upon. Because we have several actions
425 that don't need to retrieve a book (such as the C<url_create> we are
426 working with now), we will instead add that functionality to a common
427 C<object> action shortly.
428
429 As for C<url_create>, let's modify it to first dispatch to C<base>.
430 Open up F<lib/MyApp/Controller/Books.pm> and edit the declaration for
431 C<url_create> to match the following:
432
433     sub url_create :Chained('base') :PathPart('url_create') :Args(3) {
434
435 Once you save F<lib/MyApp/Controller/Books.pm>, notice that the
436 development server will restart and our "Loaded Chained actions" section
437 will changed slightly:
438
439     [debug] Loaded Chained actions:
440     .-------------------------------------+--------------------------------------.
441     | Path Spec                           | Private                              |
442     +-------------------------------------+--------------------------------------+
443     | /books/url_create/*/*/*             | /books/base (0)                      |
444     |                                     | => /books/url_create                 |
445     '-------------------------------------+--------------------------------------'
446
447 The "Path Spec" is the same, but now it maps to two Private actions as
448 we would expect.  The C<base> method is being triggered by the C</books>
449 part of the URL.  However, the processing then continues to the
450 C<url_create> method because this method "chained" off C<base> and
451 specified C<:PathPart('url_create')> (note that we could have omitted
452 the "PathPart" here because it matches the name of the method, but we
453 will include it to make the logic as explicit as possible).
454
455 Once again, enter the following URL into your browser:
456
457     http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
458
459 The same "Added book 'TCPIP_Illustrated_Vol-2' by 'Stevens' with a
460 rating of 5." message and a dump of the new book object should appear.
461 Also notice the extra "INSIDE BASE METHOD" debug message in the
462 development server output from the C<base> method.  Click the "Return to
463 list" link, and you should find that there are now eight books shown.
464 (You may have a larger number of books if you repeated any of the
465 "create" actions more than once.  Don't worry about it as long as the
466 number of books is appropriate for the number of times you added new
467 books... there should be the original five books added via
468 F<myapp01.sql> plus one additional book for each time you ran one of the
469 url_create variations above.)
470
471
472 =head1 MANUALLY BUILDING A CREATE FORM
473
474 Although the C<url_create> action in the previous step does begin to
475 reveal the power and flexibility of both Catalyst and DBIC, it's
476 obviously not a very realistic example of how users should be expected
477 to enter data.  This section begins to address that concern (but just
478 barely, see L<Chapter 9|Catalyst::Manual::Tutorial::09_AdvancedCRUD>
479 for better options for handling web-based forms).
480
481
482 =head2 Add Method to Display The Form
483
484 Edit F<lib/MyApp/Controller/Books.pm> and add the following method:
485
486     =head2 form_create
487
488     Display form to collect information for book to create
489
490     =cut
491
492     sub form_create :Chained('base') :PathPart('form_create') :Args(0) {
493         my ($self, $c) = @_;
494
495         # Set the TT template to use
496         $c->stash(template => 'books/form_create.tt2');
497     }
498
499 This action simply invokes a view containing a form to create a book.
500
501
502 =head2 Add a Template for the Form
503
504 Open F<root/src/books/form_create.tt2> in your editor and enter:
505
506     [% META title = 'Manual Form Book Create' -%]
507
508     <form method="post" action="[% c.uri_for('form_create_do') %]">
509     <table>
510         <tr><td>Title:</td><td><input type="text" name="title"></td></tr>
511         <tr><td>Rating:</td><td><input type="text" name="rating"></td></tr>
512         <tr><td>Author ID:</td><td><input type="text" name="author_id"></td></tr>
513     </table>
514     <input type="submit" name="Submit" value="Submit">
515     </form>
516
517 Note that we have specified the target of the form data as
518 C<form_create_do>, the method created in the section that follows.
519
520
521 =head2 Add a Method to Process Form Values and Update Database
522
523 Edit F<lib/MyApp/Controller/Books.pm> and add the following method to
524 save the form information to the database:
525
526     =head2 form_create_do
527
528     Take information from form and add to database
529
530     =cut
531
532     sub form_create_do :Chained('base') :PathPart('form_create_do') :Args(0) {
533         my ($self, $c) = @_;
534
535         # Retrieve the values from the form
536         my $title     = $c->request->params->{title}     || 'N/A';
537         my $rating    = $c->request->params->{rating}    || 'N/A';
538         my $author_id = $c->request->params->{author_id} || '1';
539
540         # Create the book
541         my $book = $c->model('DB::Book')->create({
542                 title   => $title,
543                 rating  => $rating,
544             });
545         # Handle relationship with author
546         $book->add_to_book_authors({author_id => $author_id});
547         # Note: Above is a shortcut for this:
548         # $book->create_related('book_authors', {author_id => $author_id});
549
550         # Store new model object in stash and set template
551         $c->stash(book     => $book,
552                   template => 'books/create_done.tt2');
553     }
554
555
556 =head2 Test Out The Form
557
558 Notice that the server startup log reflects the two new chained methods
559 that we added:
560
561     [debug] Loaded Chained actions:
562     .-------------------------------------+--------------------------------------.
563     | Path Spec                           | Private                              |
564     +-------------------------------------+--------------------------------------+
565     | /books/form_create                  | /books/base (0)                      |
566     |                                     | => /books/form_create                |
567     | /books/form_create_do               | /books/base (0)                      |
568     |                                     | => /books/form_create_do             |
569     | /books/url_create/*/*/*             | /books/base (0)                      |
570     |                                     | => /books/url_create                 |
571     '-------------------------------------+--------------------------------------'
572
573 Point your browser to L<http://localhost:3000/books/form_create> and
574 enter "TCP/IP Illustrated, Vol 3" for the title, a rating of 5, and an
575 author ID of 4.  You should then see the output of the same
576 F<create_done.tt2> template seen in earlier examples.  Finally, click
577 "Return to list" to view the full list of books.
578
579 B<Note:> Having the user enter the primary key ID for the author is
580 obviously crude; we will address this concern with a drop-down list and
581 add validation to our forms in
582 L<Chapter 9|Catalyst::Manual::Tutorial::09_AdvancedCRUD>.
583
584
585 =head1 A SIMPLE DELETE FEATURE
586
587 Turning our attention to the Delete portion of CRUD, this section
588 illustrates some basic techniques that can be used to remove information
589 from the database.
590
591
592 =head2 Include a Delete Link in the List
593
594 Edit F<root/src/books/list.tt2> and update it to match the following
595 (two sections have changed: 1) the additional '<th>Links</th>' table
596 header, and 2) the five lines for the Delete link near the bottom):
597
598     [% # This is a TT comment. -%]
599
600     [%- # Provide a title -%]
601     [% META title = 'Book List' -%]
602
603     [% # Note That the '-' at the beginning or end of TT code  -%]
604     [% # "chomps" the whitespace/newline at that end of the    -%]
605     [% # output (use View Source in browser to see the effect) -%]
606
607     [% # Some basic HTML with a loop to display books -%]
608     <table>
609     <tr><th>Title</th><th>Rating</th><th>Author(s)</th><th>Links</th></tr>
610     [% # Display each book in a table row %]
611     [% FOREACH book IN books -%]
612         <tr>
613             <td>[% book.title %]</td>
614             <td>[% book.rating %]</td>
615             <td>
616                 [% # NOTE: See Chapter 4 for a better way to do this!                      -%]
617                 [% # First initialize a TT variable to hold a list.  Then use a TT FOREACH -%]
618                 [% # loop in 'side effect notation' to load just the last names of the     -%]
619                 [% # authors into the list. Note that the 'push' TT vmethod doesn't return -%]
620                 [% # a value, so nothing will be printed here.  But, if you have something -%]
621                 [% # in TT that does return a value and you don't want it printed, you     -%]
622                 [% # 1) assign it to a bogus value, or                                     -%]
623                 [% # 2) use the CALL keyword to call it and discard the return value.      -%]
624                 [% tt_authors = [ ];
625                   tt_authors.push(author.last_name) FOREACH author = book.authors %]
626                 [% # Now use a TT 'virtual method' to display the author count in parens   -%]
627                 [% # Note the use of the TT filter "| html" to escape dangerous characters -%]
628                 ([% tt_authors.size | html %])
629                 [% # Use another TT vmethod to join & print the names & comma separators   -%]
630                 [% tt_authors.join(', ') | html %]
631             </td>
632             <td>
633                 [% # Add a link to delete a book %]
634                 <a href="[%
635                     c.uri_for(c.controller.action_for('delete'), [book.id]) %]">Delete</a>
636             </td>
637         </tr>
638     [% END -%]
639     </table>
640
641 The additional code is obviously designed to add a new column to the
642 right side of the table with a C<Delete> "button" (for simplicity, links
643 will be used instead of full HTML buttons; but, in practice, anything
644 that modifies data should be handled with a form sending a POST
645 request).
646
647 Also notice that we are using a more advanced form of C<uri_for> than we
648 have seen before.  Here we use C<< $c->controller->action_for >> to
649 automatically generate a URI appropriate for that action based on the
650 method we want to link to while inserting the C<book.id> value into the
651 appropriate place.  Now, if you ever change C<:PathPart('delete')> in
652 your controller method to something like C<:PathPart('kill')>, then your
653 links will automatically update without any changes to your .tt2
654 template file.  As long as the name of your method does not change
655 (here, "delete"), then your links will still be correct.  There are a
656 few shortcuts and options when using C<action_for()>:
657
658 =over 4
659
660 =item *
661
662 If you are referring to a method in the current controller, you can use
663 C<< $self->action_for('_method_name_') >>.
664
665 =item *
666
667 If you are referring to a method in a different controller, you need to
668 include that controller's name as an argument to C<controller()>, as in
669 C<< $c->controller('_controller_name_')->action_for('_method_name_') >>.
670
671 =back
672
673 B<Note:> In practice you should B<never> use a GET request to delete a
674 record -- always use POST for actions that will modify data.  We are
675 doing it here for illustrative and simplicity purposes only.
676
677
678 =head2 Add a Common Method to Retrieve a Book for the Chain
679
680 As mentioned earlier, since we have a mixture of actions that operate on
681 a single book ID and others that do not, we should not have C<base>
682 capture the book ID, find the corresponding book in the database and
683 save it in the stash for later links in the chain.  However, just
684 because that logic does not belong in C<base> doesn't mean that we can't
685 create another location to centralize the book lookup code.  In our
686 case, we will create a method called C<object> that will store the
687 specific book in the stash.  Chains that always operate on a single
688 existing book can chain off this method, but methods such as
689 C<url_create> that don't operate on an existing book can chain directly
690 off base.
691
692 To add the C<object> method, edit F<lib/MyApp/Controller/Books.pm> and
693 add the following code:
694
695     =head2 object
696
697     Fetch the specified book object based on the book ID and store
698     it in the stash
699
700     =cut
701
702     sub object :Chained('base') :PathPart('id') :CaptureArgs(1) {
703         # $id = primary key of book to delete
704         my ($self, $c, $id) = @_;
705
706         # Find the book object and store it in the stash
707         $c->stash(object => $c->stash->{resultset}->find($id));
708
709         # Make sure the lookup was successful.  You would probably
710         # want to do something like this in a real app:
711         #   $c->detach('/error_404') if !$c->stash->{object};
712         die "Book $id not found!" if !$c->stash->{object};
713
714         # Print a message to the debug log
715         $c->log->debug("*** INSIDE OBJECT METHOD for obj id=$id ***");
716     }
717
718 Now, any other method that chains off C<object> will automatically have
719 the appropriate book waiting for it in C<< $c->stash->{object} >>.
720
721
722 =head2 Add a Delete Action to the Controller
723
724 Open F<lib/MyApp/Controller/Books.pm> in your editor and add the
725 following method:
726
727     =head2 delete
728
729     Delete a book
730
731     =cut
732
733     sub delete :Chained('object') :PathPart('delete') :Args(0) {
734         my ($self, $c) = @_;
735
736         # Use the book object saved by 'object' and delete it along
737         # with related 'book_author' entries
738         $c->stash->{object}->delete;
739
740         # Set a status message to be displayed at the top of the view
741         $c->stash->{status_msg} = "Book deleted.";
742
743         # Forward to the list action/method in this controller
744         $c->forward('list');
745     }
746
747 This method first deletes the book object saved by the C<object> method.
748 However, it also removes the corresponding entry from the C<book_author>
749 table with a cascading delete.
750
751 Then, rather than forwarding to a "delete done" page as we did with the
752 earlier create example, it simply sets the C<status_msg> to display a
753 notification to the user as the normal list view is rendered.
754
755 The C<delete> action uses the context C<forward> method to return the
756 user to the book list.  The C<detach> method could have also been used.
757 Whereas C<forward> I<returns> to the original action once it is
758 completed, C<detach> does I<not> return.  Other than that, the two are
759 equivalent.
760
761
762 =head2 Try the Delete Feature
763
764 Once you save the Books controller, the server should automatically
765 restart.  The C<delete> method should now appear in the "Loaded Chained
766 actions" section of the startup debug output:
767
768     [debug] Loaded Chained actions:
769     .-------------------------------------+--------------------------------------.
770     | Path Spec                           | Private                              |
771     +-------------------------------------+--------------------------------------+
772     | /books/id/*/delete                  | /books/base (0)                      |
773     |                                     | -> /books/object (1)                 |
774     |                                     | => /books/delete                     |
775     | /books/form_create                  | /books/base (0)                      |
776     |                                     | => /books/form_create                |
777     | /books/form_create_do               | /books/base (0)                      |
778     |                                     | => /books/form_create_do             |
779     | /books/url_create/*/*/*             | /books/base (0)                      |
780     |                                     | => /books/url_create                 |
781     '-------------------------------------+--------------------------------------'
782
783 Then point your browser to L<http://localhost:3000/books/list> and click
784 the "Delete" link next to the first "TCPIP_Illustrated_Vol-2".  A green
785 "Book deleted" status message should display at the top of the page,
786 along with a list of the eight remaining books.  You will also see the
787 cascading delete operation via the DBIC_TRACE output:
788
789     SELECT me.id, me.title, me.rating FROM book me WHERE ( ( me.id = ? ) ): '6'
790     DELETE FROM book WHERE ( id = ? ): '6'
791
792 If you get the error C<file error - books/delete.tt2: not found> then you
793 probably forgot to uncomment the template line in C<sub list> at the end of
794 chapter 3.
795
796 =head2 Fixing a Dangerous URL
797
798 Note the URL in your browser once you have performed the deletion in the
799 prior step -- it is still referencing the delete action:
800
801     http://localhost:3000/books/id/6/delete
802
803 What if the user were to press reload with this URL still active?  In
804 this case the redundant delete is harmless (although it does generate an
805 exception screen, it doesn't perform any undesirable actions on the
806 application or database), but in other cases this could clearly lead to
807 trouble.
808
809 We can improve the logic by converting to a redirect.  Unlike
810 C<< $c->forward('list')) >> or C<< $c->detach('list')) >> that perform a
811 server-side alteration in the flow of processing, a redirect is a
812 client-side mechanism that causes the browser to issue an entirely new
813 request.  As a result, the URL in the browser is updated to match the
814 destination of the redirection URL.
815
816 To convert the forward used in the previous section to a redirect, open
817 F<lib/MyApp/Controller/Books.pm> and edit the existing C<sub delete>
818 method to match:
819
820     =head2 delete
821
822     Delete a book
823
824     =cut
825
826     sub delete :Chained('object') :PathPart('delete') :Args(0) {
827         my ($self, $c) = @_;
828
829         # Use the book object saved by 'object' and delete it along
830         # with related 'book_author' entries
831         $c->stash->{object}->delete;
832
833         # Set a status message to be displayed at the top of the view
834         $c->stash->{status_msg} = "Book deleted.";
835
836         # Redirect the user back to the list page.  Note the use
837         # of $self->action_for as earlier in this section (BasicCRUD)
838         $c->response->redirect($c->uri_for($self->action_for('list')));
839     }
840
841
842 =head2 Try the Delete and Redirect Logic
843
844 Point your browser to L<http://localhost:3000/books/list> (don't just
845 hit "Refresh" in your browser since we left the URL in an invalid state
846 in the previous section!) and delete the first copy of the remaining two
847 "TCPIP_Illustrated_Vol-2" books. The URL in your browser should return
848 to the L<http://localhost:3000/books/list> URL, so that is an
849 improvement, but notice that I<no green "Book deleted" status message is
850 displayed>. Because the stash is reset on every request (and a redirect
851 involves a second request), the C<status_msg> is cleared before it can
852 be displayed.
853
854
855 =head2 Using 'uri_for' to Pass Query Parameters
856
857 There are several ways to pass information across a redirect. One option
858 is to use the C<flash> technique that we will see in
859 L<Chapter 5|Catalyst::Manual::Tutorial::05_Authentication> of this
860 tutorial; however, here we will pass the information via query
861 parameters on the redirect itself.  Open
862 F<lib/MyApp/Controller/Books.pm> and update the existing C<sub delete>
863 method to match the following:
864
865     =head2 delete
866
867     Delete a book
868
869     =cut
870
871     sub delete :Chained('object') :PathPart('delete') :Args(0) {
872         my ($self, $c) = @_;
873
874         # Use the book object saved by 'object' and delete it along
875         # with related 'book_author' entries
876         $c->stash->{object}->delete;
877
878         # Redirect the user back to the list page with status msg as an arg
879         $c->response->redirect($c->uri_for($self->action_for('list'),
880             {status_msg => "Book deleted."}));
881     }
882
883 This modification simply leverages the ability of C<uri_for> to include
884 an arbitrary number of name/value pairs in a hash reference.  Next, we
885 need to update F<root/src/wrapper.tt2> to handle C<status_msg> as a
886 query parameter:
887
888     ...
889     <div id="content">
890         [%# Status and error messages %]
891         <span class="message">[%
892             status_msg || c.request.params.status_msg | html %]</span>
893         <span class="error">[% error_msg %]</span>
894         [%# This is where TT will stick all of your template's contents. -%]
895         [% content %]
896     </div><!-- end content -->
897     ...
898
899 Although the sample above only shows the C<content> div, leave the rest
900 of the file intact -- the only change we made to the F<wrapper.tt2> was
901 to add "C<|| c.request.params.status_msg>" to the
902 C<< <span class="message"> >> line.  Note that we definitely want
903 the "C<| html>" TT filter here since it would be easy for users to
904 modify the message on the URL and possibly inject harmful code into the
905 application if we left that off.
906
907
908 =head2 Try the Delete and Redirect With Query Param Logic
909
910 Point your browser to L<http://localhost:3000/books/list> (you should
911 now be able to safely hit "refresh" in your browser). Then delete the
912 remaining copy of "TCPIP_Illustrated_Vol-2". The green "Book deleted"
913 status message should return.  But notice that you can now hit the
914 "Reload" button in your browser and it just redisplays the book list
915 (and it correctly shows it without the "Book deleted" message on
916 redisplay).
917
918 B<NOTE:> Be sure to check out
919 L<Authentication|Catalyst::Manual::Tutorial::05_Authentication> where we
920 use an improved technique that is better suited to your real world
921 applications.
922
923
924 =head1 EXPLORING THE POWER OF DBIC
925
926 In this section we will explore some additional capabilities offered by
927 L<DBIx::Class>.  Although these features have relatively little to do
928 with Catalyst per se, you will almost certainly want to take advantage
929 of them in your applications.
930
931
932 =head2 Add Datetime Columns to Our Existing Books Table
933
934 Let's add two columns to our existing C<books> table to track when each
935 book was added and when each book is updated:
936
937     $ sqlite3 myapp.db
938     sqlite> ALTER TABLE book ADD created TIMESTAMP;
939     sqlite> ALTER TABLE book ADD updated TIMESTAMP;
940     sqlite> UPDATE book SET created = DATETIME('NOW'), updated = DATETIME('NOW');
941     sqlite> SELECT * FROM book;
942     1|CCSP SNRS Exam Certification Guide|5|2010-02-16 04:15:45|2010-02-16 04:15:45
943     2|TCP/IP Illustrated, Volume 1|5|2010-02-16 04:15:45|2010-02-16 04:15:45
944     3|Internetworking with TCP/IP Vol.1|4|2010-02-16 04:15:45|2010-02-16 04:15:45
945     4|Perl Cookbook|5|2010-02-16 04:15:45|2010-02-16 04:15:45
946     5|Designing with Web Standards|5|2010-02-16 04:15:45|2010-02-16 04:15:45
947     9|TCP/IP Illustrated, Vol 3|5|2010-02-16 04:15:45|2010-02-16 04:15:45
948     sqlite> .quit
949     $
950
951 Here are the commands without the surrounding sqlite3 prompt and output
952 in case you want to cut and paste them as a single block (but still
953 start sqlite3 before you paste these in):
954
955     ALTER TABLE book ADD created TIMESTAMP;
956     ALTER TABLE book ADD updated TIMESTAMP;
957     UPDATE book SET created = DATETIME('NOW'), updated = DATETIME('NOW');
958     SELECT * FROM book;
959
960 This will modify the C<books> table to include the two new fields and
961 populate those fields with the current time.
962
963
964 =head2 Update DBIx::Class to Automatically Handle the Datetime Columns
965
966 Next, we should re-run the DBIC helper to update the Result Classes with
967 the new fields:
968
969     $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
970         create=static components=TimeStamp dbi:SQLite:myapp.db \
971         on_connect_do="PRAGMA foreign_keys = ON"
972      exists "/home/catalyst/dev/MyApp/script/../lib/MyApp/Model"
973      exists "/home/catalyst/dev/MyApp/script/../t"
974     Dumping manual schema for MyApp::Schema to directory /home/catalyst/dev/MyApp/script/../lib ...
975     Schema dump completed.
976      exists "/home/catalyst/dev/MyApp/script/../lib/MyApp/Model/DB.pm"
977
978 Notice that we modified our use of the helper slightly: we told it to
979 include the L<DBIx::Class::TimeStamp> in the C<load_components> line of
980 the Result Classes.
981
982 If you open F<lib/MyApp/Schema/Result/Book.pm> in your editor you should
983 see that the C<created> and C<updated> fields are now included in the
984 call to C<add_columns()>. However, also notice that the C<many_to_many>
985 relationships we manually added below the "C<# DO NOT MODIFY...>" line
986 were automatically preserved.
987
988 While we F<lib/MyApp/Schema/Result/Book.pm> open, let's update it with
989 some additional information to have DBIC automatically handle the
990 updating of these two fields for us.  Insert the following code at the
991 bottom of the file (it B<must> be B<below> the "C<# DO NOT MODIFY...>"
992 line and B<above> the C<1;> on the last line):
993
994     #
995     # Enable automatic date handling
996     #
997     __PACKAGE__->add_columns(
998         "created",
999         { data_type => 'timestamp', set_on_create => 1 },
1000         "updated",
1001         { data_type => 'timestamp', set_on_create => 1, set_on_update => 1 },
1002     );
1003
1004 This will override the definition for these fields that Schema::Loader
1005 placed at the top of the file.  The C<set_on_create> and
1006 C<set_on_update> options will cause DBIx::Class to automatically update
1007 the timestamps in these columns whenever a row is created or modified.
1008
1009 B<Note> that adding the lines above will cause the development server to
1010 automatically restart if you are running it with the "-r" option.  In
1011 other words, the development server is smart enough to restart not only
1012 for code under the F<MyApp/Controller/>, F<MyApp/Model/>, and
1013 F<MyApp/View/> directories, but also under other directions such as our
1014 "external DBIC model" in F<MyApp/Schema/>.  However, also note that it's
1015 smart enough to B<not> restart when you edit your C<.tt2> files under
1016 F<root/>.
1017
1018 Then enter the following URL into your web browser:
1019
1020     http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
1021
1022 You should get the same "Book Created" screen we saw earlier.  However, if
1023 you now use the sqlite3 command-line tool to dump the C<books> table,
1024 you will see that the new book we added has an appropriate date and time
1025 entered for it (see the last line in the listing below):
1026
1027     $ sqlite3 myapp.db "select * from book"
1028     1|CCSP SNRS Exam Certification Guide|5|2010-02-16 04:15:45|2010-02-16 04:15:45
1029     2|TCP/IP Illustrated, Volume 1|5|2010-02-16 04:15:45|2010-02-16 04:15:45
1030     3|Internetworking with TCP/IP Vol.1|4|2010-02-16 04:15:45|2010-02-16 04:15:45
1031     4|Perl Cookbook|5|2010-02-16 04:15:45|2010-02-16 04:15:45
1032     5|Designing with Web Standards|5|2010-02-16 04:15:45|2010-02-16 04:15:45
1033     9|TCP/IP Illustrated, Vol 3|5|2010-02-16 04:15:45|2010-02-16 04:15:45
1034     10|TCPIP_Illustrated_Vol-2|5|2010-02-16 04:18:42|2010-02-16 04:18:42
1035
1036 Notice in the debug log that the SQL DBIC generated has changed to
1037 incorporate the datetime logic:
1038
1039     INSERT INTO book ( created, rating, title, updated ) VALUES ( ?, ?, ?, ? ):
1040     '2010-02-16 04:18:42', '5', 'TCPIP_Illustrated_Vol-2', '2010-02-16 04:18:42'
1041     INSERT INTO book_author ( author_id, book_id ) VALUES ( ?, ? ): '4', '10'
1042
1043
1044 =head2 Create a ResultSet Class
1045
1046 An often overlooked but extremely powerful features of DBIC is that it
1047 allows you to supply your own subclasses of L<DBIx::Class::ResultSet>.
1048 This can be used to pull complex and unsightly "query code" out of your
1049 controllers and encapsulate it in a method of your ResultSet Class.
1050 These "canned queries" in your ResultSet Class can then be invoked via a
1051 single call, resulting in much cleaner and easier to read controller
1052 code (or View code, if that's where you want to call it).
1053
1054 To illustrate the concept with a fairly simple example, let's create a
1055 method that returns books added in the last 10 minutes.  Start by making
1056 a directory where DBIx::Class will look for our ResultSet Class:
1057
1058     $ mkdir lib/MyApp/Schema/ResultSet
1059
1060 Then open F<lib/MyApp/Schema/ResultSet/Book.pm> and enter the following:
1061
1062     package MyApp::Schema::ResultSet::Book;
1063
1064     use strict;
1065     use warnings;
1066     use base 'DBIx::Class::ResultSet';
1067
1068     =head2 created_after
1069
1070     A predefined search for recently added books
1071
1072     =cut
1073
1074     sub created_after {
1075         my ($self, $datetime) = @_;
1076
1077         my $date_str = $self->result_source->schema->storage
1078                               ->datetime_parser->format_datetime($datetime);
1079
1080         return $self->search({
1081             created => { '>' => $date_str }
1082         });
1083     }
1084
1085     1;
1086
1087 Then add the following method to the F<lib/MyApp/Controller/Books.pm>:
1088
1089     =head2 list_recent
1090
1091     List recently created books
1092
1093     =cut
1094
1095     sub list_recent :Chained('base') :PathPart('list_recent') :Args(1) {
1096         my ($self, $c, $mins) = @_;
1097
1098         # Retrieve all of the book records as book model objects and store in the
1099         # stash where they can be accessed by the TT template, but only
1100         # retrieve books created within the last $min number of minutes
1101         $c->stash(books => [$c->model('DB::Book')
1102                                 ->created_after(DateTime->now->subtract(minutes => $mins))]);
1103
1104         # Set the TT template to use.  You will almost always want to do this
1105         # in your action methods (action methods respond to user input in
1106         # your controllers).
1107         $c->stash(template => 'books/list.tt2');
1108     }
1109
1110 Now try different values for the "minutes" argument (the final number
1111 value) using the URL C<http://localhost:3000/books/list_recent/_#_> in
1112 your browser. For example, this would list all books added in the last
1113 fifteen minutes:
1114
1115     http://localhost:3000/books/list_recent/15
1116
1117 Depending on how recently you added books, you might want to try a
1118 higher or lower value for the minutes.
1119
1120
1121 =head2 Chaining ResultSets
1122
1123 One of the most helpful and powerful features in L<DBIx::Class> is that
1124 it allows you to "chain together" a series of queries (note that this
1125 has nothing to do with the "Chained Dispatch" for Catalyst that we were
1126 discussing earlier).  Because each ResultSet method returns another
1127 ResultSet, you can take an initial query and immediately feed that into
1128 a second query (and so on for as many queries you need).  Note that no
1129 matter how many ResultSets you chain together, the database itself will
1130 not be hit until you use a method that attempts to access the data. And,
1131 because this technique carries over to the ResultSet Class feature we
1132 implemented in the previous section for our "canned search", we can
1133 combine the two capabilities.  For example, let's add an action to our
1134 C<Books> controller that lists books that are both recent I<and> have
1135 "TCP" in the title.  Open up F<lib/MyApp/Controller/Books.pm> and add
1136 the following method:
1137
1138     =head2 list_recent_tcp
1139
1140     List recently created books
1141
1142     =cut
1143
1144     sub list_recent_tcp :Chained('base') :PathPart('list_recent_tcp') :Args(1) {
1145         my ($self, $c, $mins) = @_;
1146
1147         # Retrieve all of the book records as book model objects and store in the
1148         # stash where they can be accessed by the TT template, but only
1149         # retrieve books created within the last $min number of minutes
1150         # AND that have 'TCP' in the title
1151         $c->stash(books => [
1152                 $c->model('DB::Book')
1153                     ->created_after(DateTime->now->subtract(minutes => $mins))
1154                     ->search({title => {'like', '%TCP%'}})
1155             ]);
1156
1157         # Set the TT template to use.  You will almost always want to do this
1158         # in your action methods (action methods respond to user input in
1159         # your controllers).
1160         $c->stash(template => 'books/list.tt2');
1161     }
1162
1163 To try this out, enter the following URL into your browser:
1164
1165     http://localhost:3000/books/list_recent_tcp/100
1166
1167 And you should get a list of books added in the last 100 minutes that
1168 contain the string "TCP" in the title.  However, if you look at all
1169 books within the last 100 minutes, you should get a longer list (again,
1170 you might have to adjust the number of minutes depending on how recently
1171 you added books to your database):
1172
1173     http://localhost:3000/books/list_recent/100
1174
1175 Take a look at the DBIC_TRACE output in the development server log for
1176 the first URL and you should see something similar to the following:
1177
1178     SELECT me.id, me.title, me.rating, me.created, me.updated FROM book me
1179     WHERE ( ( title LIKE ? AND created > ? ) ): '%TCP%', '2010-02-16 02:49:32'
1180
1181 However, let's not pollute our controller code with this raw "TCP" query
1182 -- it would be cleaner to encapsulate that code in a method on our
1183 ResultSet Class.  To do this, open F<lib/MyApp/Schema/ResultSet/Book.pm>
1184 and add the following method:
1185
1186     =head2 title_like
1187
1188     A predefined search for books with a 'LIKE' search in the string
1189
1190     =cut
1191
1192     sub title_like {
1193         my ($self, $title_str) = @_;
1194
1195         return $self->search({
1196             title => { 'like' => "%$title_str%" }
1197         });
1198     }
1199
1200 We defined the search string as C<$title_str> to make the method more
1201 flexible.  Now update the C<list_recent_tcp> method in
1202 F<lib/MyApp/Controller/Books.pm> to match the following (we have
1203 replaced the C<< ->search >> line with the C<< ->title_like >> line
1204 shown here -- the rest of the method should be the same):
1205
1206     =head2 list_recent_tcp
1207
1208     List recently created books
1209
1210     =cut
1211
1212     sub list_recent_tcp :Chained('base') :PathPart('list_recent_tcp') :Args(1) {
1213         my ($self, $c, $mins) = @_;
1214
1215         # Retrieve all of the book records as book model objects and store in the
1216         # stash where they can be accessed by the TT template, but only
1217         # retrieve books created within the last $min number of minutes
1218         # AND that have 'TCP' in the title
1219         $c->stash(books => [
1220                 $c->model('DB::Book')
1221                     ->created_after(DateTime->now->subtract(minutes => $mins))
1222                     ->title_like('TCP')
1223             ]);
1224
1225         # Set the TT template to use.  You will almost always want to do this
1226         # in your action methods (action methods respond to user input in
1227         # your controllers).
1228         $c->stash(template => 'books/list.tt2');
1229     }
1230
1231 Try out the C<list_recent_tcp> and C<list_recent> URLs as we did above.
1232 They should work just the same, but our code is obviously cleaner and
1233 more modular, while also being more flexible at the same time.
1234
1235
1236 =head2 Adding Methods to Result Classes
1237
1238 In the previous two sections we saw a good example of how we could use
1239 DBIx::Class ResultSet Classes to clean up our code for an entire query
1240 (for example, our "canned searches" that filtered the entire query).  We
1241 can do a similar improvement when working with individual rows as well.
1242 Whereas the ResultSet construct is used in DBIC to correspond to an
1243 entire query, the Result Class construct is used to represent a row.
1244 Therefore, we can add row-specific "helper methods" to our Result
1245 Classes stored in F<lib/MyApp/Schema/Result/>. For example, open
1246 F<lib/MyApp/Schema/Result/Author.pm> and add the following method (as
1247 always, it must be above the closing "C<1;>"):
1248
1249     #
1250     # Row-level helper methods
1251     #
1252     sub full_name {
1253         my ($self) = @_;
1254
1255         return $self->first_name . ' ' . $self->last_name;
1256     }
1257
1258 This will allow us to conveniently retrieve both the first and last name
1259 for an author in one shot.  Now open F<root/src/books/list.tt2> and
1260 change the definition of C<tt_authors> from this:
1261
1262     ...
1263       [% tt_authors = [ ];
1264          tt_authors.push(author.last_name) FOREACH author = book.authors %]
1265     ...
1266
1267 to:
1268
1269     ...
1270       [% tt_authors = [ ];
1271          tt_authors.push(author.full_name) FOREACH author = book.authors %]
1272     ...
1273
1274 (Only C<author.last_name> was changed to C<author.full_name> -- the rest
1275 of the file should remain the same.)
1276
1277 Now go to the standard book list URL:
1278
1279     http://localhost:3000/books/list
1280
1281 The "Author(s)" column will now contain both the first and last name.
1282 And, because the concatenation logic was encapsulated inside our Result
1283 Class, it keeps the code inside our TT template nice and clean
1284 (remember, we want the templates to be as close to pure HTML markup as
1285 possible). Obviously, this capability becomes even more useful as you
1286 use it to remove even more complicated row-specific logic from your
1287 templates!
1288
1289
1290 =head2 Moving Complicated View Code to the Model
1291
1292 The previous section illustrated how we could use a Result Class method
1293 to print the full names of the authors without adding any extra code to
1294 our view, but it still left us with a fairly ugly mess (see
1295 F<root/src/books/list.tt2>):
1296
1297     ...
1298     <td>
1299         [% # NOTE: See Chapter 4 for a better way to do this!                      -%]
1300         [% # First initialize a TT variable to hold a list.  Then use a TT FOREACH -%]
1301         [% # loop in 'side effect notation' to load just the last names of the     -%]
1302         [% # authors into the list. Note that the 'push' TT vmethod does not print -%]
1303         [% # a value, so nothing will be printed here.  But, if you have something -%]
1304         [% # in TT that does return a method and you don't want it printed, you    -%]
1305         [% # can: 1) assign it to a bogus value, or 2) use the CALL keyword to     -%]
1306         [% # call it and discard the return value.                                 -%]
1307         [% tt_authors = [ ];
1308            tt_authors.push(author.full_name) FOREACH author = book.authors %]
1309         [% # Now use a TT 'virtual method' to display the author count in parens   -%]
1310         [% # Note the use of the TT filter "| html" to escape dangerous characters -%]
1311         ([% tt_authors.size | html %])
1312         [% # Use another TT vmethod to join & print the names & comma separators   -%]
1313         [% tt_authors.join(', ') | html %]
1314     </td>
1315     ...
1316
1317 Let's combine some of the techniques used earlier in this section to
1318 clean this up.  First, let's add a method to our Book Result Class to
1319 return the number of authors for a book.  Open
1320 F<lib/MyApp/Schema/Result/Book.pm> and add the following method:
1321
1322     =head2 author_count
1323
1324     Return the number of authors for the current book
1325
1326     =cut
1327
1328     sub author_count {
1329         my ($self) = @_;
1330
1331         # Use the 'many_to_many' relationship to fetch all of the authors for the current
1332         # and the 'count' method in DBIx::Class::ResultSet to get a SQL COUNT
1333         return $self->authors->count;
1334     }
1335
1336 Next, let's add a method to return a list of authors for a book to the
1337 same F<lib/MyApp/Schema/Result/Book.pm> file:
1338
1339     =head2 author_list
1340
1341     Return a comma-separated list of authors for the current book
1342
1343     =cut
1344
1345     sub author_list {
1346         my ($self) = @_;
1347
1348         # Loop through all authors for the current book, calling all the 'full_name'
1349         # Result Class method for each
1350         my @names;
1351         foreach my $author ($self->authors) {
1352             push(@names, $author->full_name);
1353         }
1354
1355         return join(', ', @names);
1356     }
1357
1358 This method loops through each author, using the C<full_name> Result
1359 Class method we added to F<lib/MyApp/Schema/Result/Author.pm> in the
1360 prior section.
1361
1362 Using these two methods, we can simplify our TT code.  Open
1363 F<root/src/books/list.tt2> and update the "Author(s)" table cell to
1364 match the following:
1365
1366     ...
1367     <td>
1368         [% # Print count and author list using Result Class methods -%]
1369         ([% book.author_count | html %]) [% book.author_list | html %]
1370     </td>
1371     ...
1372
1373 Although most of the code we removed comprised comments, the overall
1374 effect is dramatic... because our view code is so simple, we don't need
1375 huge comments to clue people in to the gist of our code.  The view code
1376 is now self-documenting and readable enough that you could probably get
1377 by with no comments at all.  All of the "complex" work is being done in
1378 our Result Class methods (and, because we have broken the code into
1379 nice, modular chunks, the Result Class code is hardly something you
1380 would call complex).
1381
1382 As we saw in this section, always strive to keep your view AND
1383 controller code as simple as possible by pulling code out into your
1384 model objects.  Because L<DBIx::Class> can be easily extended in so many
1385 ways, it's an excellent to way accomplish this objective.  It will make
1386 your code cleaner, easier to write, less error-prone, and easier to
1387 debug and maintain.
1388
1389 Before you conclude this section, hit Refresh in your browser... the
1390 output should be the same even though the backend code has been trimmed
1391 down.
1392
1393
1394 You can jump to the next chapter of the tutorial here:
1395 L<Authentication|Catalyst::Manual::Tutorial::05_Authentication>
1396
1397
1398 =head1 AUTHOR
1399
1400 Kennedy Clark, C<hkclark@gmail.com>
1401
1402 Feel free to contact the author for any errors or suggestions, but the
1403 best way to report issues is via the CPAN RT Bug system at
1404 L<https://rt.cpan.org/Public/Dist/Display.html?Name=Catalyst-Manual>.
1405
1406 Copyright 2006-2011, Kennedy Clark, under the
1407 Creative Commons Attribution Share-Alike License Version 3.0
1408 (L<http://creativecommons.org/licenses/by-sa/3.0/us/>).