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