fixup to Catalyst::Utils::home
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Tutorial / BasicCRUD.pod
CommitLineData
4d583dd8 1=head1 NAME
2
64ccd8a8 3Catalyst::Manual::Tutorial::BasicCRUD - Catalyst Tutorial - Part 3: Basic CRUD
4d583dd8 4
5
6=head1 OVERVIEW
7
8This is B<Part 3 of 9> for the Catalyst tutorial.
9
64ccd8a8 10L<Tutorial Overview|Catalyst::Manual::Tutorial>
4d583dd8 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
24B<Basic CRUD>
25
26=item 4
27
28L<Authentication|Catalyst::Manual::Tutorial::Authentication>
29
30=item 5
31
32L<Authorization|Catalyst::Manual::Tutorial::Authorization>
33
34=item 6
35
36L<Debugging|Catalyst::Manual::Tutorial::Debugging>
37
38=item 7
39
40L<Testing|Catalyst::Manual::Tutorial::Testing>
41
42=item 8
43
44L<AdvancedCRUD|Catalyst::Manual::Tutorial::AdvancedCRUD>
45
46=item 9
47
48L<Appendicies|Catalyst::Manual::Tutorial::Appendicies>
49
50=back
51
52
53
54=head1 DESCRIPTION
55
64ccd8a8 56This part of the tutorial builds on the fairly primitive application
57created in Part 2 to add basic support for Create, Read, Update, and
58Delete (CRUD) of C<Book> objects. Note that the 'list' function in Part
71dedf57 592 already implements the Read portion of CRUD (although Read normally
64ccd8a8 60refers to reading a single object; you could implement full read
61functionality using the techniques introduced below). This section will
62focus on the Create and Delete aspects of CRUD. More advanced
63capabilities, including full Update functionality, will be addressed in
64Part 8.
4d583dd8 65
64ccd8a8 66B<TIP>: Note that all of the code for this part of the tutorial can be
67pulled from the Catalyst Subversion repository in one step with the
68following command:
4d583dd8 69
70 svn checkout http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial@###
71 IMPORTANT: Does not work yet. Will be completed for final version.
72
73
4d583dd8 74=head1 FORMLESS SUBMISSION
75
64ccd8a8 76Our initial attempt at object creation will utilize the "URL arguments"
77feature of Catalyst (we will employ the more common form-based
78submission in the sections that follow).
4d583dd8 79
80
81=head2 Include a Create Action in the Books Controller
82
83Edit C<lib/MyApp/Controller/Books.pm> and enter the following method:
84
85 =head2 url_create
86
71dedf57 87 Create a book with the supplied title, rating, and author
4d583dd8 88
89 =cut
90
91 sub url_create : Local {
71dedf57 92 # In addition to self & context, get the title, rating, &
93 # author_id args from the URL. Note that Catalyst automatically
94 # puts extra information after the "/<controller_name>/<action_name/"
95 # into @_
4d583dd8 96 my ($self, $c, $title, $rating, $author_id) = @_;
97
98 # Call create() on the book model object. Pass the table
99 # columns/field values we want to set as hash values
100 my $book = $c->model('MyAppDB::Book')->create({
5c1f2a06 101 title => $title,
102 rating => $rating
4d583dd8 103 });
104
105 # Add a record to the join table for this book, mapping to
106 # appropriate author
107 $book->add_to_book_authors({author_id => $author_id});
108 # Note: Above is a shortcut for this:
109 # $book->create_related('book_authors', {author_id => $author_id});
110
111 # Assign the Book object to the stash for display in the view
112 $c->stash->{book} = $book;
113
114 # This is a hack to disable XSUB processing in Data::Dumper
115 # (it's used in the view). This is a work-around for a bug in
116 # the interaction of some versions or Perl, Data::Dumper & DBIC.
117 # You won't need this if you aren't using Data::Dumper (or if
118 # you are running DBIC 0.06001 or greater), but adding it doesn't
119 # hurt anything either.
120 $Data::Dumper::Useperl = 1;
121
122 # Set the TT template to use
123 $c->stash->{template} = 'books/create_done.tt2';
124 }
125
64ccd8a8 126Notice that Catalyst takes "extra slash-separated information" from the
127URL and passes it as arguments in C<@_>. The C<url_create> action then
128uses a simple call to the DBIC C<create> method to add the requested
129information to the database (with a separate call to
130C<add_to_book_authors> to update the join table). As do virtually all
131controller methods (at least the ones that directly handle user input),
132it then sets the template that should handle this request.
4d583dd8 133
134
135=head2 Include a Template for the C<url_create> Action:
136
137Edit C<root/src/books/create_done.tt2> and then enter:
138
139 [% # Use the TT Dumper plugin to Data::Dumper variables to the browser -%]
140 [% # Not a good idea for production use, though. :-) 'Indent=1' is -%]
141 [% # optional, but prevents "massive indenting" of deeply nested objects -%]
142 [% USE Dumper(Indent=1) -%]
143
5c1f2a06 144 [% # Set the page title. META can 'go back' and set values in templates -%]
145 [% # that have been processed 'before' this template (here it's for -%]
146 [% # root/lib/site/html and root/lib/site/header). Note that META on -%]
147 [% # simple strings (e.g., no variable interpolation). -%]
4d583dd8 148 [% META title = 'Book Created' %]
149
150 [% # Output information about the record that was added. Note use -%]
151 [% # of 'first' to only list the first author (if > 1 author). -%]
152 <p>Added book '[% book.title %]' by '[% book.authors.first.last_name %]'
153 with a rating of [% book.rating %].</p>
154
155 [% # Provide a link back to the list page -%]
156 [% # 'uri_for()' builds a full URI; e.g., 'http://localhost:3000/books/list' -%]
157 <p><a href="[% Catalyst.uri_for('/books/list') %]">Return to list</a></p>
158
71dedf57 159 [% # Try out the TT Dumper (for development only!) -%]
4d583dd8 160 <pre>
161 Dump of the 'book' variable:
162 [% Dumper.dump(book) %]
163 </pre>
164
71dedf57 165The TT C<USE> directive allows access to a variety of plugin modules (TT
166plugins, that is, not Catalyst plugins) to add extra functionality to
167the base TT capabilities. Here, the plugin allows L<Data::Dumper>
168"pretty printing" of objects and variables. Other than that, the rest
169of the code should be familiar from the examples in Part 2.
4d583dd8 170
64ccd8a8 171B<IMPORTANT NOTE> As mentioned earlier, the C<MyApp::View::TT.pm> view
172class created by TTSite redefines the name used to access the Catalyst
173context object in TT templates from the usual C<c> to C<Catalyst>.
4d583dd8 174
4d583dd8 175=head2 Try the C<url_create> Feature
176
64ccd8a8 177If the application is still running from before, use C<Ctrl-C> to kill
71dedf57 178it. Then restart the server:
4d583dd8 179
180 $ script/myapp_server.pl
181
64ccd8a8 182Note that new path for C</books/url_create> appears in the startup debug
183output.
4d583dd8 184
64ccd8a8 185B<TIP>: You can use C<script/myapp_server.pl -r> to have the development
186server auto-detect changed files and reload itself (if your browser acts
187odd, you should also try throwing in a C<-k>). If you make changes to
71dedf57 188the TT templates only, you do not need to reload the development server
64ccd8a8 189(only changes to "compiled code" such as Controller and Model C<.pm>
190files require a reload).
4d583dd8 191
192Next, use your browser to enter the following URL:
193
194 http://localhost:3000/books/url_create/TCPIP_Illustrated_Vol-2/5/4
195
64ccd8a8 196Your browser should display " Added book 'TCPIP_Illustrated_Vol-2' by
197'Stevens' with a rating of 5." along with a dump of the new book model
198object. You should also see the following DBIC debug messages displayed
199in the development server log messages:
4d583dd8 200
201 INSERT INTO books (rating, title) VALUES (?, ?): `5', `TCPIP_Illustrated_Vol-2'
202 INSERT INTO book_authors (author_id, book_id) VALUES (?, ?): `4', `6'
203
64ccd8a8 204If you then click the "Return to list" link, you should find that there
205are now six books shown (if necessary, Shift-Reload your browser at the
206C</books/list> page).
4d583dd8 207
208
4d583dd8 209=head1 MANUALLY BUILDING A CREATE FORM
210
64ccd8a8 211Although the C<url_create> action in the previous step does begin to
212reveal the power and flexibility of both Catalyst and DBIC, it's
213obviously not a very realistic example of how users should be expected
214to enter data. This section begins to address that concern.
4d583dd8 215
216
217=head2 Add Method to Display The Form
218
219Edit C<lib/MyApp/Controller/Books.pm> and add the following method:
220
221 =head2 form_create
222
223 Display form to collect information for book to create
224
225 =cut
226
227 sub form_create : Local {
228 my ($self, $c) = @_;
229
230 # Set the TT template to use
231 $c->stash->{template} = 'books/form_create.tt2';
232 }
233
71dedf57 234This action simply invokes a view containing a book creation form.
4d583dd8 235
236=head2 Add a Template for the Form
237
238Open C<root/src/books/form_create.tt2> in your editor and enter:
239
5c1f2a06 240 [% META title = 'Manual Form Book Create' -%]
4d583dd8 241
242 <form method="post" action="[% Catalyst.uri_for('form_create_do') %]">
243 <table>
244 <tr><td>Title:</td><td><input type="text" name="title"></td></tr>
245 <tr><td>Rating:</td><td><input type="text" name="rating"></td></tr>
246 <tr><td>Author ID:</td><td><input type="text" name="author_id"></td></tr>
247 </table>
248 <input type="submit" name="Submit" value="Submit">
249 </form>
250
64ccd8a8 251Note that we have specified the target of the form data as
252C<form_create_do>, the method created in the section that follows.
4d583dd8 253
4d583dd8 254=head2 Add Method to Process Form Values and Update Database
255
64ccd8a8 256Edit C<lib/MyApp/Controller/Books.pm> and add the following method to
257save the form information to the databse:
4d583dd8 258
259 =head2 form_create_do
260
261 Take information from form and add to database
262
263 =cut
264
265 sub form_create_do : Local {
266 my ($self, $c) = @_;
267
268 # Retrieve the values from the form
269 my $title = $c->request->params->{title} || 'N/A';
270 my $rating = $c->request->params->{rating} || 'N/A';
271 my $author_id = $c->request->params->{author_id} || '1';
272
273 # Create the book
274 my $book = $c->model('MyAppDB::Book')->create({
275 title => $title,
276 rating => $rating,
277 });
278 # Handle relationship with author
279 $book->add_to_book_authors({author_id => $author_id});
280
281 # Store new model object in stash
282 $c->stash->{book} = $book;
283
71dedf57 284 # Avoid Data::Dumper issue mentioned earlier
4d583dd8 285 # You can probably omit this
286 $Data::Dumper::Useperl = 1;
287
288 # Set the TT template to use
289 $c->stash->{template} = 'books/create_done.tt2';
290 }
291
292
293=head2 Test Out The Form
294
71dedf57 295If the application is still running from before, use C<Ctrl-C> to kill
296it. Then restart the server:
4d583dd8 297
298 $ script/myapp_server.pl
299
64ccd8a8 300Point your browser to L<http://localhost:3000/books/form_create> and
301enter "TCP/IP Illustrated, Vol 3" for the title, a rating of 5, and an
302author ID of 4. You should then be forwarded to the same
303C<create_done.tt2> template seen in earlier examples. Finally, click
304"Return to list" to view the full list of books.
4d583dd8 305
64ccd8a8 306B<Note:> Having the user enter the primary key ID for the author is
71dedf57 307obviously crude; we will address this concern with a drop-down list in
308Part 8.
4d583dd8 309
310=head1 A SIMPLE DELETE FEATURE
311
64ccd8a8 312Turning out attention to the delete portion of CRUD, this section
313illustrates some basic techniques that can be used to remove information
314from the database.
4d583dd8 315
316
317=head2 Include a Delete Link in the List
318
64ccd8a8 319Edit C<root/src/books/list.tt2> and update it to the following (two
320sections have changed: 1) the additional '<th>Links</th>' table header,
321and 2) the four lines for the Delete link near the bottom).
4d583dd8 322
323 [% # This is a TT comment. The '-' at the end "chomps" the newline. You won't -%]
324 [% # see this "chomping" in your browser because HTML ignores blank lines, but -%]
325 [% # it WILL eliminate a blank line if you view the HTML source. It's purely -%]
326 [%- # optional, but both the beginning and the ending TT tags support chomping. -%]
327
328 [% # Provide a title to root/lib/site/header -%]
329 [% META title = 'Book List' -%]
330
331 <table>
332 <tr><th>Title</th><th>Rating</th><th>Author(s)</th><th>Links</th></tr>
333 [% # Display each book in a table row %]
334 [% FOREACH book IN books -%]
335 <tr>
336 <td>[% book.title %]</td>
337 <td>[% book.rating %]</td>
338 <td>
5c1f2a06 339 [% # First initialize a TT variable to hold a list. Then use a TT FOREACH -%]
340 [% # loop in 'side effect notation' to load just the last names of the -%]
341 [% # authors into the list. Note that we are making a bogus assignment to -%]
342 [% # the 'xx' vbl to avoid printing the size of the list after each push. -%]
343 [% tt_authors = [ ];
344 xx = tt_authors.push(author.last_name) FOREACH author = book.authors %]
345 [% # Now use a TT 'virtual method' to display the author count -%]
346 ([% tt_authors.size %])
347 [% # Use another TT virtual method to join the names with comma separators -%]
348 [% tt_authors.join(', ') %]
4d583dd8 349 </td>
350 <td>
351 [% # Add a link to delete a book %]
352 <a href="[% Catalyst.uri_for('delete/') _ book.id %]">Delete</a>
353 </td>
354 </tr>
355 [% END -%]
356 </table>
357
64ccd8a8 358The additional code is obviously designed to add a new column to the
359right side of the table with a C<Delete> "button" (for simplicity, links
360will be used instead of full HTML buttons).
4d583dd8 361
4d583dd8 362=head2 Add a Delete Action to the Controller
363
64ccd8a8 364Open C<lib/MyApp/Controller/Books.pm> in your editor and add the
365following method:
4d583dd8 366
367 =head2 Delete
368
369 Delete a book
370
371 =cut
372
373 sub delete : Local {
374 # $id = primary key of book to delete
375 my ($self, $c, $id) = @_;
376
377 # Search for the book and then delete it
378 $c->model('MyAppDB::Book')->search({id => $id})->delete_all;
379
380 # Set a status message to be displayed at the top of the view
381 $c->stash->{status_msg} = "Book deleted.";
382
383 # Forward to the list action/method in this controller
384 $c->forward('list');
385 }
386
64ccd8a8 387This method first deletes the book with the specified primary key ID.
388However, it also removes the corresponding entry from the
389C<book_authors> table. Note that C<delete_all> was used instead of
390C<delete>: whereas C<delete_all> also removes the join table entries in
391C<book_authors>, C<delete> does not.
4d583dd8 392
64ccd8a8 393Then, rather than forwarding to a "delete done" page as we did with the
394earlier create example, it simply sets the C<status_msg> to display a
395notification to the user as the normal list view is rendered.
4d583dd8 396
64ccd8a8 397The C<delete> action uses the context C<forward> method to return the
398user to the book list. The C<detach> method could have also been used.
399Whereas C<forward> I<returns> to the original action once it is
400completed, C<detach> does I<not> return. Other than that, the two are
401equivalent.
4d583dd8 402
64ccd8a8 403Another alternative to C<forward> would be to use
404C<$c-E<gt>response-E<gt>redirect($c-E<gt>uri_for('/books/list'))>. The
405C<forward> and C<redirect> operations differ in several important
406respects that stem from the fact that redirects cause the client browser
407to issue an entirely new HTTP request. In doing so, this results in a
408new URL showing in the browser window. And, because the stash
409information is reset for every request, the "Book deleted" message would
410not be displayed.
4d583dd8 411
412
413=head2 Try the Delete Feature
414
64ccd8a8 415If the application is still running from before, use C<Ctrl-C> to kill
416it. Then restart the server:
4d583dd8 417
418 $ script/myapp_server.pl
419
64ccd8a8 420Then point your browser to L<http://localhost:3000/books/list> and click
421the "Delete" link next to "TCPIP_Illustrated_Vol-2". A green "Book
422deleted" status message should display at the top of the page, along
423with a list of the six remaining books.
4d583dd8 424
a63e6e67 425
4d583dd8 426=head1 AUTHOR
427
428Kennedy Clark, C<hkclark@gmail.com>
429
430Please report any errors, issues or suggestions to the author.
431
64ccd8a8 432Copyright 2006, Kennedy Clark, under Creative Commons License
433(L<http://creativecommons.org/licenses/by-nc-sa/2.5/>).
4d583dd8 434