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