Prep for release
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / BasicCRUD.pod
CommitLineData
fbbb9084 1=head1 NAME
d442cc9f 2
3533daff 3Catalyst::Manual::Tutorial::BasicCRUD - Catalyst Tutorial - Part 4: Basic CRUD
d442cc9f 4
5
6=head1 OVERVIEW
7
3533daff 8This is B<Part 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
59This part of the tutorial builds on the fairly primitive application
3533daff 60created in Part 3 to add basic support for Create, Read, Update, and
d442cc9f 61Delete (CRUD) of C<Book> objects. Note that the 'list' function in Part
622 already implements the Read portion of CRUD (although Read normally
63refers to reading a single object; you could implement full read
64functionality using the techniques introduced below). This section will
65focus on the Create and Delete aspects of CRUD. More advanced
66capabilities, including full Update functionality, will be addressed in
3533daff 67Part 9.
d442cc9f 68
1390ef0e 69Although this part 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
d442cc9f 77You can checkout 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
3533daff 84Our initial attempt at object creation will utilize the "URL
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
94
95 Create a book with the supplied title, rating, and author
96
97 =cut
98
99 sub url_create : Local {
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/"
103 # into @_
104 my ($self, $c, $title, $rating, $author_id) = @_;
105
106 # Call create() on the book model object. Pass the table
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 });
112
113 # Add a record to the join table for this book, mapping to
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});
118
119 # Assign the Book object to the stash for display in the view
120 $c->stash->{book} = $book;
121
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
126 # you are running DBIC 0.06001 or greater), but adding it doesn't
127 # hurt anything either.
128 $Data::Dumper::Useperl = 1;
129
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
143=head2 Include a Template for the C<url_create> Action:
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) -%]
151
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 -%]
154 [% # root/lib/site/html and root/lib/site/header). Note that META on -%]
155 [% # simple strings (e.g., no variable interpolation). -%]
156 [% META title = 'Book Created' %]
157
158 [% # Output information about the record that was added. First title. -%]
159 <p>Added book '[% book.title %]'
160
161 [% # Output the last name of the first author. This is complicated by an -%]
162 [% # issue in TT 2.15 where blessed hash objects are not handled right. -%]
163 [% # First, fetch 'book.authors' from the DB once. -%]
164 [% authors = book.authors %]
165 [% # Now use IF statements to test if 'authors.first' is "working". If so, -%]
166 [% # we use it. Otherwise we use a hack that seems to keep TT 2.15 happy. -%]
167 by '[% authors.first.last_name IF authors.first;
168 authors.list.first.value.last_name IF ! authors.first %]'
169
170 [% # Output the rating for the book that was added -%]
171 with a rating of [% book.rating %].</p>
172
173 [% # Provide a link back to the list page -%]
174 [% # 'uri_for()' builds a full URI; e.g., 'http://localhost:3000/books/list' -%]
8a7c5151 175 <p><a href="[% c.uri_for('/books/list') %]">Return to list</a></p>
d442cc9f 176
177 [% # Try out the TT Dumper (for development only!) -%]
178 <pre>
179 Dump of the 'book' variable:
180 [% Dumper.dump(book) %]
181 </pre>
182
1390ef0e 183The TT C<USE> directive allows access to a variety of plugin modules
184(TT plugins, that is, not Catalyst plugins) to add extra functionality
185to the base TT capabilities. Here, the plugin allows
186L<Data::Dumper|Data::Dumper> "pretty printing" of objects and
187variables. Other than that, the rest of the code should be familiar
188from the examples in Part 3.
d442cc9f 189
d442cc9f 190
191=head2 Try the C<url_create> Feature
192
193If the application is still running from before, use C<Ctrl-C> to kill
194it. Then restart the server:
195
1390ef0e 196 $ DBIC_TRACE=1 script/myapp_server.pl
d442cc9f 197
198Note that new path for C</books/url_create> appears in the startup debug
199output.
200
201B<TIP>: You can use C<script/myapp_server.pl -r> to have the development
202server auto-detect changed files and reload itself (if your browser acts
203odd, you should also try throwing in a C<-k>). If you make changes to
204the TT templates only, you do not need to reload the development server
205(only changes to "compiled code" such as Controller and Model C<.pm>
206files require a reload).
207
208Next, use your browser to enter the following URL:
209
210 http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
211
fbbb9084 212Your browser should display "Added book 'TCPIP_Illustrated_Vol-2' by
213'Stevens' with a rating of 5." along with a dump of the new book model
214object as it was returned by DBIC. You should also see the following
215DBIC debug messages displayed in the development server log messages
216if you have DBIC_TRACE set:
d442cc9f 217
218 INSERT INTO books (rating, title) VALUES (?, ?): `5', `TCPIP_Illustrated_Vol-2'
219 INSERT INTO book_authors (author_id, book_id) VALUES (?, ?): `4', `6'
220 SELECT author.id, author.first_name, author.last_name
221 FROM book_authors me JOIN authors author
222 ON ( author.id = me.author_id ) WHERE ( me.book_id = ? ): '6'
223
224The C<INSERT> statements are obviously adding the book and linking it to
225the existing record for Richard Stevens. The C<SELECT> statement results
226from DBIC automatically fetching the book for the C<Dumper.dump(book)>.
227
1390ef0e 228If you then click the "Return to list" link, you should find that
229there are now six books shown (if necessary, Shift+Reload or
230Ctrl+Reload your browser at the C</books/list> page).
d442cc9f 231
d442cc9f 232
89d3dae9 233=head1 CONVERT TO A CHAINED ACTION
234
235Although the example above uses the same C<Local> action type for the
236method that we saw in the previous part of the tutorial, there is an
237alternate approach that allows us to be more specific while also
238paving the way for more advanced capabilities. Change the method
239declaration for C<url_create> in C<lib/MyApp/Controller/Books.pm> you
240entered above to match the following:
241
242 sub url_create :Chained('/') :PathPart('books/url_create') :Args(3) {
243
244This converts the method to take advantage of the Chained
245action/dispatch type. Chaining let's you have a single URL
246automatically dispatch to several controller methods, each of which
247can have precise control over the number of arguments that it will
248receive. A chain can essentially be thought of having three parts --
249a beginning, a middle and an end. The bullets below summarize the key
250points behind each of these parts of a chain:
251
252
253=over 4
254
255
256=item *
257
258Beginning
259
260=over 4
261
262=item *
263
264B<Use "C<:Chained('/')>" to start a chain>
265
266=item *
267
268Get arguments through C<CaptureArgs()>
269
270=item *
271
272Specify the path to match with C<PathPart()>
273
274=back
275
276
277=item *
278
279Middle
280
281=over 4
282
283=item *
d442cc9f 284
89d3dae9 285Link to previous part of the chain with C<:Chained('_name_')>
286
287=item *
288
289Get arguments through C<CaptureArgs()>
290
291=item *
292
293Specify the path to match with C<PathPart()>
294
295=back
296
297
298=item *
299
300End
301
302=over 4
303
304=item *
305
306Link to previous part of the chain with C<:Chained('_name_')>
307
308=item *
309
310B<Do NOT get arguments through "C<CaptureArgs()>," use "C<Args()>" instead to end a chain>
311
312=item *
313
314Specify the path to match with C<PathPart()>
315
316=back
317
318
319=back
320
321In our C<url_create> method above, we have combined all 3 parts into a
322single method: C<:Chained('/')> to start the chain,
323C<:PathPart('books/url_create')> to specify the base URL to match,
324along with C<:Args(3)> to capture exactly 3 arguments and also end the
325chain.
326
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
330part of the tutorial and explore slightly more advanced capabilities
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>,
335and the 2006 advent calendar entry on the subject:
336L<http://www.catalystframework.org/calendar/2006/10>.
337
338
339=head2 Try the Chained Action
340
341If you look back at the development server startup logs from your
342initial version of the C<url_create> method (the one using the
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
357Now start the development server with our basic chained method in
358place and the startup debug output should change to something along
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 '-------------------------------------+--------------------------------------'
370
371 [debug] Loaded Chained actions:
372 .-------------------------------------+--------------------------------------.
373 | Path Spec | Private |
374 +-------------------------------------+--------------------------------------+
375 | /books/url_create/*/*/* | /books/url_create |
376 '-------------------------------------+--------------------------------------'
89d3dae9 377
378C<url_create> has disappeared form the "Loaded Path actions" section
379but it now shows up under the newly created "Loaded Chained actions"
fbbb9084 380section. And, the "/*/*/*" portion clearly shows our requirement for
381three arguments.
89d3dae9 382
383As with our non-chained version of C<url_create>, use your browser to
384enter the following URL:
385
fbbb9084 386 http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
89d3dae9 387
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
390object. Click the "Return to list" link, you should find that there
391are now seven books shown (two copies of TCPIP_Illustrated_Vol-2).
392
393
994b66ad 394=head2 Refactor to Use a "Base" Method to Start the Chains
89d3dae9 395
396Let's make a quick update to our initial Chained action to show a
397little more of the power of chaining. First, open
398C<lib/MyApp/Controller/Books.pm> in your editor and add the following
399method:
400
fbbb9084 401 =head2 base
402
403 Can place common logic to start chained dispatch here
404
405 =cut
406
407 sub base :Chained('/') :PathPart('books') :CaptureArgs(0) {
408 my ($self, $c) = @_;
409
1cde0fd6 410 # Store the ResultSet in stash so it's available for other methods
fbbb9084 411 $c->stash->{resultset} = $c->model('DB::Books');
412
413 # Print a message to the debug log
414 $c->log->debug('*** INSIDE BASE METHOD ***');
415 }
416
1cde0fd6 417Here we print a log message and store the DBIC ResultSet in
994b66ad 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
420needs a book ID as it's first argument, you could have the base method
421capture that argument (with C<:CaptureArgs(1)>) and use it to pull the
fbbb9084 422book object with C<-E<gt>find($id)> and leave it in the stash for
994b66ad 423later parts of your chains to then act upon. Because we have several
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
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
430C<url_create> to match the following:
89d3dae9 431
432 sub url_create :Chained('base') :PathPart('url_create') :Args(3) {
433
fbbb9084 434Next, try out the refactored chain by restarting the development
435server. Notice that our "Loaded Chained actions" section has changed
436slightly:
437
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
446The "Path Spec" is the same, but now it maps to two Private actions as
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
453The same "Added book 'TCPIP_Illustrated_Vol-2' by 'Stevens' with a
fbbb9084 454rating of 5" message and dump of the new book object should appear.
455Also notice the extra debug message in the development server output
456from the C<base> method. Click the "Return to list" link, you should
457find 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
473
474 Display form to collect information for book to create
475
476 =cut
477
89d3dae9 478 sub form_create :Chained('base') :PathPart('form_create') :Args(0) {
d442cc9f 479 my ($self, $c) = @_;
480
481 # Set the TT template to use
482 $c->stash->{template} = 'books/form_create.tt2';
483 }
484
485This action simply invokes a view containing a book creation form.
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' -%]
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
513
514 Take information from form and add to database
515
516 =cut
517
89d3dae9 518 sub form_create_do :Chained('base') :PathPart('form_create_do') :Args(0) {
d442cc9f 519 my ($self, $c) = @_;
520
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';
525
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});
533
534 # Store new model object in stash
535 $c->stash->{book} = $book;
536
537 # Avoid Data::Dumper issue mentioned earlier
538 # You can probably omit this
539 $Data::Dumper::Useperl = 1;
540
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
89d3dae9 553Notice that the server startup log reflects the two new chained
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
3533daff 576Part 9.
d442cc9f 577
578
579=head1 A SIMPLE DELETE FEATURE
580
581Turning our attention to the delete portion of CRUD, this section
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,
590and 2) the four lines for the Delete link near the bottom).
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. -%]
596
597 [% # Provide a title to root/lib/site/header -%]
598 [% META title = 'Book List' -%]
599
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 -%]
610 [% # authors into the list. Note that the 'push' TT vmethod does not -%]
611 [% # a value, so nothing will be printed here. But, if you have something -%]
612 [% # in TT that does return a method and you don't want it printed, you -%]
613 [% # can: 1) assign it to a bogus value, or 2) use the CALL keyword to -%]
614 [% # call it and discard the return value. -%]
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
fe01b24f 630The additional code is obviously designed to add a new column to the
631right side of the table with a C<Delete> "button" (for simplicity,
632links will be used instead of full HTML buttons).
633
b2ad8bbd 634Also notice that we are using a more advanced form of C<uri_for> than
acbd7bdd 635we have seen before. Here we use
636C<$c-E<gt>controller-E<gt>action_for> to automatically generate a URI
637appropriate for that action based on the method we want to link to
638while inserting the C<book.id> value into the appropriate place. Now,
639if you ever change C<:PathPart('delete')> in your controller method to
0416017e 640C<:PathPart('kill')>, then your links will automatically update
641without any changes to your .tt2 template file. As long as the name
642of your method does not changed ("delete" here), then your links will
acbd7bdd 643still be correct. There are a few shortcuts and options when using
0416017e 644C<action_for()>:
645
646=over 4
647
648=item *
649
650If you are referring to a method in the current controller, you can
651use C<$self-E<gt>action_for('_method_name_')>.
652
653=item *
654
655If you are referring to a method in a different controller, you need
fbbb9084 656to include that controller's name as an argument to C<controller()>, as in
0416017e 657C<$c-E<gt>controller('_controller_name_')-E<gt>action_for('_method_name_')>.
658
659=back
b2ad8bbd 660
c5d94181 661B<Note:> In practice you should B<never> use a GET request to delete a
662record -- always use POST for actions that will modify data. We are
663doing it here for illustrative and simplicity purposes only.
d442cc9f 664
1390ef0e 665
994b66ad 666=head2 Add a Common Method to Retrieve a Book for the Chain
667
fbbb9084 668As mentioned earlier, since we have a mixture of actions that operate
669on a single book ID and others that do no, we should not have C<base>
994b66ad 670capture the book ID, find the corresponding book in the database and
671save it in the stash for later links in the chain. However, just
fbbb9084 672because that logic does not belong in C<base> doesn't mean that we
673can't create another location to centralize the book lookup code. In
674our case, we will create a method called C<object> that will store the
675specific book in the stash. Chains that always operate on a single
676existing book can chain off this method, but methods such as
677C<url_create> that don't operate on an existing book can chain
678directly off base.
994b66ad 679
680To add the C<object> method, edit C<lib/MyApp/Controller/Books.pm>
681and add the following code:
682
e075db0c 683 =head2 object
684
685 Fetch the specified book object based on the book ID and store
686 it in the stash
687
688 =cut
689
994b66ad 690 sub object :Chained('base') :PathPart('id') :CaptureArgs(1) {
fbbb9084 691 # $id = primary key of book to delete
994b66ad 692 my ($self, $c, $id) = @_;
693
694 # Find the book object and store it in the stash
695 $c->stash(object => $c->stash->{resultset}->find($id));
696
697 # Make sure the lookup was successful. You would probably
698 # want to do something like this in a real app:
699 # $c->detach('/error_404') if !$c->stash->{object};
700 die "Book $id not found!" if !$c->stash->{object};
701 }
702
703Now, any other method that chains off C<object> will automatically
704have the appropriate book waiting for it in
acbd7bdd 705C<$c-E<gt>stash-E<gt>{object}>.
994b66ad 706
707Also note that we are using different technique for setting
708C<$c-E<gt>stash>. The advantage of this style is that it let's you
709set multiple stash variables at a time. For example:
710
711 $c->stash(object => $c->stash->{resultset}->find($id),
712 another_thing => 1);
713
714or as a hashref:
715
716 $c->stash({object => $c->stash->{resultset}->find($id),
717 another_thing => 1});
718
fbbb9084 719Either format works, but the C<$c-E<gt>stash(name =E<gt> value);>
994b66ad 720style is growing in popularity -- you may which to use it all
721the time (even when you are only setting a single value).
722
723
d442cc9f 724=head2 Add a Delete Action to the Controller
725
726Open C<lib/MyApp/Controller/Books.pm> in your editor and add the
727following method:
728
1390ef0e 729 =head2 delete
d442cc9f 730
731 Delete a book
732
733 =cut
734
994b66ad 735 sub delete :Chained('object') :PathPart('delete') :Args(0) {
994b66ad 736 my ($self, $c) = @_;
d442cc9f 737
994b66ad 738 # Use the book object saved by 'object' and delete it along
739 # with related 'book_authors' entries
740 $c->stash->{object}->delete;
d442cc9f 741
742 # Set a status message to be displayed at the top of the view
743 $c->stash->{status_msg} = "Book deleted.";
744
745 # Forward to the list action/method in this controller
746 $c->forward('list');
747 }
748
994b66ad 749This method first deletes the book object saved by the C<object> method.
750However, it also removes the corresponding entry from the
fbbb9084 751C<book_authors> table with a cascading delete.
d442cc9f 752
753Then, rather than forwarding to a "delete done" page as we did with the
754earlier create example, it simply sets the C<status_msg> to display a
755notification to the user as the normal list view is rendered.
756
757The C<delete> action uses the context C<forward> method to return the
758user to the book list. The C<detach> method could have also been used.
759Whereas C<forward> I<returns> to the original action once it is
760completed, C<detach> does I<not> return. Other than that, the two are
761equivalent.
762
763
764=head2 Try the Delete Feature
765
766If the application is still running from before, use C<Ctrl-C> to kill
767it. Then restart the server:
768
994b66ad 769 $ DBIC_TRACE=1 script/myapp_server.pl
d442cc9f 770
89d3dae9 771The C<delete> method now appears in the "Loaded Chained actions" section
772of the startup debug output:
773
fbbb9084 774 [debug] Loaded Chained actions:
994b66ad 775 .-------------------------------------+--------------------------------------.
776 | Path Spec | Private |
777 +-------------------------------------+--------------------------------------+
778 | /books/id/*/delete | /books/base (0) |
779 | | -> /books/object (1) |
780 | | => /books/delete |
781 | /books/form_create | /books/base (0) |
782 | | => /books/form_create |
783 | /books/form_create_do | /books/base (0) |
784 | | => /books/form_create_do |
785 | /books/url_create/*/*/* | /books/base (0) |
786 | | => /books/url_create |
787 '-------------------------------------+--------------------------------------'
89d3dae9 788
d442cc9f 789Then point your browser to L<http://localhost:3000/books/list> and click
790the "Delete" link next to the first "TCPIP_Illustrated_Vol-2". A green
791"Book deleted" status message should display at the top of the page,
994b66ad 792along with a list of the eight remaining books. You will also see the
793cascading delete operation via the DBIC_TRACE output:
794
acbd7bdd 795 SELECT me.id, me.title, me.rating FROM books me WHERE ( ( me.id = ? ) ): '6'
994b66ad 796 DELETE FROM books WHERE ( id = ? ): '6'
797 SELECT me.book_id, me.author_id FROM book_authors me WHERE ( me.book_id = ? ): '6'
798 DELETE FROM book_authors WHERE ( author_id = ? AND book_id = ? ): '4', '6'
d442cc9f 799
800
801=head2 Fixing a Dangerous URL
802
5edc2aae 803Note the URL in your browser once you have performed the deletion in the
d442cc9f 804prior step -- it is still referencing the delete action:
805
acbd7bdd 806 http://localhost:3000/books/id/6/delete
d442cc9f 807
fbbb9084 808What if the user were to press reload with this URL still active? In
809this case the redundant delete is harmless (although it does generate
810an exception screen, it doesn't perform any undesirable actions on the
811application or database), but in other cases this could clearly be
812extremely dangerous.
d442cc9f 813
814We can improve the logic by converting to a redirect. Unlike
815C<$c-E<gt>forward('list'))> or C<$c-E<gt>detach('list'))> that perform
816a server-side alteration in the flow of processing, a redirect is a
3533daff 817client-side mechanism that causes the browser to issue an entirely
d442cc9f 818new request. As a result, the URL in the browser is updated to match
819the destination of the redirection URL.
820
821To convert the forward used in the previous section to a redirect,
822open C<lib/MyApp/Controller/Books.pm> and edit the existing
823C<sub delete> method to match:
824
994b66ad 825 =head2 delete
d442cc9f 826
827 Delete a book
994b66ad 828
d442cc9f 829 =cut
830
994b66ad 831 sub delete :Chained('object') :PathPart('delete') :Args(0) {
fbbb9084 832 my ($self, $c) = @_;
d442cc9f 833
994b66ad 834 # Use the book object saved by 'object' and delete it along
835 # with related 'book_authors' entries
836 $c->stash->{object}->delete;
d442cc9f 837
838 # Set a status message to be displayed at the top of the view
839 $c->stash->{status_msg} = "Book deleted.";
840
0416017e 841 # Redirect the user back to the list page. Note the use
842 # of $self->action_for as earlier in this section (BasicCRUD)
fbbb9084 843 $c->response->redirect($c->uri_for($self->action_for('list')));
d442cc9f 844 }
845
846
847=head2 Try the Delete and Redirect Logic
848
849Restart the development server and point your browser to
994b66ad 850L<http://localhost:3000/books/list> (don't just hit "Refresh" in your
851browser since we left the URL in an invalid state in the previous
852section!) and delete the first copy of the remaining two
853"TCPIP_Illustrated_Vol-2" books. The URL in your browser should return
854to the L<http://localhost:3000/books/list> URL, so that is an
855improvement, but notice that I<no green "Book deleted" status message is
856displayed>. Because the stash is reset on every request (and a redirect
857involves a second request), the C<status_msg> is cleared before it can
858be displayed.
d442cc9f 859
860
861=head2 Using C<uri_for> to Pass Query Parameters
862
89d3dae9 863There are several ways to pass information across a redirect. One
864option is to use the C<flash> technique that we will see in Part 5 of
865the tutorial; however, here we will pass the information via query
866parameters on the redirect itself. Open
867C<lib/MyApp/Controller/Books.pm> and update the existing C<sub delete>
868method to match the following:
d442cc9f 869
870 =head2 delete
871
872 Delete a book
873
874 =cut
875
994b66ad 876 sub delete :Chained('object') :PathPart('delete') :Args(0) {
fbbb9084 877 my ($self, $c) = @_;
d442cc9f 878
994b66ad 879 # Use the book object saved by 'object' and delete it along
880 # with related 'book_authors' entries
881 $c->stash->{object}->delete;
d442cc9f 882
883 # Redirect the user back to the list page with status msg as an arg
e075db0c 884 $c->response->redirect($c->uri_for($self->action_for('list'),
d442cc9f 885 {status_msg => "Book deleted."}));
886 }
887
888This modification simply leverages the ability of C<uri_for> to include
889an arbitrary number of name/value pairs in a hash reference. Next, we
89d3dae9 890need to update C<root/src/wrapper.tt2> to handle C<status_msg> as a
d442cc9f 891query parameter:
892
1390ef0e 893 ...
d442cc9f 894 <div id="content">
1390ef0e 895 [%# Status and error messages %]
896 <span class="message">[% status_msg || c.request.params.status_msg %]</span>
897 <span class="error">[% error_msg %]</span>
898 [%# This is where TT will stick all of your template's contents. -%]
899 [% content %]
900 </div><!-- end content -->
901 ...
902
903Although the sample above only shows the C<content> div, leave the
904rest of the file intact -- the only change we made to the C<wrapper.tt2>
905was to add "C<|| c.request.params.status_msg>" to the
906C<E<lt>span class="message"E<gt>> line.
d442cc9f 907
908
909=head2 Try the Delete and Redirect With Query Param Logic
910
911Restart the development server and point your browser to
994b66ad 912L<http://localhost:3000/books/list> (you should now be able to safely
913hit "refresh" in your browser). Then delete the remaining copy of
914"TCPIP_Illustrated_Vol-2". The green "Book deleted" status message
d442cc9f 915should return.
916
89d3dae9 917B<NOTE:> Another popular method for maintaining server-side
918information across a redirect is to use the C<flash> technique we
919discuss in the next part of the tutorial,
920L<Authentication|Catalyst::Manual::Tutorial::Authentication>. While
921C<flash> is a "slicker" mechanism in that it's all handled by the
922server and doesn't "pollute" your URLs, B<it is important to note that
923C<flash> can lead to situations where the wrong information shows up
924in the wrong browser window if the user has multiple windows or
994b66ad 925browser tabs open.> For example, Window A causes something to be
89d3dae9 926placed in the stash, but before that window performs a redirect,
927Window B makes a request to the server and gets the status information
994b66ad 928that should really go to Window A. For this reason, you may wish
89d3dae9 929to use the "query param" technique shown here in your applications.
d442cc9f 930
931
1cde0fd6 932=head1 EXPLORING THE POWER OF DBIC
933
934In this section we will explore some additional capabilities offered
935by DBIx::Class. Although these features have relatively little to do
8b8937d8 936with Catalyst per se, you will almost certainly want to take advantage
1cde0fd6 937of them in your applications.
938
939
940=head2 Convert to DBIC "load_namespaces"
941
942If you look back at
943L<Catalyst::Manual::Tutorial::MoreCatalystBasics/Create Static DBIC
944Schema Files> you will recall that we load our DBIC Result Classes
945(Books.pm, Authors.pm and BookAuthors.pm) with in
946C<lib/MyApp/Schema.pm> with the C<load_classes> feature. Although
947this method is perfectly valid, the DBIC community has migrated to a
948newer C<load_namespaces> technique because it more easily supports a
949variety of advanced features. Since we want to explore some of these
950features below, let's first migrate our configuration over to use
951C<load_namespaces>.
952
acbd7bdd 953If you are following along in Debian 5, you will need to upgrade your
954version of
955L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema> to 0.23
956or higher. To do this, we can install directly from CPAN via the
957following command:
1cde0fd6 958
acbd7bdd 959 $ sudo cpan Catalyst::Model::DBIC::Schema
1cde0fd6 960
961Then make sure you are running an appropriate version:
962
963 $ perl -MCatalyst::Model::DBIC::Schema -e \
964 'print "$Catalyst::Model::DBIC::Schema::VERSION\n"'
c16b23ab 965 0.23
1cde0fd6 966
7c6892d9 967Make sure you get version 0.23 or higher.
1cde0fd6 968
acbd7bdd 969B<Note:> Debian will automatically "do the right thing" and use the
1cde0fd6 970module we installed from CPAN and ignore the older version we picked
acbd7bdd 971up via the C<aptitude> command. If you are using a different
7c6892d9 972environment, you will need to make sure you are using v0.23 or higher
1cde0fd6 973with the command above.
974
975While we are at it, let's install a few other modules from CPAN for
976some of the other work we will be doing below:
977
978 $ cpan Time::Warp DBICx::TestDatabase \
979 DBIx::Class::DynamicDefault DBIx::Class::TimeStamp
980
981Next, we need to delete the existing C<lib/MyApp/Schema.pm> so that
982the Catalyst DBIC helper will recreate it. Then we re-generate
983the model and schema information:
984
985 $ rm lib/MyApp/Schema.pm
986 $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
987 create=static components=TimeStamp dbi:SQLite:myapp.db
988 exists "/root/dev/MyApp/script/../lib/MyApp/Model"
989 exists "/root/dev/MyApp/script/../t"
990 Dumping manual schema for MyApp::Schema to directory /root/dev/MyApp/script/../lib ...
991 Schema dump completed.
992 exists "/root/dev/MyApp/script/../lib/MyApp/Model/DB.pm"
993 $
994 $ ls lib/MyApp/Schema
995 Authors.pm BookAuthors.pm Books.pm Result
996 $ ls lib/MyApp/Schema/Result
997 Authors.pm BookAuthors.pm Books.pm
998
999Notice that we now have a duplicate set of Result Class files. With
1000the newer C<load_namespaces> feature, DBIC automatically looks for
1001your Result Class files in a subdirectory of the Schema directory
1002called C<Result> (the files in C<lib/MyApp/Schema> were already there
1003from Part 3 of the tutorial; the files in C<lib/MyApp/Schema/Result>
1004are new).
1005
1006If you are using SQLite, you will need to manually re-enter the
1007relationship configuration as we did in Part 3 of the tutorial (if you
1008are using different database, the relationships might have been auto-
1009generated by Schema::Loader). One option is to use the following
1010command-line perl script to migrate the information across
1011automatically:
1012
1013 $ cd lib/MyApp/Schema
1014 $ perl -MIO::All -e 'for (@ARGV) { my $s < io($_); $s =~ s/.*\n\# You can replace.*?\n//s;
1015 $s =~ s/'MyApp::Schema::/'MyApp::Schema::Result::/g; my $d < io("Result/$_");
1016 $d =~ s/1;\n?//; "$d$s" > io("Result/$_"); }' *.pm
1017 $ cd ../../..
1018
1019If you prefer, you can do the migration by hand using "cut and paste"
1020from the files in C<lib/MyApp/Schema> (or from
1021L<Catalyst::Manual::Tutorial::MoreCatalystBasics/Updating the Generated DBIC Schema Files>)
1022to the corresponding files in C<lib/MyApp/Schema/Result>. If you take
1023this approach, be sure to add C<::Result> to the end of
1024C<MyApp::Schema> in all three files (for example, in C<Books.pm>, the
1025"peer class" in the C<has_many> relationship needs to be changed from
1026C<MyApp::Schema::BookAuthors> to C<MyApp::Schema::BookAuthors::Result>).
1027
1028Now we can remove the original set of Result Class files that we no
1029longer need:
1030
1031 $ rm lib/MyApp/Schema/*.pm
1032 $ ls lib/MyApp/Schema
1033 Result
1034
1035Finally, test the application to be sure everything is still
1036working under our new configuration. Use the
1037C<script/myapp_server.pl> command to start the development server and
1038point your browser to L<http://localhost:3000/books/list>. Make sure
1039you see the existing list of books.
1040
1041
1042=head2 Add Datetime Columns to Our Existing Books Table
1043
1044Let's add two columns to our existing C<books> table to track when
1045each book was added and when each book is updated:
1046
1047 $ sqlite3 myapp.db
1048 sqlite> ALTER TABLE books ADD created INTEGER;
1049 sqlite> ALTER TABLE books ADD updated INTEGER;
1050 sqlite> UPDATE books SET created = DATETIME('NOW'), updated = DATETIME('NOW');
1051 sqlite> SELECT * FROM books;
acbd7bdd 1052 1|CCSP SNRS Exam Certification Guide|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1053 2|TCP/IP Illustrated, Volume 1|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1054 3|Internetworking with TCP/IP Vol.1|4|2009-03-08 16:26:35|2009-03-08 16:26:35
1055 4|Perl Cookbook|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1056 5|Designing with Web Standards|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1057 9|TCP/IP Illustrated, Vol 3|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1cde0fd6 1058 sqlite> .quit
1059 $
1060
1061This will modify the C<books> table to include the two new fields
1062and populate those fields with the current time.
1063
acbd7bdd 1064
1cde0fd6 1065=head2 Update DBIC to Automatically Handle the Datetime Columns
1066
1067Next, we should re-run the DBIC helper to update the Result Classes
1068with the new fields:
1069
1070 $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
1071 create=static components=TimeStamp dbi:SQLite:myapp.db
1072 exists "/root/dev/MyApp/script/../lib/MyApp/Model"
1073 exists "/root/dev/MyApp/script/../t"
1074 Dumping manual schema for MyApp::Schema to directory /root/dev/MyApp/script/../lib ...
1075 Schema dump completed.
1076 exists "/root/dev/MyApp/script/../lib/MyApp/Model/DB.pm"
1077
1078Notice that we modified our use of the helper slightly: we told
1079it to include the L<DBIx::Class::Timestamp|DBIx::Class::Timestamp>
1080in the C<load_components> line of the Result Classes.
1081
1082If you open C<lib/MyApp/Schema/Result/Books.pm> in your editor you
1083should see that the C<created> and C<updated> fields are now included
1084in the call to add_columns(), but our relationship information below
1085the "C<# DO NOT MODIFY...>" line was automatically preserved.
1086
1087While we have this file open, let's update it with some additional
1088information to have DBIC automatically handle the updating of these
1089two fields for us. Insert the following code at the bottom of the
1090file (it B<must> be B<below> the "C<# DO NOT MODIFY...>" line and
1091B<above> the C<1;> on the last line):
1092
1093 #
1094 # Enable automatic date handling
1095 #
1096 __PACKAGE__->add_columns(
1097 "created",
1098 { data_type => 'datetime', set_on_create => 1 },
1099 "updated",
1100 { data_type => 'datetime', set_on_create => 1, set_on_update => 1 },
1101 );
1102
1103This will override the definition for these fields that Schema::Loader
1104placed at the top of the file. The C<set_on_create> and
1105C<set_on_update> options will cause DBIC to automatically update the
1106timestamps in these columns whenever a row is created or modified.
1107
1108To test this out, restart the development server using the
1109C<DBIC_TRACE=1> option:
1110
1111 DBIC_TRACE=1 script/myapp_server.pl
1112
1113Then enter the following URL into your web browser:
1114
1115 http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
1116
1117You should get the same "Book Created" screen we saw above. However,
1118if you now use the sqlite3 command-line tool to dump the C<books> table,
1119you will see that the new book we added has an appropriate date and
1120time entered for it (see the last line in the listing below):
1121
1122 sqlite3 myapp.db "select * from books"
acbd7bdd 1123 1|CCSP SNRS Exam Certification Guide|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1124 2|TCP/IP Illustrated, Volume 1|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1125 3|Internetworking with TCP/IP Vol.1|4|2009-03-08 16:26:35|2009-03-08 16:26:35
1126 4|Perl Cookbook|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1127 5|Designing with Web Standards|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1128 9|TCP/IP Illustrated, Vol 3|5|2009-03-08 16:26:35|2009-03-08 16:26:35
1129 10|TCPIP_Illustrated_Vol-2|5|2009-03-08 16:29:08|2009-03-08 16:29:08
1cde0fd6 1130
1131Notice in the debug log that the SQL DBIC generated has changed to
1132incorporate the datetime logic:
1133
1134 INSERT INTO books (created, rating, title, updated) VALUES (?, ?, ?, ?):
acbd7bdd 1135 '2009-03-08 16:29:08', '5', 'TCPIP_Illustrated_Vol-2', '2009-03-08 16:29:08'
1cde0fd6 1136 INSERT INTO book_authors (author_id, book_id) VALUES (?, ?): '4', '10'
1137
1138
1139=head2 Create a ResultSet Class
1140
8b8937d8 1141An often overlooked but extremely powerful features of DBIC is that it
1cde0fd6 1142allows you to supply your own subclasses of C<DBIx::Class::ResultSet>.
1143It allows you to pull complex and unsightly "query code" out of your
1144controllers and encapsulate it in a method of your ResultSet Class.
1145These "canned queries" in your ResultSet Class can then be invoked
1146via a single call, resulting in much cleaner and easier to read
1147controller code.
1148
1149To illustrate the concept with a fairly simple example, let's create a
1150method that returns books added in the last 10 minutes. Start by
1151making a directory where DBIC will look for our ResultSet Class:
1152
1153 mkdir lib/MyApp/Schema/ResultSet
1154
1155Then open C<lib/MyApp/Schema/ResultSet/Books.pm> and enter the following:
1156
1157 package MyApp::Schema::ResultSet::Books;
1158
1159 use strict;
1160 use warnings;
1161 use base 'DBIx::Class::ResultSet';
1162
1163 =head2 created_after
1164
1165 A predefined search for recently added books
1166
1167 =cut
1168
1169 sub created_after {
fadc4ae7 1170 my ($self, $datetime) = @_;
1171
1172 my $date_str = $self->_source_handle->schema->storage
1173 ->datetime_parser->format_datetime($datetime);
1174
1175 return $self->search({
1176 created => { '>' => $date_str }
1177 });
1cde0fd6 1178 }
1179
1180 1;
1181
1182Then we need to tell the Result Class to to treat this as a ResultSet
1183Class. Open C<lib/MyApp/Schema/Result/Books.pm> and add the following
1184above the "C<1;>" at the bottom of the file:
1185
1186 #
1187 # Set ResultSet Class
1188 #
1189 __PACKAGE__->resultset_class('MyApp::Schema::ResultSet::Books');
1190
1191Then add the following method to the C<lib/MyApp/Controller/Books.pm>:
1192
1193 =head2 list_recent
1194
1195 List recently created books
1196
1197 =cut
1198
1199 sub list_recent :Chained('base') :PathPart('list_recent') :Args(1) {
1200 my ($self, $c, $mins) = @_;
1201
1202 # Retrieve all of the book records as book model objects and store in the
1203 # stash where they can be accessed by the TT template, but only
1204 # retrieve books created within the last $min number of minutes
1205 $c->stash->{books} = [$c->model('DB::Books')
1206 ->created_after(DateTime->now->subtract(minutes => $mins))];
1207
1208 # Set the TT template to use. You will almost always want to do this
1209 # in your action methods (action methods respond to user input in
1210 # your controllers).
1211 $c->stash->{template} = 'books/list.tt2';
1212 }
1213
1214Now start the development server with C<DBIC_TRACE=1> and try
1215different values for the minutes argument (the final number value) for
1216the URL C<http://localhost:3000/books/list_recent/10>. For example,
1217this would list all books added in the last fifteen minutes:
1218
1219 http://localhost:3000/books/list_recent/15
1220
1221Depending on how recently you added books, you might want to
1222try a higher or lower value.
1223
1224
1225=head2 Chaining ResultSets
1226
1227One of the most helpful and powerful features in DBIC is that it
1228allows you to "chain together" a series of queries (note that this has
1229nothing to do with the "Chained Dispatch" for Catalyst that we were
1230discussing above). Because each ResultSet returns another ResultSet,
1231you can take an initial query and immediately feed that into a second
1232query (and so on for as many queries you need). And, because this
1233technique carries over to the ResultSet Class feature we implemented
1234in the previous section for our "canned search", we can combine the
1235two capabilities. For example, let's add an action to our C<Books>
1236controller that lists books that are both recent I<and> have "TCP" in
1237the title. Open up C<lib/MyApp/Controller/Books.pm> and add the
1238following method:
1239
acbd7bdd 1240 =head2 list_recent_tcp
1cde0fd6 1241
1242 List recently created books
1243
1244 =cut
1245
1246 sub list_recent_tcp :Chained('base') :PathPart('list_recent_tcp') :Args(1) {
1247 my ($self, $c, $mins) = @_;
1248
1249 # Retrieve all of the book records as book model objects and store in the
1250 # stash where they can be accessed by the TT template, but only
1251 # retrieve books created within the last $min number of minutes
1252 # AND that have 'TCP' in the title
1253 $c->stash->{books} = [$c->model('DB::Books')
1254 ->created_after(DateTime->now->subtract(minutes => $mins))
1255 ->search({title => {'like', '%TCP%'}})
1256 ];
1257
1258 # Set the TT template to use. You will almost always want to do this
1259 # in your action methods (action methods respond to user input in
1260 # your controllers).
1261 $c->stash->{template} = 'books/list.tt2';
1262 }
1263
1264To try this out, restart the development server with:
1265
1266 DBIC_TRACE=1 script/myapp_server.pl
1267
1268And enter the following URL into your browser:
1269
1270 http://localhost:3000/books/list_recent_tcp/100
1271
1272And you should get a list of books added in the last 100 minutes that
1273contain the string "TCP" in the title. However, if you look at all
1274books within the last 100 minutes, you should get a longer list
1275(again, you might have to adjust the number of minutes depending on
1276how recently you added books to your database):
1277
1278 http://localhost:3000/books/list_recent/100
1279
1280Take a look at the DBIC_TRACE output in the development server log for
1281the first URL and you should see something similar to the following:
1282
1283 SELECT me.id, me.title, me.rating, me.created, me.updated FROM books me
acbd7bdd 1284 WHERE ( ( ( title LIKE ? ) AND ( created > ? ) ) ): '%TCP%', '2009-03-08 14:52:54'
1cde0fd6 1285
1286However, let's not pollute our controller code with this raw "TCP"
1287query -- it would be cleaner to encapsulate that code in a method on
1288our ResultSet Class. To do this, open
1289C<lib/MyApp/Schema/ResultSet/Books.pm> and add the following method:
1290
1291 =head2 title_like
1292
1293 A predefined search for books with a 'LIKE' search in the string
1294
1295 =cut
1296
1297 sub title_like {
fadc4ae7 1298 my ($self, $title_str) = @_;
1cde0fd6 1299
fadc4ae7 1300 return $self->search({
1301 title => { 'like' => "%$title_str%" }
1302 });
1cde0fd6 1303 }
1304
1305We defined the search string as C<$title_str> to make the method more
1306flexible. Now update the C<list_recent_tcp> method in
1307C<lib/MyApp/Controller/Books.pm> to match the following (we have
1308replaced the C<-E<gt>search> line with the C<-E<gt>title_like> line
1309shown here -- the rest of the method should be the same):
1310
1311 =head2 list_recent_tcp
1312
1313 List recently created books
1314
1315 =cut
1316
1317 sub list_recent_tcp :Chained('base') :PathPart('list_recent_tcp') :Args(1) {
1318 my ($self, $c, $mins) = @_;
1319
1320 # Retrieve all of the book records as book model objects and store in the
1321 # stash where they can be accessed by the TT template, but only
1322 # retrieve books created within the last $min number of minutes
1323 # AND that have 'TCP' in the title
1324 $c->stash->{books} = [$c->model('DB::Books')
1325 ->created_after(DateTime->now->subtract(minutes => $mins))
1326 ->title_like('TCP')
1327 ];
1328
1329 # Set the TT template to use. You will almost always want to do this
1330 # in your action methods (action methods respond to user input in
1331 # your controllers).
1332 $c->stash->{template} = 'books/list.tt2';
1333 }
1334
1335Then restart the development server and try out the C<list_recent_tcp>
1336and C<list_recent> URL as we did above. It should work just the same,
1337but our code is obviously cleaner and more modular, while also being
1338more flexible at the same time.
1339
1340
1341=head2 Adding Methods to Result Classes
1342
1343In the previous two sections we saw a good example of how we could use
1344DBIC ResultSet Classes to clean up our code for an entire query (for
1345example, our "canned searches" that filtered the entire query). We
1346can do a similar improvement when working with individual rows as
1347well. Whereas the ResultSet construct is used in DBIC to correspond
1348to an entire query, the Result Class construct is used to represent a
1349row. Therefore, we can add row-specific "helper methods" to our Result
1350Classes stored in C<lib/MyApp/Schema/Result/>. For example, open
1351C<lib/MyApp/Schema/Result/Authors.pm> and add the following method
1352(as always, it must be above the closing "C<1;>"):
1353
1354 #
1355 # Helper methods
1356 #
1357 sub full_name {
1358 my ($self) = @_;
1359
1360 return $self->first_name . ' ' . $self->last_name;
1361 }
1362
1363This will allow us to conveniently retrieve both the first and last
1364name for an author in one shot. Now open C<root/src/books/list.tt2>
1365and change the definition of C<tt_authors> from this:
1366
acbd7bdd 1367 ...
1cde0fd6 1368 [% tt_authors = [ ];
1369 tt_authors.push(author.last_name) FOREACH author = book.authors %]
acbd7bdd 1370 ...
1cde0fd6 1371
1372to:
1373
acbd7bdd 1374 ...
1cde0fd6 1375 [% tt_authors = [ ];
1376 tt_authors.push(author.full_name) FOREACH author = book.authors %]
acbd7bdd 1377 ...
1cde0fd6 1378
1379(Only C<author.last_name> was changed to C<author.full_name> -- the
1380rest of the file should remain the same.)
1381
1382Now restart the development server and go to the standard book list
1383URL:
1384
1385 http://localhost:3000/books/list
1386
1387The "Author(s)" column will now contain both the first and last name.
1388And, because the concatenation logic was encapsulated inside our
1389Result Class, it keeps the code inside our .tt template nice and clean
1390(remember, we want the templates to be as close to pure HTML markup as
1391possible). Obviously, this capability becomes even more useful as you
1392use to to remove even more complicated row-specific logic from your
1393templates!
1394
1395
d442cc9f 1396=head1 AUTHOR
1397
1398Kennedy Clark, C<hkclark@gmail.com>
1399
1400Please report any errors, issues or suggestions to the author. The
1401most recent version of the Catalyst Tutorial can be found at
82ab4bbf 1402L<http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/>.
d442cc9f 1403
45c7830f 1404Copyright 2006-2008, Kennedy Clark, under Creative Commons License
95674086 1405(L<http://creativecommons.org/licenses/by-sa/3.0/us/>).