Add additional information for transition from YAML to Config::General
[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
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
65applications.
66
67You can checkout the source code for this example from the catalyst
68subversion repository as per the instructions in
69L<Catalyst::Manual::Tutorial::Intro>
70
71
72=head1 CREATE A NEW APPLICATION
73
74The remainder of the tutorial will build an application call C<MyApp>.
75Use the Catalyst C<catalyst.pl> script to initialize the framework for
76an application called C<MyApp> (make sure you aren't still inside the
77directory of the C<Hello> application from the previous part of the
78tutorial):
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
89This creates a similar skeletal structure to what we saw in Part 2 of
90the tutorial, except with C<MyApp> or C<myapp> substituted for
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
97library of plugins available. Plugins are used to seamlessly integrate
98existing Perl modules into the overall Catalyst framework. In general,
99they do this by adding additional methods to the C<context> object
100(generally written as C<$c>) that Catalyst passes to every component
101throughout the framework.
102
103By default, Catalyst enables three plugins/flags:
104
105=over 4
106
107=item *
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
113this plugin when you place your application into production.
114
115As you may have noticed, C<-Debug> is not a plugin, but a I<flag>.
116Although most of the items specified on the C<use Catalyst> line of your
117application class will be plugins, Catalyst supports a limited number of
118flag options (of these, C<-Debug> is the most common). See the
119documentation for C<Catalyst.pm> to get details on other flags
120(currently C<-Engine>, C<-Home>, and C<-Log>).
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
128server. We will not be using that approach in the tutorial, but feel
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
15e1d0b2 143B<IMPORTANT NOTE>: If you are following along in Ubuntu 8.04 or
144otherwise using a version of Catalyst prior to v5.7014, you need to be
145aware that Catalyst changed from a default format of YAML to the more
146straightforward C<Config::General> format. Because Catalyst has long
147supported both formats, this tutorial will simply use a configuration
148file called C<myapp.conf> instead of C<myapp.yml> and Catatlyst will
149automcatically use the new format. Just be aware that earlier versions
150of Catalyst will still create the C<myapp.yml> file and that you will
151need to B<remove C<myapp.yml>> and create a new C<myapp.conf> file by
152hand, but otherwise this transition is very painless. The default
153contents of C<myapp.conf> should only consist of one line: C<name
154MyApp>. Also be aware that you can continue to use any format
155supported by
156L<Catalyst::Plugin::ConfigLoader|Catalyst::Plugin::ConfigLoader> and
157L<Config::Any|Config::Any>, including YAML -- Catalyst will
158automatically look for any of the supported configuration file formats.
159
160C<TIP>: This script can be useful for converting between configuration
161formats:
162
163 perl -Ilib -e 'use MyApp; use Config::General;
164 Config::General->new->save_file("myapp.conf", MyApp->config);'
165
166
3533daff 167=item *
168
169L<Catalyst::Plugin::Static::Simple|Catalyst::Plugin::Static::Simple>
170
171C<Static::Simple> provides an easy method of serving static content such
172as images and CSS files under the development server.
173
174=back
175
176To modify the list of plugins, edit C<lib/MyApp.pm> (this file is
177generally referred to as your I<application class>) and delete the line
178with:
179
180 use Catalyst qw/-Debug ConfigLoader Static::Simple/;
181
182Replace it with:
183
184 use Catalyst qw/
185 -Debug
186 ConfigLoader
187 Static::Simple
188
189 StackTrace
190 /;
191
192This tells Catalyst to start using one new plugin:
193
194=over 4
195
196=item *
197
198L<Catalyst::Plugin::StackTrace|Catalyst::Plugin::StackTrace>
199
200Adds a stack trace to the standard Catalyst "debug screen" (this is the
201screen Catalyst sends to your browser when an error occurs).
202
203Note: L<StackTrace|Catalyst::Plugin::StackTrace> output appears in your
204browser, not in the console window from which you're running your
205application, which is where logging output usually goes.
206
207=back
208
209Note that when specifying plugins on the C<use Catalyst> line, you can
210omit C<Catalyst::Plugin::> from the name. Additionally, you can spread
211the plugin names across multiple lines as shown here, or place them all
212on one (or more) lines as with the default configuration.
213
214
215=head1 CREATE A CATALYST CONTROLLER
216
217As discussed earlier, controllers are where you write methods that
218interact with user input. Typically, controller methods respond to
219C<GET> and C<POST> messages from the user's web browser.
220
221Use the Catalyst C<create> script to add a controller for book-related
222actions:
223
224 $ script/myapp_create.pl controller Books
225 exists "/home/me/MyApp/script/../lib/MyApp/Controller"
226 exists "/home/me/MyApp/script/../t"
227 created "/home/me/MyApp/script/../lib/MyApp/Controller/Books.pm"
228 created "/home/me/MyApp/script/../t/controller_Books.t"
229
230Then edit C<lib/MyApp/Controller/Books.pm> and add the following method
231to the controller:
232
233 =head2 list
234
235 Fetch all book objects and pass to books/list.tt2 in stash to be displayed
236
237 =cut
238
239 sub list : Local {
240 # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
241 # 'Context' that's used to 'glue together' the various components
242 # that make up the application
243 my ($self, $c) = @_;
244
245 # Retrieve all of the book records as book model objects and store in the
246 # stash where they can be accessed by the TT template
247 $c->stash->{books} = [$c->model('MyAppDB::Books')->all];
248
249 # Set the TT template to use. You will almost always want to do this
250 # in your action methods (action methods respond to user input in
251 # your controllers).
252 $c->stash->{template} = 'books/list.tt2';
253 }
254
255B<Note:> This won't actually work yet since you haven't set up your
256model yet.
257
258B<Note:> Programmers experienced with object-oriented Perl should
259recognize C<$self> as a reference to the object where this method was
260called. On the other hand, C<$c> will be new to many Perl programmers
261who have not used Catalyst before (it's sometimes written as
262C<$context>). The Context object is automatically passed to all
263Catalyst components. It is used to pass information between
264components and provide access to Catalyst and plugin functionality.
265
266B<TIP>: You may see the C<$c-E<gt>model('MyAppDB::Book')> used above
267written as C<$c-E<gt>model('MyAppDB')-E<gt>resultset('Book)>. The two
268are equivalent.
269
270B<Note:> Catalyst actions are regular Perl methods, but they make use
271of Nicholas Clark's C<attributes> module (that's the C<: Local> next
272to the C<sub list> in the code above) to provide additional
273information to the Catalyst dispatcher logic. Many newer Catalyst
274applications are switching to the use of "Literal" C<: Path> actions
275and C<Args> attribute in lieu of C<: Local> and C<: Private>. For
276example, C<sub any_method : Path Args(0)> can be used instead of
277C<sub index :Private> (because no path was supplied to C<Path> it
278matches the "empty" URL in the namespace of that module... the same
279thing C<sub index> would do) or C<sub list : Path('list') Args(0)>
280could be used instead of the C<sub list : Local> above (the C<list>
281argument to C<Path> would make it match on the URL C<list> under
282C<books>, the namespace of the current module). See "Action Types" in
283L<Catalyst::Manual::Intro|Catalyst::Manual::Intro> as well as Part 5
284of this tutorial (Authentication) for additional information. Another
285popular but more advanced feature is C<Chained> actions that allow a
286single URL to "chain together" multiple action method calls, each with
287an appropriate number of arguments (see
288L<Catalyst::DispatchType::Chained|Catalyst::DispatchType::Chained>
289for details).
290
291
292=head1 CATALYST VIEWS
293
294As mentioned in Part 2 of the tutorial, views are where you render
295output, typically for display in the user's web browser, but also
296possibly using other display output- generation systems. As with
297virtually every aspect of Catalyst, options abound when it comes to
298the specific view technology you adopt inside your application.
299However, most Catalyst applications use the Template Toolkit, known as
300TT (for more information on TT, see L<http://www.template-
301toolkit.org>). Other popular view technologies include Mason
302(L<http://www.masonhq.com> and L<http://www.masonbook.com>) and
303L<HTML::Template|HTML::Template> (L<http://html-
304template.sourceforge.net>).
305
306=head2 Create a Catalyst View Using C<TTSite>
307
308When using TT for the Catalyst view, there are two main helper scripts:
309
310=over 4
311
312=item *
313
314L<Catalyst::Helper::View::TT|Catalyst::Helper::View::TT>
315
316=item *
317
318L<Catalyst::Helper::View::TTSite|Catalyst::Helper::View::TTSite>
319
320=back
321
322Both are similar, but C<TT> merely creates the C<lib/MyApp/View/TT.pm>
323file and leaves the creation of any hierarchical template organization
324entirely up to you. (It also creates a C<t/view_TT.t> file for testing;
325test cases will be discussed in Part 8). The C<TTSite> helper creates a
326modular and hierarchical view layout with separate Template Toolkit (TT)
327files for common header and footer information, configuration values, a
328CSS stylesheet, and more.
329
330While TTSite is useful to bootstrap a project, we recommend that
331unless you know what you're doing or want to pretty much use the
332supplied templates as is, that you use the plain Template Toolkit view
333when starting a project from scratch. This is because TTSite can be
334tricky to customize. Additionally TT contains constructs that you
335need to learn yourself if you're going to be a serious user of TT.
336Our experience suggests that you're better off learning these from
337scratch. We use TTSite here precisely because it is useful for
338bootstrap/prototype purposes.
339
340Enter the following command to enable the C<TTSite> style of view
341rendering for this tutorial:
342
343 $ script/myapp_create.pl view TT TTSite
344 exists "/home/me/MyApp/script/../lib/MyApp/View"
345 exists "/home/me/MyApp/script/../t"
346 created "/home/me/MyApp/script/../lib/MyApp/View/TT.pm"
347 created "/home/me/MyApp/script/../root/lib"
348 ...
349 created "/home/me/MyApp/script/../root/src/ttsite.css"
350
351This puts a number of files in the C<root/lib> and C<root/src>
352directories that can be used to customize the look and feel of your
353application. Also take a look at C<lib/MyApp/View/TT.pm> for config
354values set by the C<TTSite> helper.
355
356B<TIP>: Note that TTSite does one thing that could confuse people who
357are used to the normal C<TT> Catalyst view: it redefines the Catalyst
358context object in templates from its usual C<c> to C<Catalyst>. When
359looking at other Catalyst examples, remember that they almost always use
360C<c>. Note that Catalyst and TT I<do not complain> when you use the
361wrong name to access the context object...TT simply outputs blanks for
362that bogus logic (see next tip to change this behavior with TT C<DEBUG>
363options). Finally, be aware that this change in name I<only>
364applies to how the context object is accessed inside your TT templates;
365your controllers will continue to use C<$c> (or whatever name you use
366when fetching the reference from C<@_> inside your methods). (You can
367change back to the "default" behavior be removing the C<CATALYST_VAR>
368line from C<lib/MyApp/View/TT.pm>, but you will also have to edit
369C<root/lib/config/main> and C<root/lib/config/url>. If you do this, be
370careful not to have a collision between your own C<c> variable and the
371Catalyst C<c> variable.)
372
373B<TIP>: When troubleshooting TT it can be helpful to enable variable
374C<DEBUG> options. You can do this in a Catalyst environment by adding
375a C<DEBUG> line to the C<__PACKAGE__->config> declaration in
376C<lib/MyApp/View/TT.pm>:
377
378 __PACKAGE__->config({
379 CATALYST_VAR => 'Catalyst',
380 ...
381 DEBUG => 'undef',
382 ...
383 });
384
385B<Note:> C<__PACKAGE__> is just a shorthand way of referencing the name
386of the package where it is used. Therefore, in C<TT.pm>,
387C<__PACKAGE__> is equivalent to C<TT>.
388
389There are a variety of options you can use, such as 'undef', 'all',
390'service', 'context', 'parser', 'provider', and 'service'. See
391L<Template::Constants> for more information (remove the C<DEBUG_>
392portion of the name shown in the TT docs and convert to lower case
393for use inside Catalyst).
394
395B<NOTE:> B<Please be sure to disable TT debug options before
396continuing the tutorial> (especially the 'undef' option -- leaving
397this enabled will conflict with several of the conventions used
398by this tutorial and TTSite to leave some variables undefined
399on purpose).
400
401
402=head2 Globally Customize Every View
403
404When using TTSite, files in the subdirectories of C<root/lib> can be
405used to make changes that will appear in every view. For example, to
406display optional status and error messages in every view, edit
407C<root/lib/site/layout>, updating it to match the following (the two HTML
408C<span> elements are new):
409
410 <div id="header">[% PROCESS site/header %]</div>
411
412 <div id="content">
413 <span class="message">[% status_msg %]</span>
414 <span class="error">[% error_msg %]</span>
415 [% content %]
416 </div>
417
418 <div id="footer">[% PROCESS site/footer %]</div>
419
420If we set either message in the Catalyst stash (e.g.,
421C<$c-E<gt>stash-E<gt>{status_msg} = 'Request was successful!'>) it will
422be displayed whenever any view used by that request is rendered. The
423C<message> and C<error> CSS styles are automatically defined in
424C<root/src/ttsite.css> and can be customized to suit your needs.
425
426B<Note:> The Catalyst stash only lasts for a single HTTP request. If
427you need to retain information across requests you can use
428L<Catalyst::Plugin::Session|Catalyst::Plugin::Session> (we will use
429Catalyst sessions in the Authentication part of the tutorial).
430
431
432=head2 Create a TT Template Page
433
434To add a new page of content to the TTSite view hierarchy, just create a
435new C<.tt2> file in C<root/src>. Only include HTML markup that goes
436inside the HTML <body> and </body> tags, TTSite will use the contents of
437C<root/lib/site> to add the top and bottom.
438
439First create a directory for book-related TT templates:
440
441 $ mkdir root/src/books
442
443Then create C<root/src/books/list.tt2> in your editor and enter:
444
445 [% # This is a TT comment. The '-' at the end "chomps" the newline. You won't -%]
446 [% # see this "chomping" in your browser because HTML ignores blank lines, but -%]
447 [% # it WILL eliminate a blank line if you view the HTML source. It's purely -%]
448 [%- # optional, but both the beginning and the ending TT tags support chomping. -%]
449
450 [% # Provide a title to root/lib/site/header -%]
451 [% META title = 'Book List' -%]
452
453 <table>
454 <tr><th>Title</th><th>Rating</th><th>Author(s)</th></tr>
455 [% # Display each book in a table row %]
456 [% FOREACH book IN books -%]
457 <tr>
458 <td>[% book.title %]</td>
459 <td>[% book.rating %]</td>
460 </tr>
461 [% END -%]
462 </table>
463
464As indicated by the inline comments above, the C<META title> line uses
465TT's META feature to provide a title to C<root/lib/site/header>.
466Meanwhile, the outer C<FOREACH> loop iterates through each C<book> model
467object and prints the C<title> and C<rating> fields. An inner
468C<FOREACH> loop prints the last name of each author in a comma-separated
469list within a single table cell.
470
471If you are new to TT, the C<[%> and C<%]> tags are used to delimit TT
472code. TT supports a wide variety of directives for "calling" other
473files, looping, conditional logic, etc. In general, TT simplifies the
474usual range of Perl operators down to the single dot (C<.>) operator.
475This applies to operations as diverse as method calls, hash lookups, and
476list index values (see
477L<http://www.template-toolkit.org/docs/default/Manual/Variables.html>
478for details and examples). In addition to the usual C<Template> module
479Pod documentation, you can access the TT manual at
480L<http://www.template-toolkit.org/docs/default/>.
481
482B<NOTE>: The C<TTSite> helper creates several TT files using an
483extension of C<.tt2>. Most other Catalyst and TT examples use an
484extension of C<.tt>. You can use either extension (or no extension at
485all) with TTSite and TT, just be sure to use the appropriate extension
486for both the file itself I<and> the C<$c-E<gt>stash-E<gt>{template} =
487...> line in your controller. This document will use C<.tt2> for
488consistency with the files already created by the C<TTSite> helper.
489
490
491=head1 CREATE A SQLITE DATABASE
492
493In this step, we make a text file with the required SQL commands to
494create a database table and load some sample data. Open C<myapp01.sql>
495in your editor and enter:
496
497 --
498 -- Create a very simple database to hold book and author information
499 --
500 CREATE TABLE books (
501 id INTEGER PRIMARY KEY,
502 title TEXT ,
503 rating INTEGER
504 );
505 -- 'book_authors' is a many-to-many join table between books & authors
506 CREATE TABLE book_authors (
507 book_id INTEGER,
508 author_id INTEGER,
509 PRIMARY KEY (book_id, author_id)
510 );
511 CREATE TABLE authors (
512 id INTEGER PRIMARY KEY,
513 first_name TEXT,
514 last_name TEXT
515 );
516 ---
517 --- Load some sample data
518 ---
519 INSERT INTO books VALUES (1, 'CCSP SNRS Exam Certification Guide', 5);
520 INSERT INTO books VALUES (2, 'TCP/IP Illustrated, Volume 1', 5);
521 INSERT INTO books VALUES (3, 'Internetworking with TCP/IP Vol.1', 4);
522 INSERT INTO books VALUES (4, 'Perl Cookbook', 5);
523 INSERT INTO books VALUES (5, 'Designing with Web Standards', 5);
524 INSERT INTO authors VALUES (1, 'Greg', 'Bastien');
525 INSERT INTO authors VALUES (2, 'Sara', 'Nasseh');
526 INSERT INTO authors VALUES (3, 'Christian', 'Degu');
527 INSERT INTO authors VALUES (4, 'Richard', 'Stevens');
528 INSERT INTO authors VALUES (5, 'Douglas', 'Comer');
529 INSERT INTO authors VALUES (6, 'Tom', 'Christiansen');
530 INSERT INTO authors VALUES (7, 'Nathan', 'Torkington');
531 INSERT INTO authors VALUES (8, 'Jeffrey', 'Zeldman');
532 INSERT INTO book_authors VALUES (1, 1);
533 INSERT INTO book_authors VALUES (1, 2);
534 INSERT INTO book_authors VALUES (1, 3);
535 INSERT INTO book_authors VALUES (2, 4);
536 INSERT INTO book_authors VALUES (3, 5);
537 INSERT INTO book_authors VALUES (4, 6);
538 INSERT INTO book_authors VALUES (4, 7);
539 INSERT INTO book_authors VALUES (5, 8);
540
541B<TIP>: See Appendix 1 for tips on removing the leading spaces when
542cutting and pasting example code from POD-based documents.
543
544Then use the following command to build a C<myapp.db> SQLite database:
545
546 $ sqlite3 myapp.db < myapp01.sql
547
548If you need to create the database more than once, you probably want to
549issue the C<rm myapp.db> command to delete the database before you use
550the C<sqlite3 myapp.db < myapp01.sql> command.
551
552Once the C<myapp.db> database file has been created and initialized, you
553can use the SQLite command line environment to do a quick dump of the
554database contents:
555
556 $ sqlite3 myapp.db
557 SQLite version 3.4.2
558 Enter ".help" for instructions
559 sqlite> select * from books;
560 1|CCSP SNRS Exam Certification Guide|5
561 2|TCP/IP Illustrated, Volume 1|5
562 3|Internetworking with TCP/IP Vol.1|4
563 4|Perl Cookbook|5
564 5|Designing with Web Standards|5
565 sqlite> .q
566 $
567
568Or:
569
570 $ sqlite3 myapp.db "select * from books"
571 1|CCSP SNRS Exam Certification Guide|5
572 2|TCP/IP Illustrated, Volume 1|5
573 3|Internetworking with TCP/IP Vol.1|4
574 4|Perl Cookbook|5
575 5|Designing with Web Standards|5
576
577As with most other SQL tools, if you are using the full "interactive"
578environment you need to terminate your SQL commands with a ";" (it's not
579required if you do a single SQL statement on the command line). Use
580".q" to exit from SQLite from the SQLite interactive mode and return to
581your OS command prompt.
582
583
584=head1 DATABASE ACCESS WITH C<DBIx::Class>
585
586Catalyst can be used with virtually any form of persistent datastore
587available via Perl. For example,
588L<Catalyst::Model::DBI|Catalyst::Model::DBI> can be used to
589easily access databases through the traditional Perl C<DBI> interface.
590However, most Catalyst applications use some form of ORM technology to
591automatically create and save model objects as they are used. Although
592Tony Bowden's L<Class::DBI|Class::DBI> has been a popular choice
593in the past, Matt Trout's L<DBIx::Class|DBIx::Class> (abbreviated
594as "DBIC") has rapidly emerged as the Perl-based ORM technology of choice.
595Most new Catalyst applications rely on DBIC, as will this tutorial.
596
c010ae0d 597=head2 Create a DBIC Model
3533daff 598
c010ae0d 599Use the C<create=static> model helper option to build a model that
3533daff 600dynamically reads your database structure every time the application
601starts:
602
c010ae0d 603 $ script/myapp_create.pl model MyAppDB DBIC::Schema MyApp::Schema::MyAppDB create=static dbi:SQLite:myapp.db
3533daff 604 exists "/home/me/MyApp/script/../lib/MyApp/Model"
605 exists "/home/me/MyApp/script/../t"
606 created "/home/me/MyApp/script/../lib/MyApp/Schema"
607 created "/home/me/MyApp/script/../lib/MyApp/Schema/MyAppDB.pm"
608 created "/home/me/MyApp/script/../lib/MyApp/Model/MyAppDB.pm"
609 created "/home/me/MyApp/script/../t/model_MyAppDB.t"
610
611
612C<MyAppDB> is the name of the model class to be created by the helper in
613C<lib/MyApp/Model> (Catalyst has a separate directory under C<lib/MyApp>
614for each of the three parts of MVC: C<Model>, C<View>, and C<Controller>
615[although older Catalyst applications often use the directories C<M>,
616C<V>, and C<C>]). C<DBIC::Schema> is the type of the model to create.
617C<MyApp::Schema::MyAppDB> is the name of the DBIC schema file written to
618C<lib/MyApp/Schema/MyAppDB.pm>. Because we specified C<create=dynamic>
619to the helper, it use L<DBIx::Class::Schema::Loader> to dynamically load
620the schema information from the database every time the application
621starts. And finally, C<dbi:SQLite:myapp.db> is the standard DBI connect
622string for use with SQLite.
623
3533daff 624=head1 RUN THE APPLICATION
625
626First, let's enable an environment variable option that causes
627DBIx::Class to dump the SQL statements it's using to access the database
628(this option can provide extremely helpful troubleshooting information):
629
630 $ export DBIC_TRACE=1
631
632This assumes you are using BASH as your shell -- adjust accordingly if
633you are using a different shell (for example, under tcsh, use
634C<setenv DBIC_TRACE 1>).
635
636B<NOTE>: You can also set this in your code using
637C<$class-E<gt>storage-E<gt>debug(1);>. See
638L<DBIx::Class::Manual::Troubleshooting> for details (including options
639to log to file instead of displaying to the Catalyst development server
640log).
641
642Then run the Catalyst "demo server" script:
643
644 $ script/myapp_server.pl
645
646Your development server log output should display something like:
647
648 $script/myapp_server.pl
649 [debug] Debug messages enabled
650 [debug] Loaded plugins:
651 .----------------------------------------------------------------------------.
652 | Catalyst::Plugin::ConfigLoader 0.17 |
653 | Catalyst::Plugin::StackTrace 0.06 |
654 | Catalyst::Plugin::Static::Simple 0.20 |
655 '----------------------------------------------------------------------------'
656
657 [debug] Loaded dispatcher "Catalyst::Dispatcher"
658 [debug] Loaded engine "Catalyst::Engine::HTTP"
659 [debug] Found home "/home/me/MyApp"
660 [debug] Loaded Config "/home/me/MyApp/myapp.yml"
661 [debug] Loaded components:
662 .-----------------------------------------------------------------+----------.
663 | Class | Type |
664 +-----------------------------------------------------------------+----------+
665 | MyApp::Controller::Books | instance |
666 | MyApp::Controller::Root | instance |
667 | MyApp::Model::MyAppDB | instance |
668 | MyApp::Model::MyAppDB::Authors | class |
669 | MyApp::Model::MyAppDB::BookAuthors | class |
670 | MyApp::Model::MyAppDB::Books | class |
671 | MyApp::View::TT | instance |
672 '-----------------------------------------------------------------+----------'
673
674 [debug] Loaded Private actions:
675 .----------------------+--------------------------------------+--------------.
676 | Private | Class | Method |
677 +----------------------+--------------------------------------+--------------+
678 | /default | MyApp::Controller::Root | default |
679 | /end | MyApp::Controller::Root | end |
680 | /books/index | MyApp::Controller::Books | index |
681 | /books/list | MyApp::Controller::Books | list |
682 '----------------------+--------------------------------------+--------------'
683
684 [debug] Loaded Path actions:
685 .-------------------------------------+--------------------------------------.
686 | Path | Private |
687 +-------------------------------------+--------------------------------------+
688 | /books/list | /books/list |
689 '-------------------------------------+--------------------------------------'
690
691 [info] MyApp powered by Catalyst 5.7011
692 You can connect to your server at http://localhost:3000
693
694B<NOTE>: Be sure you run the C<script/myapp_server.pl> command from
695the 'base' directory of your application, not inside the C<script>
696directory itself or it will not be able to locate the C<myapp.db>
697database file. You can use a fully qualified or a relative path to
698locate the database file, but we did not specify that when we ran the
699model helper earlier.
700
701Some things you should note in the output above:
702
703=over 4
704
705=item *
706
707Catalyst::Model::DBIC::Schema dynamically created three model classes,
708one to represent each of the three tables in our database
709(C<MyApp::Model::MyAppDB::Authors>, C<MyApp::Model::MyAppDB::BookAuthors>,
710and C<MyApp::Model::MyAppDB::Books>).
711
712=item *
713
714The "list" action in our Books controller showed up with a path of
715C</books/list>.
716
717=back
718
719Point your browser to L<http://localhost:3000> and you should still get
720the Catalyst welcome page.
721
722Next, to view the book list, change the URL in your browser to
723L<http://localhost:3000/books/list>. You should get a list of the five
724books loaded by the C<myapp01.sql> script above, with TTSite providing
725the formatting for the very simple output we generated in our template.
726The rating for each book should appear on each row.
727
728Also notice in the output of the C<script/myapp_server.pl> that DBIC
729used the following SQL to retrieve the data:
730
731 SELECT me.id, me.title, me.rating FROM books me
732
733because we enabled DBIC_TRACE.
734
735You now the beginnings of a simple but workable web application.
736Continue on to future sections and we will develop the application
737more fully.
738
739
740=head1 A STATIC DATABASE MODEL WITH C<DBIx::Class>
741
742=head2 Create Static DBIC Schema Files
743
744Unlike the previous section where we had DBIC automatically discover the
745structure of the database every time the application started, here we
746will use static schema files for more control. This is typical of most
747"real world" applications.
748
749One option would be to create a separate schema file for each table in
750the database, however, lets use the same L<DBIx::Class::Schema::Loader>
751used earlier with C<create=dynamic> to build the static files for us.
752First, lets remove the schema file created in Part 2:
753
754 $ rm lib/MyApp/Schema/MyAppDB.pm
755
756Now regenerate the schema using the C<create=static> option:
757
758 $ script/myapp_create.pl model MyAppDB DBIC::Schema MyApp::Schema::MyAppDB create=static dbi:SQLite:myapp.db
759 exists "/home/me/MyApp/script/../lib/MyApp/Model"
760 exists "/home/me/MyApp/script/../t"
761 Dumping manual schema for MyApp::Schema::MyAppDB to directory /home/me/MyApp/script/../lib ...
762 Schema dump completed.
763 exists "/home/me/MyApp/script/../lib/MyApp/Model/MyAppDB.pm"
764
765We could have also deleted C<lib/MyApp/Model/MyAppDB.pm>, but it would
766have regenerated the same file (note the C<exists> in the output above).
767If you take a look at C<lib/MyApp/Model/MyAppDB.pm>, it simply contains
768a reference to the actual schema file in C<lib/MyApp/Schema/MyAppDB.pm>
769along with the database connect string.
770
771If you look in the C<lib/MyApp/Schema> directory, you will find that
772C<MyAppDB.pm> is no longer using L<DBIx::Class::Schema::Loader> as its
773base class (L<DBIx::Class::Schema::Loader> is only being used by the
774helper to load the schema once and then create the static files for us)
775and that it only contains a call to the C<load_classes> method. You
776will also find that C<lib/MyApp/Schema> contains a C<MyAppDB>
777subdirectory, with one file inside this directory for each of the tables
778in our simple database (C<Authors.pm>, C<BookAuthors.pm>, and
779C<Books.pm>). These three files were created based on the information
780found by L<DBIx::Class::Schema::Loader> as the helper ran.
781
782The idea with all of the files created under C<lib/MyApp/Schema> by the
783C<create=static> option is to only edit the files below the C<# DO NOT
784MODIFY THIS OR ANYTHING ABOVE!> warning. If you place all of your
785changes below that point in the file, you can regenerate the
786auto-generated information at the top of each file should your database
787structure get updated.
788
789Also note the "flow" of the model information across the various files
790and directories. Catalyst will initially load the model from
791C<lib/MyApp/Model/MyAppDB.pm>. This file contains a reference to
792C<lib/MyApp/Schema/MyAppDB.pm>, so that file is loaded next. Finally,
793the call to C<load_classes> in that file will load each of the
794table-specific "results source" files from the C<lib/MyApp/Schema/MyAppDB>
795subdirectory. These three table-specific DBIC schema files will then be
796used to create three table-specific Catalyst models every time the
797application starts (you can see these three model files listed in
798the debug output generated when you launch the application).
799
800
801=head2 Updating the Generated DBIC Schema Files
802
803
804Let's manually add some relationship information to the auto-generated
805schema files. First edit C<lib/MyApp/Schema/MyAppDB/Books.pm> and
806add the following text below the C<# You can replace this text...>
807comment:
808
809 #
810 # Set relationships:
811 #
812
813 # has_many():
814 # args:
815 # 1) Name of relationship, DBIC will create accessor with this name
816 # 2) Name of the model class referenced by this relationship
817 # 3) Column name in *foreign* table
818 __PACKAGE__->has_many(book_authors => 'MyApp::Schema::MyAppDB::BookAuthors', 'book_id');
819
820 # many_to_many():
821 # args:
822 # 1) Name of relationship, DBIC will create accessor with this name
823 # 2) Name of has_many() relationship this many_to_many() is shortcut for
824 # 3) Name of belongs_to() relationship in model class of has_many() above
825 # You must already have the has_many() defined to use a many_to_many().
826 __PACKAGE__->many_to_many(authors => 'book_authors', 'author');
827
828
829B<Note:> Be careful to put this code I<above> the C<1;> at the end of the
830file. As with any Perl package, we need to end the last line with
831a statement that evaluates to C<true>. This is customarily done with
832C<1;> on a line by itself.
833
834This code defines both a C<has_many> and a C<many_to_many> relationship.
835The C<many_to_many> relationship is optional, but it makes it easier to
836map a book to its collection of authors. Without it, we would have to
837"walk" though the C<book_authors> table as in C<$book-E<gt>book_authors-
838E<gt>first-E<gt>author-E<gt>last_name> (we will see examples on how to
839use DBIC objects in your code soon, but note that because C<$book-
840E<gt>book_authors> can return multiple authors, we have to use C<first>
841to display a single author). C<many_to_many> allows us to use the
842shorter C<$book-E<gt>authors-E<gt>first-E<gt>last_name>. Note that you
843cannot define a C<many_to_many> relationship without also having the
844C<has_many> relationship in place.
845
846Then edit C<lib/MyApp/Schema/MyAppDB/Authors.pm> and add relationship
847information as follows (again, be careful to put in above the C<1;> but
848below the C<# DO NOT MODIFY THIS OR ANYTHING ABOVE!> comment):
849
850 #
851 # Set relationships:
852 #
853
854 # has_many():
855 # args:
856 # 1) Name of relationship, DBIC will create accessor with this name
857 # 2) Name of the model class referenced by this relationship
858 # 3) Column name in *foreign* table
859 __PACKAGE__->has_many(book_author => 'MyApp::Schema::MyAppDB::BookAuthors', 'author_id');
860
861 # many_to_many():
862 # args:
863 # 1) Name of relationship, DBIC will create accessor with this name
864 # 2) Name of has_many() relationship this many_to_many() is shortcut for
865 # 3) Name of belongs_to() relationship in model class of has_many() above
866 # You must already have the has_many() defined to use a many_to_many().
867 __PACKAGE__->many_to_many(books => 'book_author', 'book');
868
869Finally, do the same for the "join table,"
870C<lib/MyApp/Schema/MyAppDB/BookAuthors.pm>:
871
872 #
873 # Set relationships:
874 #
875
876 # belongs_to():
877 # args:
878 # 1) Name of relationship, DBIC will create accessor with this name
879 # 2) Name of the model class referenced by this relationship
880 # 3) Column name in *this* table
881 __PACKAGE__->belongs_to(book => 'MyApp::Schema::MyAppDB::Books', 'book_id');
882
883 # belongs_to():
884 # args:
885 # 1) Name of relationship, DBIC will create accessor with this name
886 # 2) Name of the model class referenced by this relationship
887 # 3) Column name in *this* table
888 __PACKAGE__->belongs_to(author => 'MyApp::Schema::MyAppDB::Authors', 'author_id');
889
890
891=head1 RUN THE APPLICATION
892
893Run the Catalyst "demo server" script with the C<DBIC_TRACE> option
894(it might still be enabled from earlier in the tutorial, but here
895is an alternate way to specify the option just in case):
896
897 $ DBIC_TRACE=1 script/myapp_server.pl
898
899Make sure that the application loads correctly and that you see the
900three dynamically created model class (one for each of the
901table-specific schema classes we created).
902
903Then hit the URL L<http://localhost:3000/books/list> and be sure that
904the book list is displayed.
905
906
907=head1 RUNNING THE APPLICATION FROM THE COMMAND LINE
908
909In some situations, it can be useful to run your application and
910display a page without using a browser. Catalyst lets you do this
911using the C<scripts/myapp_test.pl> script. Just supply the URL you
912wish to display and it will run that request through the normal
913controller dispatch logic and use the appropriate view to render the
914output (obviously, complex pages may dump a lot of text to your
915terminal window). For example, if you type:
916
917 $ script/myapp_test.pl "/books/list"
918
919You should get the same text as if you visited
920L<http://localhost:3000/books/list> with the normal development server
921and asked your browser to view the page source.
922
923
924=head1 UPDATING THE VIEW
925
926Let's add a new column to our book list page that takes advantage of
927the relationship information we manually added to our schema files
928in the previous section. Edit C<root/src/books/list.tt2> add add the
929following code below the existing table cell that contains
930C<book.rating> (IOW, add a new table cell below the existing two
931C<td> cells):
932
933 <td>
934 [% # First initialize a TT variable to hold a list. Then use a TT FOREACH -%]
935 [% # loop in 'side effect notation' to load just the last names of the -%]
936 [% # authors into the list. Note that the 'push' TT vmethod does not -%]
937 [% # a value, so nothing will be printed here. But, if you have something -%]
938 [% # in TT that does return a method and you don't want it printed, you -%]
939 [% # can: 1) assign it to a bogus value, or 2) use the CALL keyword to -%]
940 [% # call it and discard the return value. -%]
941 [% tt_authors = [ ];
942 tt_authors.push(author.last_name) FOREACH author = book.authors %]
943 [% # Now use a TT 'virtual method' to display the author count in parens -%]
944 [% # Note the use of the TT filter "| html" to escape dangerous characters -%]
945 ([% tt_authors.size | html %])
946 [% # Use another TT vmethod to join & print the names & comma separators -%]
947 [% tt_authors.join(', ') | html %]
948 </td>
949
950Then hit C<Ctrl+R> in your browser (not that you don't need to reload
951the development server or use the C<-r> option when updating TT
952templates) and you should now the the number of authors each book and
953a comma-separated list of the author's last names.
954
955If you are still running the development server with C<DBIC_TRACE>
956enabled, you should also now see five more C<SELECT> statements in the
957debug output (one for each book as the authors are being retrieved by
958DBIC).
959
960Also note that we are using "| html", a type of TT filter, to escape
961characters such as E<lt> and E<gt> to &lt; and &gt; and avoid various
962types of dangerous hacks against your application. In a real
963application, you would probably want to put "| html" at the end of
964every field where a user has control over the information that can
965appear in that field (and can therefore inject markup or code if you
966don't "neutralize" those fields). In addition to "| html", Template
967Toolkit has a variety of other useful filters that can found in the
968documentation for L<Template::Filters|Template::Filters>.
969
970
971=head2 Using C<RenderView> for the Default View
972
973B<NOTE: The rest of this part of the tutorial is optional. You can
974skip to Part 4, L<Basic CRUD|Catalyst::Manual::Tutorial::BasicCRUD>,
975if you wish.>
976
977Once your controller logic has processed the request from a user, it
978forwards processing to your view in order to generate the appropriate
979response output. Catalyst uses
980L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> by
981default to automatically performs this operation. If you look in
982C<lib/MyApp/Controller/Root.pm>, you should see the empty
983definition for the C<sub end> method:
984
985 sub end : ActionClass('RenderView') {}
986
987The following bullet points provide a quick overview of the
988C<RenderView> process:
989
990=over 4
991
992=item *
993
994C<Root.pm> is designed to hold application-wide logic.
995
996=item *
997
998At the end of a given user request, Catalyst will call the most specific
999C<end> method that's appropriate. For example, if the controller for a
1000request has an C<end> method defined, it will be called. However, if
1001the controller does not define a controller-specific C<end> method, the
1002"global" C<end> method in C<Root.pm> will be called.
1003
1004=item *
1005
1006Because the definition includes an C<ActionClass> attribute, the
1007L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> logic
1008will be executed B<after> any code inside the definition of C<sub end>
1009is run. See L<Catalyst::Manual::Actions|Catalyst::Manual::Actions>
1010for more information on C<ActionClass>.
1011
1012=item *
1013
1014Because C<sub end> is empty, this effectively just runs the default
1015logic in C<RenderView>. However, you can easily extend the
1016C<RenderView> logic by adding your own code inside the empty method body
1017(C<{}>) created by the Catalyst Helpers when we first ran the
1018C<catalyst.pl> to initialize our application. See
1019L<Catalyst::Action::RenderView|Catalyst::Action::RenderView> for more
1020detailed information on how to extended C<RenderView> in C<sub end>.
1021
1022=back
1023
1024
1025=head2 Using The Default Template Name
1026
1027By default, C<Catalyst::View::TT> will look for a template that uses the
1028same name as your controller action, allowing you to save the step of
1029manually specifying the template name in each action. For example, this
1030would allow us to remove the
1031C<$c-E<gt>stash-E<gt>{template} = 'books/list.tt2';> line of our
1032C<list> action in the Books controller. Open
1033C<lib/MyApp/Controller/Books.pm> in your editor and comment out this line
1034to match the following (only the C<$c-E<gt>stash-E<gt>{template}> line
1035has changed):
1036
1037 =head2 list
1038
1039 Fetch all book objects and pass to books/list.tt2 in stash to be displayed
1040
1041 =cut
1042
1043 sub list : Local {
1044 # Retrieve the usual Perl OO '$self' for this object. $c is the Catalyst
1045 # 'Context' that's used to 'glue together' the various components
1046 # that make up the application
1047 my ($self, $c) = @_;
1048
1049 # Retrieve all of the book records as book model objects and store in the
1050 # stash where they can be accessed by the TT template
1051 $c->stash->{books} = [$c->model('MyAppDB::Books')->all];
1052
1053 # Set the TT template to use. You will almost always want to do this
1054 # in your action methods (actions methods respond to user input in
1055 # your controllers).
1056 #$c->stash->{template} = 'books/list.tt2';
1057 }
1058
1059C<Catalyst::View::TT> defaults to looking for a template with no
1060extension. In our case, we need to override this to look for an
1061extension of C<.tt2>. Open C<lib/MyApp/View/TT.pm> and add the
1062C<TEMPLATE_EXTENSION> definition as follows:
1063
1064 __PACKAGE__->config({
1065 CATALYST_VAR => 'Catalyst',
1066 INCLUDE_PATH => [
1067 MyApp->path_to( 'root', 'src' ),
1068 MyApp->path_to( 'root', 'lib' )
1069 ],
1070 PRE_PROCESS => 'config/main',
1071 WRAPPER => 'site/wrapper',
1072 ERROR => 'error.tt2',
1073 TIMER => 0,
1074 TEMPLATE_EXTENSION => '.tt2',
1075 });
1076
1077You should now be able to restart the development server as per the
1078previous section and access the L<http://localhost:3000/books/list>
1079as before.
1080
1081B<NOTE:> Please note that if you use the default template technique,
1082you will B<not> be able to use either the C<$c-E<gt>forward> or
1083the C<$c-E<gt>detach> mechanisms (these are discussed in Part 2 and
1084Part 9 of the Tutorial).
1085
1086
1087=head2 Return To A Manually-Specified Template
1088
1089In order to be able to use C<$c-E<gt>forward> and C<$c-E<gt>detach>
1090later in the tutorial, you should remove the comment from the
1091statement in C<sub list> in C<lib/MyApp/Controller/Books.pm>:
1092
1093 $c->stash->{template} = 'books/list.tt2';
1094
1095Then delete the C<TEMPLATE_EXTENSION> line in
1096C<lib/MyApp/View/TT.pm>.
1097
1098You should then be able to restart the development server and
1099access L<http://localhost:3000/books/list> in the same manner as
1100with earlier sections.
1101
1102
1103=head1 AUTHOR
1104
1105Kennedy Clark, C<hkclark@gmail.com>
1106
1107Please report any errors, issues or suggestions to the author. The
1108most recent version of the Catalyst Tutorial can be found at
1109L<http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Manual/lib/Catalyst/Manual/Tutorial/>.
1110
1111Copyright 2006, Kennedy Clark, under Creative Commons License
1112(L<http://creativecommons.org/licenses/by-nc-sa/2.5/>).
1113