Remove C<> from =head line b/c they look ugly on CPAN
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / AdvancedCRUD / FormFu.pod
CommitLineData
b80f58e5 1=head1 NAME
2
4b4d3884 3Catalyst::Manual::Tutorial::AdvancedCRUD::FormFu - Catalyst Tutorial - Chapter 9: Advanced CRUD - FormFu
b80f58e5 4
5
6=head1 OVERVIEW
7
4b4d3884 8This is B<Chapter 9 of 10> for the Catalyst tutorial.
b80f58e5 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
24L<More Catalyst Basics|Catalyst::Manual::Tutorial::MoreCatalystBasics>
25
26=item 4
27
28L<Basic CRUD|Catalyst::Manual::Tutorial::BasicCRUD>
29
30=item 5
31
32L<Authentication|Catalyst::Manual::Tutorial::Authentication>
33
34=item 6
35
36L<Authorization|Catalyst::Manual::Tutorial::Authorization>
37
38=item 7
39
40L<Debugging|Catalyst::Manual::Tutorial::Debugging>
41
42=item 8
43
44L<Testing|Catalyst::Manual::Tutorial::Testing>
45
46=item 9
47
d682d02d 48B<Advanced CRUD::FormFu>
b80f58e5 49
50=item 10
51
52L<Appendices|Catalyst::Manual::Tutorial::Appendices>
53
54=back
55
56
57=head1 DESCRIPTION
58
cca5cd98 59This portion of the tutorial explores L<HTML::FormFu|HTML::FormFu> and
60how it can be used to manage forms, perform validation of form input,
ab0db558 61as well as save and restore data to/from the database. This was written
cf582e91 62using HTML::FormFu version 0.03007.
cca5cd98 63
64See
65L<Catalyst::Manual::Tutorial::AdvancedCRUD|Catalyst::Manual::Tutorial::AdvancedCRUD>
66for additional form management options other than
67L<HTML::FormFu|HTML::FormFu>.
68
69
8a472b34 70=head1 Install HTML::FormFu
cca5cd98 71
acbd7bdd 72If you are following along in Debian 5, it turns out that some of the
73modules we need are not yet available as Debian packages at the time
74this was written. To install it with a combination of Debian packages
75and traditional CPAN modules, first use C<aptitude> to install most of
76the modules:
cca5cd98 77
acbd7bdd 78we need to install the
79L<HTML::FormFu|HTML::FormFu> package:
cca5cd98 80
acbd7bdd 81 sudo aptitude -y install libhtml-formfu-perl libmoose-perl \
82 libregexp-assemble-perl libhtml-formfu-model-dbic-perl
83
028b4e1a 84 ...
85
acbd7bdd 86 sudo aptitude clean
87
88Then use the following command to install directly from CPAN the modules
89that aren't available as Debian packages:
ab0db558 90
acbd7bdd 91 sudo cpan Catalyst::Component::InstancePerContext Catalyst::Controller::HTML::FormFu
cca5cd98 92
93
8a472b34 94=head1 HTML::FormFu FORM CREATION
cca5cd98 95
96This section looks at how L<HTML::FormFu|HTML::FormFu> can be used to
4b4d3884 97add additional functionality to the manually created form from Chapter 4.
cca5cd98 98
99
8a472b34 100=head2 Inherit From Catalyst::Controller::HTML::FormFu
cca5cd98 101
102First, change your C<lib/MyApp/Controller/Books.pm> to inherit from
103L<Catalyst::Controller::HTML::FormFu|Catalyst::Controller::HTML::FormFu>
8a7951ae 104by changing the C<use parent> line from the default of:
cca5cd98 105
ab0db558 106 use parent 'Catalyst::Controller';
cca5cd98 107
108to use the FormFu base controller class:
109
ab0db558 110 use parent 'Catalyst::Controller::HTML::FormFu';
cca5cd98 111
112
113=head2 Add Action to Display and Save the Form
114
115Open C<lib/MyApp/Controller/Books.pm> in your editor and add the
116following method:
117
d682d02d 118 =head2 formfu_create
cca5cd98 119
59d6a035 120 Use HTML::FormFu to create a new book
cca5cd98 121
122 =cut
123
ccc9b2bc 124 sub formfu_create :Chained('base') :PathPart('formfu_create') :Args(0) :FormConfig {
cca5cd98 125 my ($self, $c) = @_;
126
127 # Get the form that the :FormConfig attribute saved in the stash
128 my $form = $c->stash->{form};
129
166c90a0 130 # Check if the form has been submitted (vs. displaying the initial
131 # form) and if the data passed validation. "submitted_and_valid"
cca5cd98 132 # is shorthand for "$form->submitted && !$form->has_errors"
133 if ($form->submitted_and_valid) {
134 # Create a new book
135 my $book = $c->model('DB::Books')->new_result({});
136 # Save the form data for the book
aee27483 137 $form->model->update($book);
cca5cd98 138 # Set a status message for the user
139 $c->flash->{status_msg} = 'Book created';
140 # Return to the books list
e075db0c 141 $c->response->redirect($c->uri_for($self->action_for('list')));
cca5cd98 142 $c->detach;
9cb64a37 143 } else {
144 # Get the authors from the DB
acbd7bdd 145 my @author_objs = $c->model("DB::Authors")->all();
9cb64a37 146 # Create an array of arrayrefs where each arrayref is an author
147 my @authors;
acbd7bdd 148 foreach (sort {$a->last_name cmp $b->last_name} @author_objs) {
9cb64a37 149 push(@authors, [$_->id, $_->last_name]);
150 }
151 # Get the select added by the config file
152 my $select = $form->get_element({type => 'Select'});
153 # Add the authors to it
154 $select->options(\@authors);
155 }
156
cca5cd98 157 # Set the template
d682d02d 158 $c->stash->{template} = 'books/formfu_create.tt2';
cca5cd98 159 }
160
161
162=head2 Create a Form Config File
163
164Although C<HTML::FormFu> supports any configuration file handled by
165L<Config::Any|Config::Any>, most people tend to use YAML. First
166create a directory to hold your form configuration files:
167
168 mkdir -p root/forms/books
169
d682d02d 170Then create the file C<root/forms/books/formfu_create.yml> and enter the
cca5cd98 171following text:
172
173 ---
9cb64a37 174 # indicator is the field that is used to test for form submission
cca5cd98 175 indicator: submit
9cb64a37 176 # Start listing the form elements
cca5cd98 177 elements:
9cb64a37 178 # The first element will be a text field for the title
cca5cd98 179 - type: Text
180 name: title
181 label: Title
9cb64a37 182 # This is an optional 'mouse over' title pop-up
cca5cd98 183 attributes:
184 title: Enter a book title here
d682d02d 185
186 # Another text field for the numeric rating
cca5cd98 187 - type: Text
188 name: rating
189 label: Rating
190 attributes:
191 title: Enter a rating between 1 and 5 here
d682d02d 192
193 # Add a drop-down list for the author selection. Note that we will
194 # dynamically fill in all the authors from the controller but we
195 # could manually set items in the drop-list by adding this YAML code:
196 # options:
197 # - [ '1', 'Bastien' ]
198 # - [ '2', 'Nasseh' ]
199 - type: Select
200 name: authors
201 label: Author
202
9cb64a37 203 # The submit button
cca5cd98 204 - type: Submit
205 name: submit
206 value: Submit
207
0171092f 208B<NOTE:> Copying and pasting YAML from perl documentation is sometimes
1fba2369 209tricky. See the L<Config::General Config for this tutorial> section of
210this document for a more foolproof config format.
0171092f 211
cca5cd98 212
213=head2 Update the CSS
214
ab0db558 215Edit C<root/static/css/main.css> and add the following lines to the bottom of
cca5cd98 216the file:
217
acbd7bdd 218 ...
d682d02d 219 input {
cca5cd98 220 display: block;
221 }
d682d02d 222 select {
cca5cd98 223 display: block;
224 }
d682d02d 225 .submit {
226 padding-top: .5em;
227 display: block;
cca5cd98 228 }
229
d682d02d 230These changes will display form elements vertically. Note that the
231existing definition of the C<.error> class is pulling the color scheme
232settings from the C<root/lib/config/col> file that was created by the
233TTSite helper. This allows control over the CSS color settings from a
234single location.
cca5cd98 235
236
237=head2 Create a Template Page To Display The Form
238
d682d02d 239Open C<root/src/books/formfu_create.tt2> in your editor and enter the following:
cca5cd98 240
241 [% META title = 'Create/Update Book' %]
242
243 [%# Render the HTML::FormFu Form %]
244 [% form %]
245
e075db0c 246 <p><a href="[% c.uri_for(c.controller.action_for('list')) %]">Return to book list</a></p>
cca5cd98 247
248
249=head2 Add Links for Create and Update via C<HTML::FormFu>
250
251Open C<root/src/books/list.tt2> in your editor and add the following to
252the bottom of the existing file:
253
acbd7bdd 254 ...
cca5cd98 255 <p>
256 HTML::FormFu:
e075db0c 257 <a href="[% c.uri_for(c.controller.action_for('formfu_create')) %]">Create</a>
cca5cd98 258 </p>
259
d682d02d 260This adds a new link to the bottom of the book list page that we can
261use to easily launch our HTML::FormFu-based form.
262
cca5cd98 263
8a472b34 264=head2 Test The HTML::FormFu Create Form
cca5cd98 265
266Press C<Ctrl-C> to kill the previous server instance (if it's still
267running) and restart it:
268
269 $ script/myapp_server.pl
270
0909d46f 271Login as C<test01> (password: mypass). Once at the Book List page,
272click the new HTML::FormFu "Create" link at the bottom to display the
273form. Fill in the following values: Title = "Internetworking with
274TCP/IP Vol. II", Rating = "4", and Author = "Comer". Click Submit,
275and you will be returned to the Book List page with a "Book created"
276status message displayed.
d682d02d 277
278Also note that this implementation allows you to can create books with
279bogus information. Although we have constrained the authors with the
59d6a035 280drop-down list (note that this isn't bulletproof because we still have
281not prevented a user from "hacking" the form to specify other values),
282there are no restrictions on items such as the length of the title (for
283example, you can create a one-letter title) and value for the rating
284(you can use any number you want, and even non-numeric values with
285SQLite). The next section will address this concern.
cca5cd98 286
287B<Note:> Depending on the database you are using and how you established
288the columns in your tables, the database could obviously provide various
289levels of "type enforcement" on your data. The key point being made in
290the previous paragraph is that the I<web application> itself is not
291performing any validation.
292
293
8a472b34 294=head1 HTML::FormFu VALIDATION AND FILTERING
cca5cd98 295
d682d02d 296Although the use of L<HTML::FormFu|HTML::FormFu> in the previous section
297did provide an automated mechanism to build the form, the real power of
298this module stems from functionality that can automatically validate and
299filter the user input. Validation uses constraints to be sure that
300users input appropriate data (for example, that the email field of a
301form contains a valid email address). Filtering can also be used to
302remove extraneous whitespace from fields or to escape meta-characters in
303user input.
cca5cd98 304
cca5cd98 305
d682d02d 306=head2 Add Constraints
cca5cd98 307
d682d02d 308Open C<root/forms/books/formfu_create.yml> in your editor and update it
cca5cd98 309to match:
310
311 ---
9cb64a37 312 # indicator is the field that is used to test for form submission
cca5cd98 313 indicator: submit
9cb64a37 314 # Start listing the form elements
cca5cd98 315 elements:
9cb64a37 316 # The first element will be a text field for the title
cca5cd98 317 - type: Text
318 name: title
319 label: Title
9cb64a37 320 # This is an optional 'mouse over' title pop-up
cca5cd98 321 attributes:
322 title: Enter a book title here
9cb64a37 323 # Add constraints for the field
cca5cd98 324 constraints:
59d6a035 325 # Force the length to be between 5 and 40 chars
cca5cd98 326 - type: Length
d682d02d 327 min: 5
59d6a035 328 max: 40
9cb64a37 329 # Override the default of 'Invalid input'
59d6a035 330 message: Length must be between 5 and 40 characters
ab0db558 331
d682d02d 332 # Another text field for the numeric rating
cca5cd98 333 - type: Text
334 name: rating
335 label: Rating
336 attributes:
337 title: Enter a rating between 1 and 5 here
d682d02d 338 # Use Filter to clean up the input data
ab0db558 339 # Could use 'NonNumeric' below, but since Filters apply *before*
340 # constraints, it would conflict with the 'Integer' constraint below.
341 # So let's skip this and just use the constraint.
342 #filter:
d682d02d 343 # Remove everything except digits
ab0db558 344 #- NonNumeric
d682d02d 345 # Add constraints to the field
cca5cd98 346 constraints:
9cb64a37 347 # Make sure it's a number
ab0db558 348 - type: Integer
349 message: "Required. Digits only, please."
350 # Check the min & max values
351 - type: Range
352 min: 1
353 max: 5
354 message: "Must be between 1 and 5."
d682d02d 355
356 # Add a select list for the author selection. Note that we will
357 # dynamically fill in all the authors from the controller but we
358 # could manually set items in the select by adding this YAML code:
359 # options:
360 # - [ '1', 'Bastien' ]
361 # - [ '2', 'Nasseh' ]
362 - type: Select
363 name: authors
364 label: Author
365 # Convert the drop-down to a multi-select list
366 multiple: 1
367 # Display 3 entries (user can scroll to see others)
368 size: 3
369 # One could argue we don't need to do filters or constraints for
370 # a select list, but it's smart to do validation and sanity
371 # checks on this data in case a user "hacks" the input
d682d02d 372 # Add constraints to the field
373 constraints:
d682d02d 374 # Make sure it's a number
375 - Integer
376
9cb64a37 377 # The submit button
cca5cd98 378 - type: Submit
379 name: submit
380 value: Submit
d682d02d 381
f279297a 382 # Global filters and constraints.
cca5cd98 383 constraints:
f279297a 384 # The user cannot leave any fields blank
385 - Required
ab0db558 386 # If not all fields are required, move the Required constraint to the
387 # fields that are
f279297a 388 filter:
389 # Remove whitespace at both ends
390 - TrimEdges
391 # Escape HTML characters for safety
392 - HTMLEscape
cca5cd98 393
0171092f 394B<NOTE:> Copying and pasting YAML from perl documentation is sometimes
1fba2369 395tricky. See the L<Config::General Config for this tutorial> section of
396this document for a more foolproof config format.
0171092f 397
d682d02d 398The main changes are:
399
400=over 4
401
402=item *
403
404The C<Select> element for C<authors> is changed from a single-select
405drop-down to a multi-select list by adding configuration for the
406C<multiple> and C<size> options in C<formfu_create.yml>.
407
408=item *
409
410Constraints are added to provide validation of the user input. See
411L<HTML::FormFu::Constraint|HTML::FormFu::Constraint> for other
412constraints that are available.
413
414=item *
415
416A variety of filters are run on every field to remove and escape
417unwanted input. See L<HTML::FormFu::Filter|HTML::FormFu::Filter>
418for more filter options.
419
420=back
421
422
423=head2 Try Out the Updated Form
424
425Press C<Ctrl-C> to kill the previous server instance (if it's still
426running) and restart it:
427
428 $ script/myapp_server.pl
429
59d6a035 430Make sure you are still logged in as C<test01> and try adding a book
431with various errors: title less than 5 characters, non-numeric rating, a
432rating of 0 or 6, etc. Also try selecting one, two, and zero authors.
433When you click Submit, the HTML::FormFu C<constraint> items will
434validate the logic and insert feedback as appropriate. Try adding blank
435spaces at the front or the back of the title and note that it will be
436removed.
437
438
439=head1 CREATE AND UPDATE/EDIT ACTION
440
441Let's expand the work done above to add an edit action. First, open
442C<lib/MyApp/Controller/Books.pm> and add the following method to the
443bottom:
444
445 =head2 formfu_edit
446
447 Use HTML::FormFu to update an existing book
448
449 =cut
450
acbd7bdd 451 sub formfu_edit :Chained('object') :PathPart('formfu_edit') :Args(0)
452 :FormConfig('books/formfu_create.yml') {
ccc9b2bc 453 my ($self, $c) = @_;
59d6a035 454
faa6f5bc 455 # Get the specified book already saved by the 'object' method
ccc9b2bc 456 my $book = $c->stash->{object};
59d6a035 457
458 # Make sure we were able to get a book
459 unless ($book) {
460 $c->flash->{error_msg} = "Invalid book -- Cannot edit";
e075db0c 461 $c->response->redirect($c->uri_for($self->action_for('list')));
59d6a035 462 $c->detach;
463 }
464
465 # Get the form that the :FormConfig attribute saved in the stash
466 my $form = $c->stash->{form};
467
166c90a0 468 # Check if the form has been submitted (vs. displaying the initial
469 # form) and if the data passed validation. "submitted_and_valid"
59d6a035 470 # is shorthand for "$form->submitted && !$form->has_errors"
471 if ($form->submitted_and_valid) {
472 # Save the form data for the book
aee27483 473 $form->model->update($book);
59d6a035 474 # Set a status message for the user
475 $c->flash->{status_msg} = 'Book edited';
476 # Return to the books list
e075db0c 477 $c->response->redirect($c->uri_for($self->action_for('list')));
59d6a035 478 $c->detach;
479 } else {
480 # Get the authors from the DB
acbd7bdd 481 my @author_objs = $c->model("DB::Authors")->all();
59d6a035 482 # Create an array of arrayrefs where each arrayref is an author
483 my @authors;
ccc9b2bc 484 foreach (sort {$a->last_name cmp $b->last_name} @author_objs) {
59d6a035 485 push(@authors, [$_->id, $_->last_name]);
486 }
487 # Get the select added by the config file
488 my $select = $form->get_element({type => 'Select'});
489 # Add the authors to it
490 $select->options(\@authors);
491 # Populate the form with existing values from DB
aee27483 492 $form->model->default_values($book);
59d6a035 493 }
494
495 # Set the template
496 $c->stash->{template} = 'books/formfu_create.tt2';
497 }
498
499Most of this code should look familiar to what we used in the
500C<formfu_create> method (in fact, we should probably centralize some of
501the common code in separate methods). The main differences are:
502
503=over 4
504
505=item *
506
ccc9b2bc 507We have to manually specify the name of the FormFu .yml file as an
508argument to C<:FormConfig> because the name can no longer be
509automatically deduced from the name of our action/method (by default,
510FormFu would look for a file named C<books/formfu_edit.yml>).
59d6a035 511
512=item *
513
ccc9b2bc 514We load the book object from the stash (found using the $id passed to
515the Chained object method)
59d6a035 516
517=item *
518
ccc9b2bc 519We use C<$id> to look up the existing book from the database.
520
521=item *
59d6a035 522
ccc9b2bc 523We make sure the book lookup returned a valid book. If not, we set
524the error message and return to the book list.
525
59d6a035 526=item *
527
528If the form has been submitted and passes validation, we skip creating a
aee27483 529new book and just use C<$form-E<gt>model-E<gt>update> to update the existing
59d6a035 530book.
531
532=item *
533
534If the form is being displayed for the first time (or has failed
535validation and it being redisplayed), we use
aee27483 536 C<$form-E<gt>model-E<gt>default_values> to populate the form with data from the
59d6a035 537database.
538
539=back
540
541Then, edit C<root/src/books/list.tt2> and add a new link below the
542existing "Delete" link that allows us to edit/update each existing book.
543The last E<lt>tdE<gt> cell in the book list table should look like the
544following:
545
ab0db558 546 ...
59d6a035 547 <td>
548 [% # Add a link to delete a book %]
acbd7bdd 549 <a href="[% c.uri_for(c.controller.action_for('delete'), [book.id]) %]">Delete</a>
59d6a035 550 [% # Add a link to edit a book %]
acbd7bdd 551 <a href="[% c.uri_for(c.controller.action_for('formfu_edit'), [book.id]) %]">Edit</a>
59d6a035 552 </td>
ab0db558 553 ...
554
555B<Note:> Only add two lines (the "Add a link to edit a book" comment
556and the href for C<formfu_edit>). Make sure you add it below the
557existing C<delete> link.
59d6a035 558
559
560=head2 Try Out the Edit/Update Feature
561
562Press C<Ctrl-C> to kill the previous server instance (if it's still
563running) and restart it:
564
565 $ script/myapp_server.pl
566
567Make sure you are still logged in as C<test01> and go to the
568L<http://localhost:3000/books/list> URL in your browser. Click the
569"Edit" link next to "Internetworking with TCP/IP Vol. II", change the
570rating to a 3, the "II" at end of the title to the number "2", add
571Stevens as a co-author (control-click), and click Submit. You will then
572be returned to the book list with a "Book edited" message at the top in
573green. Experiment with other edits to various books.
d682d02d 574
8a472b34 575
5fe0e6dd 576=head2 More Things to Try
577
578You are now armed with enough knowledge to be dangerous. You can keep
579tweaking the example application; some things you might want to do:
580
581=over 4
582
583=item *
584
acbd7bdd 585Add an appropriate authorization check to the new Edit function.
5fe0e6dd 586
587=item *
588
589Cleanup the List page so that the Login link only displays when the user
590isn't logged in and the Logout link only displays when a user is logged
591in.
592
593=item *
594
595Add a more sensible policy for when and how users and admins can do
596things in the CRUD cycle.
597
598=item *
599
600Support the CRUD cycle for authors.
601
602=back
603
604Or you can proceed to write your own application, which is probably the
605real reason you worked through this Tutorial in the first place.
cca5cd98 606
8a472b34 607
1fba2369 608=head2 Config::General Config for this tutorial
609
610If you are having difficulty with YAML config above, please save the
611below into the file C<formfu_create.conf> and delete the
612C<formfu_create.yml> file. The below is in
613L<Config::General|Config::General> format which follows the syntax of
614Apache config files.
615
616 constraints Required
617 <elements>
1fba2369 618 <constraints>
619 min 5
620 max 40
621 type Length
622 message Length must be between 5 and 40 characters
623 </constraints>
624 filter TrimEdges
625 filter HTMLEscape
626 name title
627 type Text
628 label Title
629 <attributes>
630 title Enter a book title here
631 </attributes>
632 </elements>
633 <elements>
1fba2369 634 constraints Integer
635 filter TrimEdges
636 filter NonNumeric
637 name rating
638 type Text
639 label Rating
640 <attributes>
641 title Enter a rating between 1 and 5 here
642 </attributes>
643 </elements>
644 <elements>
645 constraints Integer
646 filter TrimEdges
647 filter HTMLEscape
648 name authors
649 type Select
650 label Author
651 multiple 1
652 size 3
653 </elements>
654 <elements>
655 value Submit
656 name submit
657 type Submit
658 </elements>
659 indicator submit
660
661
cca5cd98 662=head1 AUTHOR
663
664Kennedy Clark, C<hkclark@gmail.com>
665
666Please report any errors, issues or suggestions to the author. The
667most recent version of the Catalyst Tutorial can be found at
82ab4bbf 668L<http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.70/trunk/lib/Catalyst/Manual/Tutorial/>.
cca5cd98 669
51e85db7 670Copyright 2006-2008, Kennedy Clark, under Creative Commons License
671(L<http://creativecommons.org/licenses/by-sa/3.0/us/>).