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