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