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