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