no need to set resultset_class with load_namespaces, and a couple other minor changes
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / 03_MoreCatalystBasics.pod
CommitLineData
3533daff 1=head1 NAME
2
3ab6187c 3Catalyst::Manual::Tutorial::03_MoreCatalystBasics - Catalyst Tutorial - Chapter 3: More Catalyst Application Development Basics
3533daff 4
5
6=head1 OVERVIEW
7
4b4d3884 8This is B<Chapter 3 of 10> for the Catalyst tutorial.
3533daff 9
10L<Tutorial Overview|Catalyst::Manual::Tutorial>
11
12=over 4
13
14=item 1
15
3ab6187c 16L<Introduction|Catalyst::Manual::Tutorial::01_Intro>
3533daff 17
18=item 2
19
3ab6187c 20L<Catalyst Basics|Catalyst::Manual::Tutorial::02_CatalystBasics>
3533daff 21
22=item 3
23
3ab6187c 24B<03_More Catalyst Basics>
3533daff 25
26=item 4
27
3ab6187c 28L<Basic CRUD|Catalyst::Manual::Tutorial::04_BasicCRUD>
3533daff 29
30=item 5
31
3ab6187c 32L<Authentication|Catalyst::Manual::Tutorial::05_Authentication>
3533daff 33
34=item 6
35
3ab6187c 36L<Authorization|Catalyst::Manual::Tutorial::06_Authorization>
3533daff 37
38=item 7
39
3ab6187c 40L<Debugging|Catalyst::Manual::Tutorial::07_Debugging>
3533daff 41
42=item 8
43
3ab6187c 44L<Testing|Catalyst::Manual::Tutorial::08_Testing>
3533daff 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>
3533daff 53
54=back
55
56
57=head1 DESCRIPTION
58
4b4d3884 59This chapter of the tutorial builds on the work done in Chapter 2 to
60explore some features that are more typical of "real world" web
61applications. From this chapter of the tutorial onward, we will be
62building a simple book database application. Although the application
63will be too limited to be of use to anyone, it should provide a basic
64environment where we can explore a variety of features used in
65virtually all web applications.
3533daff 66
4d63a0d5 67You can check out the source code for this example from the Catalyst
68Subversion repository as per the instructions in
3ab6187c 69L<Catalyst::Manual::Tutorial::01_Intro|Catalyst::Manual::Tutorial::01_Intro>.
3533daff 70
a586a09f 71Please take a look at
3ab6187c 72L<Catalyst::Manual::Tutorial::01_Intro/CATALYST INSTALLATION> before
a586a09f 73doing the rest of this tutorial. Although the tutorial should work
74correctly under most any recent version of Perl running on any
75operating system, the tutorial has been written using Debian 5 and
76tested to be sure it runs correctly in this environment.
77
3533daff 78
79=head1 CREATE A NEW APPLICATION
80
1390ef0e 81The remainder of the tutorial will build an application called C<MyApp>.
82First use the Catalyst C<catalyst.pl> script to initialize the framework
83for the C<MyApp> application (make sure you aren't still inside the
4b4d3884 84directory of the C<Hello> application from the previous chapter of the
acbd7bdd 85tutorial or in a directory that already has a "MyApp" subdirectory):
3533daff 86
87 $ catalyst.pl MyApp
88 created "MyApp"
89 created "MyApp/script"
90 created "MyApp/lib"
91 created "MyApp/root"
92 ...
93 created "MyApp/script/myapp_create.pl"
444d6b27 94 Change to application directory and Run "perl Makefile.PL" to make sure your install is complete
3533daff 95 $ cd MyApp
96
4b4d3884 97This creates a similar skeletal structure to what we saw in Chapter 2 of
1390ef0e 98the tutorial, except with C<MyApp> and C<myapp> substituted for
444d6b27 99C<Hello> and C<hello>. (As noted in Chapter 2, omit the ".pl" from
100the command if you are using Strawberry Perl.)
3533daff 101
102
103=head1 EDIT THE LIST OF CATALYST PLUGINS
104
105One of the greatest benefits of Catalyst is that it has such a large
1390ef0e 106library of plugins and base classes available. Plugins are used to
107seamlessly integrate existing Perl modules into the overall Catalyst
108framework. In general, they do this by adding additional methods to the
109C<context> object (generally written as C<$c>) that Catalyst passes to
110every component throughout the framework.
3533daff 111
112By default, Catalyst enables three plugins/flags:
113
114=over 4
115
1390ef0e 116=item *
3533daff 117
118C<-Debug> Flag
119
120Enables the Catalyst debug output you saw when we started the
121C<script/myapp_server.pl> development server earlier. You can remove
79a529cc 122this item when you place your application into production.
3533daff 123
444d6b27 124To be technically correct, it turns out that C<-Debug> is not a plugin, but a I<flag>.
1390ef0e 125Although most of the items specified on the C<__PACKAGE__-E<gt>setup>
126line of your application class will be plugins, Catalyst supports a
127limited number of flag options (of these, C<-Debug> is the most
128common). See the documentation for C<Catalyst.pm> to get details on
129other flags (currently C<-Engine>, C<-Home>, and C<-Log>).
3533daff 130
444d6b27 131If you prefer, there are several other ways to enable debug output:
132
133=over 4
134
135=item *
136
137Use the C<$c-E<gt>debug> method
138
139=item *
140
141The C<-d> option to C<script/myapp_server.pl>
142
143=item *
144
145The C<CATALYST_DEBUG=1> environment variable (or set it to
146zero to templorarily disable debug output).
147
148=back
3533daff 149
150B<TIP>: Depending on your needs, it can be helpful to permanently
151remove C<-Debug> from C<lib/MyApp.pm> and then use the C<-d> option
152to C<script/myapp_server.pl> to re-enable it just for the development
1390ef0e 153server. We will not be using that approach in the tutorial, but feel
3533daff 154free to make use of it in your own projects.
155
156=item *
157
158L<Catalyst::Plugin::ConfigLoader|Catalyst::Plugin::ConfigLoader>
159
160C<ConfigLoader> provides an automatic way to load configurable
c010ae0d 161parameters for your application from a central
162L<Config::General|Config::General> file (versus having the values
163hard-coded inside your Perl modules). Config::General uses syntax
164very similar to Apache configuration files. We will see how to use
165this feature of Catalyst during the authentication and authorization
4b4d3884 166sections (Chapter 5 and Chapter 6).
3533daff 167
1435672d 168B<IMPORTANT NOTE:> If you are using a version of
169L<Catalyst::Devel|Catalyst::Devel> prior to version 1.06, be aware
170that Catalyst changed the default format from YAML to the more
171straightforward C<Config::General> style. This tutorial uses the
172newer C<myapp.conf> file for C<Config::General>. However, Catalyst
173supports both formats and will automatically use either C<myapp.conf>
174or C<myapp.yml> (or any other format supported by
175L<Catalyst::Plugin::ConfigLoader|Catalyst::Plugin::ConfigLoader> and
176L<Config::Any|Config::Any>). If you are using a version of
177Catalyst::Devel prior to 1.06, you can convert to the newer format by
178simply creating the C<myapp.conf> file manually and deleting
179C<myapp.yml>. The default contents of the C<myapp.conf> you create
180should only consist of one line:
181
182 name MyApp
15e1d0b2 183
1390ef0e 184B<TIP>: This script can be useful for converting between configuration
15e1d0b2 185formats:
186
1390ef0e 187 perl -Ilib -e 'use MyApp; use Config::General;
15e1d0b2 188 Config::General->new->save_file("myapp.conf", MyApp->config);'
189
3533daff 190=item *
191
192L<Catalyst::Plugin::Static::Simple|Catalyst::Plugin::Static::Simple>
193
4d63a0d5 194C<Static::Simple> provides an easy way to serve static content, such
195as images and CSS files, from the development server.
3533daff 196
197=back
198
94d8da41 199For our application, we want to add one new plugin into the mix. To
1390ef0e 200do this, edit C<lib/MyApp.pm> (this file is generally referred to as
acbd7bdd 201your I<application class>) and delete the lines with:
3533daff 202
1dc333c7 203 use Catalyst qw/
204 -Debug
205 ConfigLoader
206 Static::Simple
207 /;
3533daff 208
1390ef0e 209Then replace it with:
b411df01 210
acbd7bdd 211 # Load plugins
fce83e5f 212 use Catalyst qw/
1dc333c7 213 -Debug
214 ConfigLoader
215 Static::Simple
216
217 StackTrace
218 /;
1390ef0e 219
94d8da41 220B<Note:> Recent versions of C<Catalyst::Devel> have used a variety of
acbd7bdd 221techniques to load these plugins/flags. For example, you might see
222the following:
94d8da41 223
acbd7bdd 224 __PACKAGE__->setup(qw/-Debug ConfigLoader Static::Simple/);
94d8da41 225
226Don't let these variations confuse you -- they all accomplish the same
227result.
228
1390ef0e 229This tells Catalyst to start using one new plugin,
230L<Catalyst::Plugin::StackTrace|Catalyst::Plugin::StackTrace>, to add a
231stack trace to the standard Catalyst "debug screen" (the screen
232Catalyst sends to your browser when an error occurs). Be aware that
233L<StackTrace|Catalyst::Plugin::StackTrace> output appears in your
234browser, not in the console window from which you're running your
235application, which is where logging output usually goes.
3533daff 236
444d6b27 237Make sure when adding new plugins you also include them as a new
c12b0d35 238dependency within the Makefile.PL file. For example, after adding
3b1fa91b 239the StackTrace plugin the Makefile.PL should include the following
240line:
241
242 requires 'Catalyst::Plugin::StackTrace';
243
244
1390ef0e 245B<Notes:>
3533daff 246
247=over 4
248
1390ef0e 249=item *
250
251C<__PACKAGE__> is just a shorthand way of referencing the name of the
252package where it is used. Therefore, in C<MyApp.pm>, C<__PACKAGE__>
253is equivalent to C<MyApp>.
3533daff 254
1390ef0e 255=item *
3533daff 256
1390ef0e 257You will want to disable L<StackTrace|Catalyst::Plugin::StackTrace>
258before you put your application into production, but it can be helpful
259during development.
3533daff 260
1390ef0e 261=item *
3533daff 262
444d6b27 263When specifying plugins, you can omit C<Catalyst::Plugin::> from the
264name. Additionally, you can spread the plugin names across multiple
265lines as shown here or place them all on one line.
cca5cd98 266
3533daff 267=back
268
3533daff 269
270=head1 CREATE A CATALYST CONTROLLER
271
1390ef0e 272As discussed earlier, controllers are where you write methods that
273interact with user input. Typically, controller methods respond to
4d63a0d5 274C<GET> and C<POST> requests from the user's web browser.
3533daff 275
276Use the Catalyst C<create> script to add a controller for book-related
277actions:
278
279 $ script/myapp_create.pl controller Books
280 exists "/home/me/MyApp/script/../lib/MyApp/Controller"
281 exists "/home/me/MyApp/script/../t"
282 created "/home/me/MyApp/script/../lib/MyApp/Controller/Books.pm"
283 created "/home/me/MyApp/script/../t/controller_Books.t"
284
4b4d3884 285Then edit C<lib/MyApp/Controller/Books.pm> (as discussed in Chapter 2 of
1390ef0e 286the Tutorial, Catalyst has a separate directory under C<lib/MyApp> for
287each of the three parts of MVC: C<Model>, C<View>, and C<Controller>)
288and add the following method to the controller:
3533daff 289
290 =head2 list
291
292 Fetch all book objects and pass to books/list.tt2 in stash to be displayed
293
294 =cut
1390ef0e 295
3533daff 296 sub list : Local {
297 # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
298 # 'Context' that's used to 'glue together' the various components
299 # that make up the application
300 my ($self, $c) = @_;
301
302 # Retrieve all of the book records as book model objects and store in the
303 # stash where they can be accessed by the TT template
3b1fa91b 304 # $c->stash->{books} = [$c->model('DB::Book')->all];
1390ef0e 305 # But, for now, use this code until we create the model later
306 $c->stash->{books} = '';
307
3533daff 308 # Set the TT template to use. You will almost always want to do this
309 # in your action methods (action methods respond to user input in
310 # your controllers).
61cb69fd 311 $c->stash(template => 'books/list.tt2');
3533daff 312 }
313
1390ef0e 314B<TIP>: See Appendix 1 for tips on removing the leading spaces when
315cutting and pasting example code from POD-based documents.
3533daff 316
1390ef0e 317Programmers experienced with object-oriented Perl should recognize
318C<$self> as a reference to the object where this method was called.
319On the other hand, C<$c> will be new to many Perl programmers who have
320not used Catalyst before (it's sometimes written as C<$context>). The
321Context object is automatically passed to all Catalyst components. It
322is used to pass information between components and provide access to
323Catalyst and plugin functionality.
3533daff 324
245b41d1 325Catalyst actions are regular Perl methods, but they make use of
326attributes (the "C<: Local>" next to the "C<sub list>" in the code
0416017e 327above) to provide additional information to the Catalyst dispatcher
328logic (note that the space between the colon and the attribute name is
4d63a0d5 329optional; you will see attributes written both ways). Most Catalyst
245b41d1 330Controllers use one of five action types:
0416017e 331
332=over 4
333
334=item *
335
245b41d1 336B<:Private> -- Use C<:Private> for methods that you want to make into
444d6b27 337an action, but you do not want Catalyst to directly expose the method
245b41d1 338to your users. Catalyst will not map C<:Private> methods to a URI.
339Use them for various sorts of "special" methods (the C<begin>,
340C<auto>, etc. discussed below) or for methods you want to be able to
341C<forward> or C<detach> to. (If the method is a plain old "helper
342method" that you don't want to be an action at all, then just define
343the method without any attribute -- you can call it in your code, but
344the Catalyst dispatcher will ignore it.)
0416017e 345
245b41d1 346There are five types of "special" build-in C<:Private> actions:
347C<begin>, C<end>, C<default>, C<index>, and C<auto>.
0416017e 348
26c9cad5 349=over 4
350
0416017e 351=item *
352
353With C<begin>, C<end>, C<default>, C<index> private actions, only the
354most specific action of each type will be called. For example, if you
355define a C<begin> action in your controller it will I<override> a
356C<begin> action in your application/root controller -- I<only> the
357action in your controller will be called.
358
359=item *
360
361Unlike the other actions where only a single method is called for each
362request, I<every> auto action along the chain of namespaces will be
363called. Each C<auto> action will be called I<from the application/root
364controller down through the most specific class>.
365
366=back
367
368=item *
369
245b41d1 370B<:Path> -- C<:Path> actions let you map a method to an explicit URI
371path. For example, "C<:Path('list')>" in
0416017e 372C<lib/MyApp/Controller/Books.pm> would match on the URL
444d6b27 373C<http://localhost:3000/books/list>, but "C<:Path('/list')>" would
374match on C<http://localhost:3000/list> (because of the leading slash).
375You can use C<:Args()> to specify how many arguments an action should
376accept. See L<Catalyst::Manual::Intro/Action_types> for more
377information and examples.
0416017e 378
379=item *
380
245b41d1 381B<:Local> -- C<:Local> is merely a shorthand for
382"C<:Path('_name_of_method_')>". For example, these are equivalent:
383"C<sub create_book :Local {...}>" and
384"C<sub create_book :Path('create_book') {...}>".
385
386=item *
387
388B<:Global> -- C<:Global> is merely a shorthand for
389"C<:Path('/_name_of_method_')>". For example, these are equivalent:
390"C<sub create_book :Global {...}>" and
391"C<sub create_book :Path('/create_book') {...}>".
392
393=item *
394
395B<:Chained> -- Newer Catalyst applications tend to use the Chained
0416017e 396dispatch form of action types because of its power and flexibility.
4d63a0d5 397It allows a series of controller methods to be automatically dispatched
0416017e 398to service a single user request. See
3ab6187c 399L<Catalyst::Manual::Tutorial::04_BasicCRUD|Catalyst::Manual::Tutorial::04_BasicCRUD>
0416017e 400and L<Catalyst::DispatchType::Chained|Catalyst::DispatchType::Chained>
401for more information on chained actions.
402
403=back
404
405You should refer to L<Catalyst::Manual::Intro/Action_types> for
406additional information and for coverage of some lesser-used action
245b41d1 407types not discussed here (C<Regex> and C<LocalRegex>).
3533daff 408
409
410=head1 CATALYST VIEWS
411
4d63a0d5 412As mentioned in Chapter 2 of the tutorial, views are where you render
413output, typically for display in the user's web browser (but also
414possibly using into output-generation systems, such as PDF or JSON).
415The code in C<lib/MyApp/View> selects the I<type> of view to use, with
416the actual rendering template found in the C<root> directory. As with
417virtually every aspect of Catalyst, options abound when it comes to the
418specific view technology you adopt inside your application. However,
419most Catalyst applications use the Template Toolkit, known as TT (for
420more information on TT, see L<http://www.template-toolkit.org>). Other
421somewhat popular view technologies include Mason
422(L<http://www.masonhq.com> and L<http://www.masonbook.com>) and
1390ef0e 423L<HTML::Template> (L<http://html-template.sourceforge.net>).
424
425
426=head2 Create a Catalyst View
3533daff 427
444d6b27 428When using TT for the Catalyst view, the main helper script
429is L<Catalyst::Helper::View::TT|Catalyst::Helper::View::TT>.
430You may also come across references to
431L<Catalyst::Helper::View::TTSite|Catalyst::Helper::View::TTSite>,
432but its use is now deprecated.
1390ef0e 433
434Enter the following command to enable the C<TT> style of view
3533daff 435rendering for this tutorial:
436
1390ef0e 437 $ script/myapp_create.pl view TT TT
3533daff 438 exists "/home/me/MyApp/script/../lib/MyApp/View"
439 exists "/home/me/MyApp/script/../t"
1390ef0e 440 created "/home/me/MyApp/script/../lib/MyApp/View/TT.pm"
441 created "/home/me/MyApp/script/../t/view_TT.t"
3533daff 442
1390ef0e 443This simply creates a view called C<TT> (the second 'TT' argument) in
444a file called C<TT.pm> (the first 'TT' argument). It is now up to you
445to decide how you want to structure your view layout. For the
446tutorial, we will start with a very simple TT template to initially
447demonstrate the concepts, but quickly migrate to a more typical
448"wrapper page" type of configuration (where the "wrapper" controls the
449overall "look and feel" of your site from a single file or set of
450files).
3533daff 451
1390ef0e 452Edit C<lib/MyApp/View/TT.pm> and you should see that the default
453contents contains something similar to the following:
3533daff 454
1390ef0e 455 __PACKAGE__->config(TEMPLATE_EXTENSION => '.tt');
3533daff 456
1390ef0e 457And update it to match:
458
459 __PACKAGE__->config(
460 # Change default TT extension
461 TEMPLATE_EXTENSION => '.tt2',
462 # Set the location for TT files
463 INCLUDE_PATH => [
6abd3023 464 MyApp->path_to( 'root', 'src' ),
1390ef0e 465 ],
466 );
3533daff 467
1390ef0e 468B<NOTE:> Make sure to add a comma after '.tt2' outside the single
469quote.
470
444d6b27 471This changes the default extension for Template Toolkit from '.tt' to
472'.tt2' and changes the base directory for your template files from
473C<root> to C<root/src>. Stick with these conventions for the
474tutorial, but feel free to use whatever options you desire in your
475applications (as with most things Perl, there's more than one way to
476do it...).
1390ef0e 477
acbd7bdd 478B<Note:> We will use C<root/src> as the base directory for our
444d6b27 479template files, with a full naming convention of
acbd7bdd 480C<root/src/_controller_name_/_action_name_.tt2>. Another popular option is to
481use C<root/> as the base (with a full filename pattern of
482C<root/_controller_name_/_action_name_.tt2>).
483
1390ef0e 484
485=head2 Create a TT Template Page
3533daff 486
487First create a directory for book-related TT templates:
488
1390ef0e 489 $ mkdir -p root/src/books
3533daff 490
491Then create C<root/src/books/list.tt2> in your editor and enter:
492
493 [% # This is a TT comment. The '-' at the end "chomps" the newline. You won't -%]
494 [% # see this "chomping" in your browser because HTML ignores blank lines, but -%]
495 [% # it WILL eliminate a blank line if you view the HTML source. It's purely -%]
496 [%- # optional, but both the beginning and the ending TT tags support chomping. -%]
497
1390ef0e 498 [% # Provide a title -%]
3533daff 499 [% META title = 'Book List' -%]
500
501 <table>
502 <tr><th>Title</th><th>Rating</th><th>Author(s)</th></tr>
503 [% # Display each book in a table row %]
504 [% FOREACH book IN books -%]
505 <tr>
506 <td>[% book.title %]</td>
507 <td>[% book.rating %]</td>
a46b474e 508 <td></td>
3533daff 509 </tr>
510 [% END -%]
511 </table>
512
513As indicated by the inline comments above, the C<META title> line uses
1390ef0e 514TT's META feature to provide a title to the "wrapper" that we will
515create later. Meanwhile, the C<FOREACH> loop iterates through each
516C<book> model object and prints the C<title> and C<rating> fields.
3533daff 517
4d63a0d5 518The C<[%> and C<%]> tags are used to delimit Template Toolkit code. TT
519supports a wide variety of directives for "calling" other files,
520looping, conditional logic, etc. In general, TT simplifies the usual
444d6b27 521range of Perl operators down to the single dot (".") operator. This
4d63a0d5 522applies to operations as diverse as method calls, hash lookups, and list
523index values (see
524L<http://search.cpan.org/perldoc?Template::Manual::Variables> for
444d6b27 525details and examples). In addition to the usual L<Template> module Pod
4d63a0d5 526documentation, you can access the TT manual at
55beb65d 527L<http://search.cpan.org/perldoc?Template::Manual>.
3533daff 528
444d6b27 529B<TIP:> While you can build all sorts of complex logic into your TT
530templates, you should in general keep the "code" part of your
531templates as simple as possible. If you need more complex logic,
532create helper methods in your model that abstract out a set of code
533into a single call from your TT template. (Note that the same is true
534of your controller logic as well -- complex sections of code in your
535controllers should often be pulled out and placed into your model
536objects.) In Chapter 4 of the tutorial we will explore some extremely
537helpful and powerful features of L<DBIx::Class> that allow you to pull
538code out of your views and controllers and place it where it
539rightfully belongs in a model class.
1390ef0e 540
541
542=head2 Test Run The Application
543
544To test your work so far, first start the development server:
545
546 $ script/myapp_server.pl
547
548Then point your browser to L<http://localhost:3000> and you should
549still get the Catalyst welcome page. Next, change the URL in your
550browser to L<http://localhost:3000/books/list>. If you have
551everything working so far, you should see a web page that displays
552nothing other than our column headers for "Title", "Rating", and
553"Author(s)" -- we will not see any books until we get the database and
554model working below.
555
556If you run into problems getting your application to run correctly, it
557might be helpful to refer to some of the debugging techniques covered in
fce83e5f 558the L<Debugging|Catalyst::Manual::Tutorial::07_Debugging> chapter of the
1390ef0e 559tutorial.
3533daff 560
561
562=head1 CREATE A SQLITE DATABASE
563
564In this step, we make a text file with the required SQL commands to
429e7843 565create a database table and load some sample data. We will use
9887a877 566SQLite (L<http://www.sqlite.org>), a popular database that is
429e7843 567lightweight and easy to use. Be sure to get at least version 3. Open
1390ef0e 568C<myapp01.sql> in your editor and enter:
3533daff 569
c5b13dd3 570 PRAGMA foreign_keys = ON;
3533daff 571 --
572 -- Create a very simple database to hold book and author information
573 --
3b1fa91b 574 CREATE TABLE book (
3533daff 575 id INTEGER PRIMARY KEY,
576 title TEXT ,
577 rating INTEGER
578 );
3b1fa91b 579 -- 'book_author' is a many-to-many join table between books & authors
580 CREATE TABLE book_author (
b66dd084 581 book_id INTEGER REFERENCES book(id) ON DELETE CASCADE ON UPDATE CASCADE,
582 author_id INTEGER REFERENCES author(id) ON DELETE CASCADE ON UPDATE CASCADE,
3533daff 583 PRIMARY KEY (book_id, author_id)
584 );
3b1fa91b 585 CREATE TABLE author (
3533daff 586 id INTEGER PRIMARY KEY,
587 first_name TEXT,
588 last_name TEXT
589 );
590 ---
591 --- Load some sample data
592 ---
3b1fa91b 593 INSERT INTO book VALUES (1, 'CCSP SNRS Exam Certification Guide', 5);
594 INSERT INTO book VALUES (2, 'TCP/IP Illustrated, Volume 1', 5);
595 INSERT INTO book VALUES (3, 'Internetworking with TCP/IP Vol.1', 4);
596 INSERT INTO book VALUES (4, 'Perl Cookbook', 5);
597 INSERT INTO book VALUES (5, 'Designing with Web Standards', 5);
598 INSERT INTO author VALUES (1, 'Greg', 'Bastien');
599 INSERT INTO author VALUES (2, 'Sara', 'Nasseh');
600 INSERT INTO author VALUES (3, 'Christian', 'Degu');
601 INSERT INTO author VALUES (4, 'Richard', 'Stevens');
602 INSERT INTO author VALUES (5, 'Douglas', 'Comer');
603 INSERT INTO author VALUES (6, 'Tom', 'Christiansen');
604 INSERT INTO author VALUES (7, 'Nathan', 'Torkington');
605 INSERT INTO author VALUES (8, 'Jeffrey', 'Zeldman');
606 INSERT INTO book_author VALUES (1, 1);
607 INSERT INTO book_author VALUES (1, 2);
608 INSERT INTO book_author VALUES (1, 3);
609 INSERT INTO book_author VALUES (2, 4);
610 INSERT INTO book_author VALUES (3, 5);
611 INSERT INTO book_author VALUES (4, 6);
612 INSERT INTO book_author VALUES (4, 7);
613 INSERT INTO book_author VALUES (5, 8);
3533daff 614
3533daff 615Then use the following command to build a C<myapp.db> SQLite database:
616
617 $ sqlite3 myapp.db < myapp01.sql
618
619If you need to create the database more than once, you probably want to
620issue the C<rm myapp.db> command to delete the database before you use
1390ef0e 621the C<sqlite3 myapp.db E<lt> myapp01.sql> command.
3533daff 622
623Once the C<myapp.db> database file has been created and initialized, you
624can use the SQLite command line environment to do a quick dump of the
625database contents:
626
627 $ sqlite3 myapp.db
acbd7bdd 628 SQLite version 3.5.9
3533daff 629 Enter ".help" for instructions
3b1fa91b 630 sqlite> select * from book;
3533daff 631 1|CCSP SNRS Exam Certification Guide|5
632 2|TCP/IP Illustrated, Volume 1|5
633 3|Internetworking with TCP/IP Vol.1|4
634 4|Perl Cookbook|5
635 5|Designing with Web Standards|5
636 sqlite> .q
637 $
638
639Or:
640
3b1fa91b 641 $ sqlite3 myapp.db "select * from book"
3533daff 642 1|CCSP SNRS Exam Certification Guide|5
643 2|TCP/IP Illustrated, Volume 1|5
644 3|Internetworking with TCP/IP Vol.1|4
645 4|Perl Cookbook|5
646 5|Designing with Web Standards|5
647
648As with most other SQL tools, if you are using the full "interactive"
649environment you need to terminate your SQL commands with a ";" (it's not
650required if you do a single SQL statement on the command line). Use
651".q" to exit from SQLite from the SQLite interactive mode and return to
652your OS command prompt.
653
b66dd084 654Please note that here we have chosen to use 'singular' table names. This is
e586b5f4 655because the default inflection code for older versions of
b66dd084 656L<DBIx::Class::Schema::Loader> does NOT handle plurals. There has been much
657philosophical discussion on whether table names should be plural or singular.
658There is no one correct answer, as long as one makes a choice and remains
658b8c29 659consistent with it. If you prefer plural table names (e.g. you think that they
660are easier to read) then see the documentation in
661L<DBIx::Class::Schema::Loader::Base/naming> (version 0.05 or greater).
3b1fa91b 662
a6d800ac 663For using other databases, such as PostgreSQL or MySQL, see
3ab6187c 664L<Appendix 2|Catalyst::Manual::Tutorial::10_Appendices>.
3533daff 665
acbd7bdd 666
8a472b34 667=head1 DATABASE ACCESS WITH DBIx::Class
3533daff 668
27909ed4 669Catalyst can be used with virtually any form of datastore available
670via Perl. For example, L<Catalyst::Model::DBI|Catalyst::Model::DBI>
444d6b27 671can be used to access databases through the traditional Perl L<DBI>
27909ed4 672interface or you can use a model to access files of any type on the
673filesystem. However, most Catalyst applications use some form of
674object-relational mapping (ORM) technology to create objects
675associated with tables in a relational database. Matt Trout's
676L<DBIx::Class|DBIx::Class> (abbreviated as "DBIC") has rapidly emerged
677as the Perl-based ORM technology of choice. Most new Catalyst
a46b474e 678applications rely on DBIx::Class, as will this tutorial.
3533daff 679
a46b474e 680Although DBIx::Class has included support for a C<create=dynamic> mode
681to automatically read the database structure every time the
682application starts, it's use is no longer recommended. While it can
683make for "flashy" demos, the use of the C<create=static> mode we use
684below can be implemented just as quickly and provides many advantages
685(such as the ability to add your own methods to the overall DBIC
686framework, a technique that we see in Chapter 4).
3533daff 687
1390ef0e 688
a46b474e 689=head2 Make Sure You Have a Recent Version of the DBIx::Class Model
27909ed4 690
691First, let's be sure we have a recent version of the DBIC helper,
692L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema>, by
693running this command:
694
695 $ perl -MCatalyst::Model::DBIC::Schema -e \
696 'print "$Catalyst::Model::DBIC::Schema::VERSION\n"'
a467a714 697 0.31
27909ed4 698
fce83e5f 699Please note the '\' above. Depending on your environment, you might
700be able to cut and paste the text as shown or need to remove the '\'
701character to that the command is all on a single line.
3b1fa91b 702
a467a714 703You should have version 0.31 or greater if you are following along
444d6b27 704with Debian 5. In other environments, you may need to run this
705command to install it directly from CPAN:
27909ed4 706
707 $ sudo cpan Catalyst::Model::DBIC::Schema
708
709And re-run the version print command to verify that you are now at
a467a714 7100.31 or higher.
27909ed4 711
b66dd084 712Please use version C<1.27> of L<DBD::SQLite> or later for proper foreign key
713support.
27909ed4 714
a46b474e 715=head2 Create Static DBIx::Class Schema Files
27909ed4 716
98fd8420 717Before you continue, make sure your C<myapp.db> database file is in
718the application's topmost directory. Now use the model helper with
719the C<create=static> option to read the database with
27909ed4 720L<DBIx::Class::Schema::Loader|DBIx::Class::Schema::Loader> and
721automatically build the required files for us:
3533daff 722
4ab6212d 723 $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
b66dd084 724 create=static dbi:SQLite:myapp.db \
725 on_connect_do="PRAGMA foreign_keys = ON"
1390ef0e 726 exists "/home/me/MyApp/script/../lib/MyApp/Model"
727 exists "/home/me/MyApp/script/../t"
27909ed4 728 Dumping manual schema for MyApp::Schema to directory /home/me/MyApp/script/../lib ...
729 Schema dump completed.
1390ef0e 730 created "/home/me/MyApp/script/../lib/MyApp/Model/DB.pm"
731 created "/home/me/MyApp/script/../t/model_DB.t"
3533daff 732
fce83e5f 733Please note the '\' above. Depending on your environment, you might
734be able to cut and paste the text as shown or need to remove the '\'
735character to that the command is all on a single line.
3b1fa91b 736
27909ed4 737The C<script/myapp_create.pl> command breaks down like this:
738
739=over 4
740
741=item *
742
743C<DB> is the name of the model class to be created by the helper in
744C<lib/MyApp/Model>.
745
746=item *
747
748C<DBIC::Schema> is the type of the model to create.
749
750=item *
751
752C<MyApp::Schema> is the name of the DBIC schema file written to
753C<lib/MyApp/Schema.pm>.
754
755=item *
756
757C<create=static> causes
758L<DBIx::Class::Schema::Loader|DBIx::Class::Schema::Loader> to
759load the schema as it runs and then write that information out
760into files.
761
762=item *
763
27909ed4 764And finally, C<dbi:SQLite:myapp.db> is the standard DBI connect string
765for use with SQLite.
766
767=back
768
769If you look in the C<lib/MyApp/Schema.pm> file, you will find that it
770only contains a call to the C<load_namespaces> method. You will also
771find that C<lib/MyApp> contains a C<Schema> subdirectory, which then
772has a subdirectory called "Result". This "Result" subdirectory then
773has files named according to each of the tables in our simple database
3b1fa91b 774(C<Author.pm>, C<BookAuthor.pm>, and C<Book.pm>). These three
a46b474e 775files are called "Result Classes" in DBIx::Class nomenclature. Although the
27909ed4 776Result Class files are named after tables in our database, the classes
777correspond to the I<row-level data> that is returned by DBIC (more on
778this later, especially in
3ab6187c 779L<Catalyst::Manual::Tutorial::04_BasicCRUD/EXPLORING THE POWER OF DBIC>).
27909ed4 780
781The idea with the Result Source files created under
782C<lib/MyApp/Schema/Result> by the C<create=static> option is to only
783edit the files below the C<# DO NOT MODIFY THIS OR ANYTHING ABOVE!>
784warning. If you place all of your changes below that point in the
785file, you can regenerate the automatically created information at the
786top of each file should your database structure get updated.
787
788Also note the "flow" of the model information across the various files
789and directories. Catalyst will initially load the model from
790C<lib/MyApp/Model/DB.pm>. This file contains a reference to
791C<lib/MyApp/Schema.pm>, so that file is loaded next. Finally, the
792call to C<load_namespaces> in C<Schema.pm> will load each of the
793"Result Class" files from the C<lib/MyApp/Schema/Result> subdirectory.
794The final outcome is that Catalyst will dynamically create three
795table-specific Catalyst models every time the application starts (you
796can see these three model files listed in the debug output generated
797when you launch the application).
798
799B<NOTE:> Older versions of
800L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema> use the
a46b474e 801deprecated DBIx::Class C<load_classes> technique instead of the newer
27909ed4 802C<load_namspaces>. For new applications, please try to use
803C<load_namespaces> since it more easily supports a very useful DBIC
804technique called "ResultSet Classes." If you need to convert an
805existing application from "load_classes" to "load_namespaces," you can
b66dd084 806use this process to automate the migration, but first make sure you have
807version C<0.39> of L<Catalyst::Model::DBIC::Schema> and
808L<DBIx::Class::Schema::Loader> version C<0.05000> or later.
27909ed4 809
b66dd084 810 $ # Re-run the helper to upgrade for you
27909ed4 811 $ script/myapp_create.pl model DB DBIC::Schema MyApp::Schema \
b66dd084 812 create=static naming=current use_namespaces=1 \
813 dbi:SQLite:myapp.db \
814 on_connect_do="PRAGMA foreign_keys = ON"
dc9a0503 815
1390ef0e 816=head1 ENABLE THE MODEL IN THE CONTROLLER
817
acbd7bdd 818Open C<lib/MyApp/Controller/Books.pm> and un-comment the model code we
819left disabled earlier so that your version matches the following (un-
3b1fa91b 820comment the line containing C<[$c-E<gt>model('DB::Book')-E<gt>all]>
acbd7bdd 821and delete the next 2 lines):
1390ef0e 822
823 =head2 list
824
825 Fetch all book objects and pass to books/list.tt2 in stash to be displayed
826
827 =cut
828
829 sub list : Local {
830 # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
831 # 'Context' that's used to 'glue together' the various components
832 # that make up the application
833 my ($self, $c) = @_;
834
835 # Retrieve all of the book records as book model objects and store in the
836 # stash where they can be accessed by the TT template
3b1fa91b 837 $c->stash->{books} = [$c->model('DB::Book')->all];
1390ef0e 838
839 # Set the TT template to use. You will almost always want to do this
840 # in your action methods (action methods respond to user input in
841 # your controllers).
61cb69fd 842 $c->stash(template => 'books/list.tt2');
1390ef0e 843 }
844
3b1fa91b 845B<TIP>: You may see the C<$c-E<gt>model('DB::Book')> un-commented
846above written as C<$c-E<gt>model('DB')-E<gt>resultset('Book')>. The
c93b5eaa 847two are equivalent. Either way, C<$c-E<gt>model> returns a
848L<DBIx::Class::ResultSet|DBIx::Class::ResultSet> which handles queries
4d63a0d5 849against the database and iterating over the set of results that is
c93b5eaa 850returned.
851
852We are using the C<-E<gt>all> to fetch all of the books. DBIC
853supports a wide variety of more advanced operations to easily do
854things like filtering and sorting the results. For example, the
518f3851 855following could be used to sort the results by descending title:
c93b5eaa 856
3b1fa91b 857 $c->model('DB::Book')->search({}, {order_by => 'title DESC'});
c93b5eaa 858
859Some other examples are provided in
860L<DBIx::Class::Manual::Cookbook/Complex WHERE clauses>, with
861additional information found at L<DBIx::Class::ResultSet/search>,
862L<DBIx::Class::Manual::FAQ/Searching>,
863L<DBIx::Class::Manual::Intro|DBIx::Class::Manual::Intro>
864and L<Catalyst::Model::DBIC::Schema|Catalyst::Model::DBIC::Schema>.
1390ef0e 865
866
867=head2 Test Run The Application
3533daff 868
1435672d 869First, let's enable an environment variable that causes DBIx::Class to
acbd7bdd 870dump the SQL statements used to access the database. This is a
1435672d 871helpful trick when you are trying to debug your database-oriented
872code:
3533daff 873
874 $ export DBIC_TRACE=1
875
4d63a0d5 876This assumes you are using bash as your shell -- adjust accordingly if
3533daff 877you are using a different shell (for example, under tcsh, use
878C<setenv DBIC_TRACE 1>).
879
d0496197 880B<NOTE:> You can also set this in your code using
3533daff 881C<$class-E<gt>storage-E<gt>debug(1);>. See
882L<DBIx::Class::Manual::Troubleshooting> for details (including options
4d63a0d5 883to log to a file instead of displaying to the Catalyst development server
3533daff 884log).
885
1390ef0e 886Then launch the Catalyst development server. The log output should
887display something like:
3533daff 888
acbd7bdd 889 $ script/myapp_server.pl
3533daff 890 [debug] Debug messages enabled
1390ef0e 891 [debug] Statistics enabled
3533daff 892 [debug] Loaded plugins:
893 .----------------------------------------------------------------------------.
a467a714 894 | Catalyst::Plugin::ConfigLoader 0.27 |
895 | Catalyst::Plugin::StackTrace 0.11 |
896 | Catalyst::Plugin::Static::Simple 0.25 |
3533daff 897 '----------------------------------------------------------------------------'
898
899 [debug] Loaded dispatcher "Catalyst::Dispatcher"
900 [debug] Loaded engine "Catalyst::Engine::HTTP"
901 [debug] Found home "/home/me/MyApp"
45d511e0 902 [debug] Loaded Config "/home/me/MyApp/myapp.conf"
3533daff 903 [debug] Loaded components:
904 .-----------------------------------------------------------------+----------.
905 | Class | Type |
906 +-----------------------------------------------------------------+----------+
907 | MyApp::Controller::Books | instance |
908 | MyApp::Controller::Root | instance |
d0496197 909 | MyApp::Model::DB | instance |
3b1fa91b 910 | MyApp::Model::DB::Author | class |
911 | MyApp::Model::DB::Book | class |
912 | MyApp::Model::DB::BookAuthor | class |
3533daff 913 | MyApp::View::TT | instance |
914 '-----------------------------------------------------------------+----------'
915
916 [debug] Loaded Private actions:
917 .----------------------+--------------------------------------+--------------.
918 | Private | Class | Method |
919 +----------------------+--------------------------------------+--------------+
920 | /default | MyApp::Controller::Root | default |
921 | /end | MyApp::Controller::Root | end |
1390ef0e 922 | /index | MyApp::Controller::Root | index |
3533daff 923 | /books/index | MyApp::Controller::Books | index |
924 | /books/list | MyApp::Controller::Books | list |
925 '----------------------+--------------------------------------+--------------'
926
927 [debug] Loaded Path actions:
928 .-------------------------------------+--------------------------------------.
929 | Path | Private |
930 +-------------------------------------+--------------------------------------+
1390ef0e 931 | / | /default |
932 | / | /index |
933 | /books | /books/index |
3533daff 934 | /books/list | /books/list |
935 '-------------------------------------+--------------------------------------'
936
a467a714 937 [info] MyApp powered by Catalyst 5.80013
acbd7bdd 938 You can connect to your server at http://debian:3000
3533daff 939
1390ef0e 940B<NOTE:> Be sure you run the C<script/myapp_server.pl> command from
941the 'base' directory of your application, not inside the C<script>
942directory itself or it will not be able to locate the C<myapp.db>
943database file. You can use a fully qualified or a relative path to
944locate the database file, but we did not specify that when we ran the
3533daff 945model helper earlier.
946
947Some things you should note in the output above:
948
949=over 4
950
1390ef0e 951=item *
3533daff 952
1390ef0e 953Catalyst::Model::DBIC::Schema dynamically created three model classes,
954one to represent each of the three tables in our database
3b1fa91b 955(C<MyApp::Model::DB::Author>, C<MyApp::Model::DB::BookAuthor>,
956and C<MyApp::Model::DB::Book>).
3533daff 957
1390ef0e 958=item *
3533daff 959
960The "list" action in our Books controller showed up with a path of
961C</books/list>.
962
963=back
964
965Point your browser to L<http://localhost:3000> and you should still get
966the Catalyst welcome page.
967
968Next, to view the book list, change the URL in your browser to
969L<http://localhost:3000/books/list>. You should get a list of the five
1390ef0e 970books loaded by the C<myapp01.sql> script above without any formatting.
971The rating for each book should appear on each row, but the "Author(s)"
191dee29 972column will still be blank (we will fill that in later).
3533daff 973
a46b474e 974Also notice in the output of the C<script/myapp_server.pl> that
975DBIx::Class used the following SQL to retrieve the data:
3533daff 976
fce83e5f 977 SELECT me.id, me.title, me.rating FROM book me
3533daff 978
979because we enabled DBIC_TRACE.
980
0c51850e 981You now have the beginnings of a simple but workable web application.
3533daff 982Continue on to future sections and we will develop the application
983more fully.
984
985
1390ef0e 986=head1 CREATE A WRAPPER FOR THE VIEW
987
acbd7bdd 988When using TT, you can (and should) create a wrapper that will
1390ef0e 989literally wrap content around each of your templates. This is
990certainly useful as you have one main source for changing things that
991will appear across your entire site/application instead of having to
992edit many individual files.
993
994
995=head2 Configure TT.pm For The Wrapper
996
997In order to create a wrapper, you must first edit your TT view and
444d6b27 998tell it where to find your wrapper file.
1390ef0e 999
444d6b27 1000Edit you TT view in C<lib/MyApp/View/TT.pm> and change it to match the
1001following:
1390ef0e 1002
1003 __PACKAGE__->config(
1004 # Change default TT extension
1005 TEMPLATE_EXTENSION => '.tt2',
1006 # Set the location for TT files
1007 INCLUDE_PATH => [
c2dfb562 1008 MyApp->path_to( 'root', 'src' ),
1390ef0e 1009 ],
1010 # Set to 1 for detailed timer stats in your HTML as comments
1011 TIMER => 0,
1012 # This is your wrapper template located in the 'root/src'
1013 WRAPPER => 'wrapper.tt2',
1014 );
1015
1016
1017=head2 Create the Wrapper Template File and Stylesheet
1018
1019Next you need to set up your wrapper template. Basically, you'll want
1020to take the overall layout of your site and put it into this file.
1021For the tutorial, open C<root/src/wrapper.tt2> and input the following:
1022
1023 <?xml version="1.0" encoding="UTF-8"?>
1024 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
1025 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
1026 <head>
1027 <title>[% template.title or "My Catalyst App!" %]</title>
1028 <link rel="stylesheet" href="[% c.uri_for('/static/css/main.css') %]" />
1029 </head>
1030
1031 <body>
1032 <div id="outer">
1033 <div id="header">
1034 [%# Your logo could go here -%]
1035 <img src="[% c.uri_for('/static/images/btn_88x31_powered.png') %]" />
1036 [%# Insert the page title -%]
1037 <h1>[% template.title or site.title %]</h1>
1038 </div>
1039
1040 <div id="bodyblock">
1041 <div id="menu">
1042 Navigation:
1043 <ul>
1044 <li><a href="[% c.uri_for('/books/list') %]">Home</a></li>
1045 <li><a href="[% c.uri_for('/') %]" title="Catalyst Welcome Page">Welcome</a></li>
1390ef0e 1046 </ul>
1047 </div><!-- end menu -->
1048
1049 <div id="content">
1050 [%# Status and error messages %]
1051 <span class="message">[% status_msg %]</span>
1052 <span class="error">[% error_msg %]</span>
1053 [%# This is where TT will stick all of your template's contents. -%]
1054 [% content %]
1055 </div><!-- end content -->
1056 </div><!-- end bodyblock -->
1057
1058 <div id="footer">Copyright (c) your name goes here</div>
c2dfb562 1059 </div><!-- end outer -->
1390ef0e 1060
1061 </body>
1062 </html>
1063
1064Notice the status and error message sections in the code above:
1065
1066 <span class="status">[% status_msg %]</span>
1067 <span class="error">[% error_msg %]</span>
1068
1069If we set either message in the Catalyst stash (e.g.,
1070C<$c-E<gt>stash-E<gt>{status_msg} = 'Request was successful!'>) it
1071will be displayed whenever any view used by that request is rendered.
1072The C<message> and C<error> CSS styles can be customized to suit your
1073needs in the C<root/static/css/main.css> file we create below.
1074
1075B<Notes:>
1076
1077=over 4
1078
1079=item *
1080
1081The Catalyst stash only lasts for a single HTTP request. If
1082you need to retain information across requests you can use
1083L<Catalyst::Plugin::Session|Catalyst::Plugin::Session> (we will use
4b4d3884 1084Catalyst sessions in the Authentication chapter of the tutorial).
1390ef0e 1085
1086=item *
1087
1088Although it is beyond the scope of this tutorial, you may wish to use
1089a JavaScript or AJAX tool such as jQuery (L<http://www.jquery.com>) or
1090Dojo (L<http://www.dojotoolkit.org>).
1091
1092=back
1093
1094
1095=head3 Create A Basic Stylesheet
1096
1097First create a central location for stylesheets under the static
1098directory:
1099
1100 $ mkdir root/static/css
1101
1102Then open the file C<root/static/css/main.css> (the file referenced in
1103the stylesheet href link of our wrapper above) and add the following
1104content:
1105
1106 #header {
1107 text-align: center;
1108 }
1109 #header h1 {
1110 margin: 0;
1111 }
1112 #header img {
1113 float: right;
1114 }
1115 #footer {
1116 text-align: center;
1117 font-style: italic;
1118 padding-top: 20px;
1119 }
1120 #menu {
1121 font-weight: bold;
1122 background-color: #ddd;
1123 }
1124 #menu ul {
1125 list-style: none;
1126 float: left;
1127 margin: 0;
1128 padding: 0 0 50% 5px;
1129 font-weight: normal;
1130 background-color: #ddd;
1131 width: 100px;
1132 }
1133 #content {
1134 margin-left: 120px;
1135 }
1136 .message {
1137 color: #390;
1138 }
1139 .error {
1140 color: #f00;
1141 }
1142
1143You may wish to check out a "CSS Framework" like Emastic
1144(L<http://code.google.com/p/emastic/>) as a way to quickly
1145provide lots of high-quality CSS functionality.
1146
1147
1148=head2 Test Run The Application
1149
1150Restart the development server and hit "Reload" in your web browser
1151and you should now see a formatted version of our basic book list.
1152Although our wrapper and stylesheet are obviously very simple, you
1153should see how it allows us to control the overall look of an entire
1154website from two central files. To add new pages to the site, just
1155provide a template that fills in the C<content> section of our wrapper
1156template -- the wrapper will provide the overall feel of the page.
1157
1158
a46b474e 1159=head2 Updating the Generated DBIx::Class Result Class Files
3533daff 1160
acbd7bdd 1161Let's manually add some relationship information to the auto-generated
b66dd084 1162Result Class files. C<many_to_many> relationships are not currently
1163automatically generated by L<DBIx::Class::Schema::Loader>.
1164First edit C<lib/MyApp/Schema/Result/Book.pm> and add the
acbd7bdd 1165following text below the C<# You can replace this text...> comment:
3533daff 1166
3533daff 1167 # many_to_many():
1168 # args:
1169 # 1) Name of relationship, DBIC will create accessor with this name
1390ef0e 1170 # 2) Name of has_many() relationship this many_to_many() is shortcut for
1171 # 3) Name of belongs_to() relationship in model class of has_many() above
3533daff 1172 # You must already have the has_many() defined to use a many_to_many().
fce83e5f 1173 __PACKAGE__->many_to_many(authors => 'book_authors', 'author');
3533daff 1174
3533daff 1175B<Note:> Be careful to put this code I<above> the C<1;> at the end of the
1176file. As with any Perl package, we need to end the last line with
1177a statement that evaluates to C<true>. This is customarily done with
1178C<1;> on a line by itself.
1179
b66dd084 1180You'll notice there is already a C<has_many> relationship called
1181C<book_authors>. The C<many_to_many> relationship is optional, but it makes it
1182easier to map a book to its collection of authors. Without
3b1fa91b 1183it, we would have to "walk" though the C<book_author> table as in
1184C<$book-E<gt>book_author-E<gt>first-E<gt>author-E<gt>last_name> (we
a46b474e 1185will see examples on how to use DBIx::Class objects in your code soon,
3b1fa91b 1186but note that because C<$book-E<gt>book_author> can return multiple
1390ef0e 1187authors, we have to use C<first> to display a single author).
5a82cb36 1188C<many_to_many> allows us to use the shorter
1189C<$book-E<gt>author-E<gt>first-E<gt>last_name>. Note that you cannot
1190define a C<many_to_many> relationship without also having the
1191C<has_many> relationship in place.
3533daff 1192
3b1fa91b 1193Then edit C<lib/MyApp/Schema/Result/Author.pm> and add relationship
3533daff 1194information as follows (again, be careful to put in above the C<1;> but
1195below the C<# DO NOT MODIFY THIS OR ANYTHING ABOVE!> comment):
1196
3533daff 1197 # many_to_many():
1198 # args:
1199 # 1) Name of relationship, DBIC will create accessor with this name
1200 # 2) Name of has_many() relationship this many_to_many() is shortcut for
1390ef0e 1201 # 3) Name of belongs_to() relationship in model class of has_many() above
3533daff 1202 # You must already have the has_many() defined to use a many_to_many().
fce83e5f 1203 __PACKAGE__->many_to_many(books => 'book_authors', 'book');
3533daff 1204
1390ef0e 1205=head2 Run The Application
3533daff 1206
4d63a0d5 1207Run the Catalyst development server script with the C<DBIC_TRACE> option
1208(it might still be enabled from earlier in the tutorial, but here is an
1209alternate way to specify the option just in case):
3533daff 1210
1211 $ DBIC_TRACE=1 script/myapp_server.pl
1212
1390ef0e 1213Make sure that the application loads correctly and that you see the
1214three dynamically created model class (one for each of the
4ab6212d 1215Result Classes we created).
3533daff 1216
acbd7bdd 1217Then hit the URL L<http://localhost:3000/books/list> with your browser
444d6b27 1218and be sure that the book list still displays correctly. You can leave
1219the development server running for the next step if you wish.
3533daff 1220
c2dfb562 1221B<Note:> You will not see the authors yet because the view does not yet
1222use the new relations. Read on to the next section where we update the
1223template to do that.
3533daff 1224
1225
1226=head1 UPDATING THE VIEW
1227
acbd7bdd 1228Let's add a new column to our book list page that takes advantage of
1229the relationship information we manually added to our schema files in
a46b474e 1230the previous section. Edit C<root/src/books/list.tt2> and replace
3b1fa91b 1231the "empty" table cell "<td></td>" with the following:
3533daff 1232
acbd7bdd 1233 ...
3533daff 1234 <td>
fce83e5f 1235 [% # NOTE: See Chapter 4 for a better way to do this! -%]
3533daff 1236 [% # First initialize a TT variable to hold a list. Then use a TT FOREACH -%]
1237 [% # loop in 'side effect notation' to load just the last names of the -%]
6d97b973 1238 [% # authors into the list. Note that the 'push' TT vmethod doesn't return -%]
3533daff 1239 [% # a value, so nothing will be printed here. But, if you have something -%]
6d97b973 1240 [% # in TT that does return a value and you don't want it printed, you -%]
1241 [% # 1) assign it to a bogus value, or -%]
1242 [% # 2) use the CALL keyword to call it and discard the return value. -%]
3533daff 1243 [% tt_authors = [ ];
1244 tt_authors.push(author.last_name) FOREACH author = book.authors %]
1245 [% # Now use a TT 'virtual method' to display the author count in parens -%]
1246 [% # Note the use of the TT filter "| html" to escape dangerous characters -%]
1247 ([% tt_authors.size | html %])
1248 [% # Use another TT vmethod to join & print the names & comma separators -%]
1249 [% tt_authors.join(', ') | html %]
1250 </td>
acbd7bdd 1251 ...
3533daff 1252
444d6b27 1253B<IMPORTANT NOTE:> Again, you should keep as much "logic code" as
1254possible out of your views. This kind of logic belongs in your model
fce83e5f 1255(the same goes for controllers -- keep them as "thin" as possible and
1256push all of the "complicated code" out to your model objects). Avoid
1257code like you see in the previous example -- we are only using it here
1258to show some extra features in TT until we get to the more advanced
444d6b27 1259model features we will see in Chapter 4 (see
fce83e5f 1260L<Catalyst::Manual::Tutorial::04_BasicCRUD/EXPLORING THE POWER OF DBIC>).
1261
1390ef0e 1262Then hit "Reload" in your browser (note that you don't need to reload
3533daff 1263the development server or use the C<-r> option when updating TT
1390ef0e 1264templates) and you should now see the number of authors each book has
1265along with a comma-separated list of the authors' last names. (If you
1266didn't leave the development server running from the previous step,
1267you will obviously need to start it before you can refresh your
1268browser window.)
1269
1270If you are still running the development server with C<DBIC_TRACE>
1271enabled, you should also now see five more C<SELECT> statements in the
1272debug output (one for each book as the authors are being retrieved by
a46b474e 1273DBIx::Class):
3533daff 1274
fce83e5f 1275 SELECT me.id, me.title, me.rating FROM book me:
3b1fa91b 1276 SELECT author.id, author.first_name, author.last_name FROM book_author me
fce83e5f 1277 JOIN author author ON author.id = me.author_id WHERE ( me.book_id = ? ): '1'
3b1fa91b 1278 SELECT author.id, author.first_name, author.last_name FROM book_author me
fce83e5f 1279 JOIN author author ON author.id = me.author_id WHERE ( me.book_id = ? ): '2'
3b1fa91b 1280 SELECT author.id, author.first_name, author.last_name FROM book_author me
fce83e5f 1281 JOIN author author ON author.id = me.author_id WHERE ( me.book_id = ? ): '3'
3b1fa91b 1282 SELECT author.id, author.first_name, author.last_name FROM book_author me
fce83e5f 1283 JOIN author author ON author.id = me.author_id WHERE ( me.book_id = ? ): '4'
3b1fa91b 1284 SELECT author.id, author.first_name, author.last_name FROM book_author me
fce83e5f 1285 JOIN author author ON author.id = me.author_id WHERE ( me.book_id = ? ): '5'
c2dfb562 1286
1287Also note in C<root/src/books/list.tt2> that we are using "| html", a
1288type of TT filter, to escape characters such as E<lt> and E<gt> to &lt;
1289and &gt; and avoid various types of dangerous hacks against your
1290application. In a real application, you would probably want to put
1291"| html" at the end of every field where a user has control over the
1292information that can appear in that field (and can therefore inject
1293markup or code if you don't "neutralize" those fields). In addition to
1294"| html", Template Toolkit has a variety of other useful filters that
1295can found in the documentation for
1296L<Template::Filters|Template::Filters>.
3533daff 1297
1298
1390ef0e 1299=head1 RUNNING THE APPLICATION FROM THE COMMAND LINE
1300
1301In some situations, it can be useful to run your application and
1302display a page without using a browser. Catalyst lets you do this
1303using the C<scripts/myapp_test.pl> script. Just supply the URL you
1304wish to display and it will run that request through the normal
1305controller dispatch logic and use the appropriate view to render the
1306output (obviously, complex pages may dump a lot of text to your
1307terminal window). For example, if you type:
1308
1309 $ script/myapp_test.pl "/books/list"
1310
1311You should get the same text as if you visited
1312L<http://localhost:3000/books/list> with the normal development server
1313and asked your browser to view the page source.
3533daff 1314
1390ef0e 1315
1316=head1 OPTIONAL INFORMATION
1317
4b4d3884 1318B<NOTE: The rest of this chapter of the tutorial is optional. You can
3ab6187c 1319skip to Chapter 4, L<Basic CRUD|Catalyst::Manual::Tutorial::04_BasicCRUD>,
3533daff 1320if you wish.>
1321
acbd7bdd 1322
8a472b34 1323=head2 Using 'RenderView' for the Default View
1390ef0e 1324
1325Once your controller logic has processed the request from a user, it
1326forwards processing to your view in order to generate the appropriate
3533daff 1327response output. Catalyst uses
1390ef0e 1328L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> by
4d63a0d5 1329default to automatically perform this operation. If you look in
1390ef0e 1330C<lib/MyApp/Controller/Root.pm>, you should see the empty
3533daff 1331definition for the C<sub end> method:
1332
1333 sub end : ActionClass('RenderView') {}
1334
1390ef0e 1335The following bullet points provide a quick overview of the
3533daff 1336C<RenderView> process:
1337
1338=over 4
1339
1340=item *
1341
1342C<Root.pm> is designed to hold application-wide logic.
1343
1344=item *
1345
1390ef0e 1346At the end of a given user request, Catalyst will call the most specific
1347C<end> method that's appropriate. For example, if the controller for a
1348request has an C<end> method defined, it will be called. However, if
1349the controller does not define a controller-specific C<end> method, the
3533daff 1350"global" C<end> method in C<Root.pm> will be called.
1351
1352=item *
1353
1354Because the definition includes an C<ActionClass> attribute, the
1355L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> logic
1356will be executed B<after> any code inside the definition of C<sub end>
1357is run. See L<Catalyst::Manual::Actions|Catalyst::Manual::Actions>
1358for more information on C<ActionClass>.
1359
1360=item *
1361
1390ef0e 1362Because C<sub end> is empty, this effectively just runs the default
1363logic in C<RenderView>. However, you can easily extend the
1364C<RenderView> logic by adding your own code inside the empty method body
1365(C<{}>) created by the Catalyst Helpers when we first ran the
1366C<catalyst.pl> to initialize our application. See
1367L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> for more
4d63a0d5 1368detailed information on how to extend C<RenderView> in C<sub end>.
3533daff 1369
1370=back
1371
1372
fce83e5f 1373=head2 RenderView's "dump_info" Feature
1374
1375One of the nice features of C<RenderView> is that it automatically
1376allows you to add C<dump_info=1> to the end of any URL for your
1377application and it will force the display of the "exception dump"
1378screen to the client browser. You can try this out by starting the
1379development server as before and then point your browser to this URL:
1380
1381 http://localhost:3000/books/list?dump_info=1
1382
1383You should get a page with the following message at the top:
1384
1385 Caught exception in MyApp::Controller::Root->end "Forced debug -
1386 Scrubbed output at /usr/share/perl5/Catalyst/Action/RenderView.pm line 46."
1387
1388Along with a summary of your application's state at the end of the
1389processing for that request. The "Stash" section should show a
1390summarized version of the DBIC book model objects. If desired, you
1391can adjust the summarization logic (called "scrubbing" logic) -- see
1392L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> for
1393details.
1394
1395Note that you shouldn't need to worry about "normal clients" using
1396this technique to "reverse engineer" your application -- C<RenderView>
1397only supports the C<dump_info=1> feature when your application is
1398running in C<-Debug> mode (something you won't do once you have your
1399application deployed in production).
1400
1401
3533daff 1402=head2 Using The Default Template Name
1403
1390ef0e 1404By default, C<Catalyst::View::TT> will look for a template that uses the
1405same name as your controller action, allowing you to save the step of
1406manually specifying the template name in each action. For example, this
1407would allow us to remove the
1408C<$c-E<gt>stash-E<gt>{template} = 'books/list.tt2';> line of our
1409C<list> action in the Books controller. Open
3533daff 1410C<lib/MyApp/Controller/Books.pm> in your editor and comment out this line
1411to match the following (only the C<$c-E<gt>stash-E<gt>{template}> line
1412has changed):
1413
1414 =head2 list
1415
1416 Fetch all book objects and pass to books/list.tt2 in stash to be displayed
1417
1418 =cut
1419
1420 sub list : Local {
1421 # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
1422 # 'Context' that's used to 'glue together' the various components
1423 # that make up the application
1424 my ($self, $c) = @_;
1425
1426 # Retrieve all of the book records as book model objects and store in the
1427 # stash where they can be accessed by the TT template
3b1fa91b 1428 $c->stash->{books} = [$c->model('DB::Book')->all];
3533daff 1429
1430 # Set the TT template to use. You will almost always want to do this
1431 # in your action methods (actions methods respond to user input in
1432 # your controllers).
61cb69fd 1433 #$c->stash(template => 'books/list.tt2');
3533daff 1434 }
1435
3533daff 1436
1390ef0e 1437You should now be able to restart the development server as per the
3533daff 1438previous section and access the L<http://localhost:3000/books/list>
1439as before.
1440
1441B<NOTE:> Please note that if you use the default template technique,
1442you will B<not> be able to use either the C<$c-E<gt>forward> or
4b4d3884 1443the C<$c-E<gt>detach> mechanisms (these are discussed in Chapter 2 and
1444Chapter 9 of the Tutorial).
3533daff 1445
3b1fa91b 1446B<IMPORTANT:> Make sure that you do NOT skip the following section
1447before continuing to the next chapter 4 Basic CRUD.
3533daff 1448
fce83e5f 1449
4d63a0d5 1450=head2 Return To A Manually Specified Template
3533daff 1451
1452In order to be able to use C<$c-E<gt>forward> and C<$c-E<gt>detach>
1453later in the tutorial, you should remove the comment from the
1454statement in C<sub list> in C<lib/MyApp/Controller/Books.pm>:
1455
1456 $c->stash->{template} = 'books/list.tt2';
1457
1390ef0e 1458Then delete the C<TEMPLATE_EXTENSION> line in
3533daff 1459C<lib/MyApp/View/TT.pm>.
1460
1390ef0e 1461You should then be able to restart the development server and
3533daff 1462access L<http://localhost:3000/books/list> in the same manner as
1463with earlier sections.
1464
1465
1466=head1 AUTHOR
1467
1468Kennedy Clark, C<hkclark@gmail.com>
1469
1470Please report any errors, issues or suggestions to the author. The
1471most recent version of the Catalyst Tutorial can be found at
59884771 1472L<http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Tutorial/>.
3533daff 1473
45c7830f 1474Copyright 2006-2008, Kennedy Clark, under Creative Commons License
8482d557 1475(L<http://creativecommons.org/licenses/by-sa/3.0/us/>).