=head1 NAME Catalyst::Manual::Tutorial - Catalyst Tutorial: Overview =head1 DESCRIPTION The Catalyst framework is a flexible and comprehensive environment for quickly building high-functionality web applications. This tutorial is designed to provide a rapid introduction to its basics and its most commonly used features while focusing on real-world best practices. The tutorial is divided into the following sections: B CLICK THESE LINKS TO JUMP TO CHAPTERS (the index links above only navigate inside this page). =over 4 =item 1 L =item 2 L =item 3 L =item 4 L =item 5 L =item 6 L =item 7 L =item 8 L =item 9 L =item 10 L =back A tarball of the final application is available at L. =head1 Detailed Table of Contents =head2 L =over 4 =item * VERSIONS AND CONVENTIONS USED IN THIS TUTORIAL =item * CATALYST INSTALLATION =item * DATABASES =item * WHERE TO GET WORKING CODE =back =head2 L =over 4 =item * CREATE A CATALYST PROJECT =item * HELLO WORLD =over 4 =item * The Simplest Way =item * Hello, World! Using a View and a Template =back =item * CREATE A SIMPLE CONTROLLER AND AN ACTION =back =head2 L =over 4 =item * CREATE A NEW APPLICATION =item * EDIT THE LIST OF CATALYST PLUGINS =item * CREATE A CATALYST CONTROLLER =item * CATALYST VIEWS =over 4 =item * Create a Catalyst View Using TTSite =item * Globally Customize Every View =item * Create a TT Template Page =back =item * CREATE A SQLITE DATABASE =item * DATABASE ACCESS WITH DBIx::Class =over 4 =item * Create a Dynamic DBIC Model =back =item * RUN THE APPLICATION =item * A STATIC DATABASE MODEL WITH DBIx::Class =over 4 =item * Create Static DBIC Schema Files =item * Updating the Generated DBIC Schema Files =back =item * RUN THE APPLICATION =item * RUNNING THE APPLICATION FROM THE COMMAND LINE =item * UPDATING THE VIEW =over 4 =item * Using RenderView for the Default View =item * Using The Default Template Name =item * Return To A Manually-Specified Template =back =back =head2 L =over 4 =item * FORMLESS SUBMISSION =over 4 =item * Include a Create Action in the Books Controller =item * Include a Template for the url_create Action: =item * Try the url_create Feature =back =item * MANUALLY BUILDING A CREATE FORM =over 4 =item * Add a Method to Display the Form =item * Add a Template for the Form =item * Add Method to Process Form Values and Update Database =item * Test Out the Form =back =item * A SIMPLE DELETE FEATURE =over 4 =item * Include a Delete Link in the List =item * Add a Delete Action to the Controller =item * Try the Delete Feature =item * Fixing a Dangerous URL =item * Try the Delete and Redirect Logic =item * Using uri_for to Pass Query Parameters =item * Try the Delete and Redirect With Query Param Logic =back =back =head2 L =over 4 =item * BASIC AUTHENTICATION =over 4 =item * Add Users and Roles to the Database =item * Add User and Role Information to DBIC Schema =item * Sanity-Check Reload of Development Server =item * Include Authentication and Session Plugins =item * Configure Authentication =item * Add Login and Logout Controllers =item * Add a Login Form TT Template Page =item * Add Valid User Check =item * Displaying Content Only to Authenticated Users =item * Try Out Authentication =back =item * USING PASSWORD HASHES =over 4 =item * Get a SHA-1 Hash for the Password =item * Switch to SHA-1 Password Hashes in the Database =item * Enable SHA-1 Hash Passwords in Catalyst::Plugin::Authentication::Store::DBIC =item * Try Out the Hashed Passwords =back =item * USING THE SESSION FOR FLASH =over 4 =item * Try Out Flash =item * Switch To Flash-To-Stash =back =back =head2 L =over 4 =item * BASIC AUTHORIZATION =over 4 =item * Update Plugins to Include Support for Authorization =item * Add Config Information for Authorization =item * Add Role-Specific Logic to the ``Book List'' Template =item * Limit Books::add to admin Users =item * Try Out Authentication And Authorization =back =item * ENABLE ACL-BASED AUTHORIZATION =over 4 =item * Add the Catalyst::Plugin::Authorization::ACL Plugin =item * Add ACL Rules to the Application Class =item * Add a Method to Handle Access Violations =back =back =head2 L =over 4 =item * LOG STATEMENTS =item * RUNNING CATALYST UNDER THE PERL DEBUGGER =item * DEBUGGING MODULES FROM CPAN =back =head2 L =over 4 =item * RUNNING THE "CANNED" CATALYST TESTS =item * RUNNING A SINGLE TEST =item * ADDING YOUR OWN TEST SCRIPT =item * SUPPORTING BOTH PRODUCTION AND TEST DATABASES =back =head2 L =over 4 =item * ADVANCED CRUD OPTIONS =back =head2 L =over 4 =item * APPENDIX 1: CUT AND PASTE FOR POD-BASED EXAMPLES =over 4 =item * "Un-indenting" with Vi/Vim =item * "Un-indenting" with Emacs =back =item * APPENDIX 2: USING MYSQL AND POSTGRESQL =over 4 =item * MySQL =item * PostgreSQL =back =item * APPENDIX 3: IMPROVED HASHING SCRIPT =back =head1 THANKS This tutorial would not have been possible without the input of many different people in the Catalyst community. In particular, the primary author would like to thank: =over 4 =item * Sebastian Riedel for founding the Catalyst project. =item * The members of the Catalyst Core Team for their tireless efforts to advance the Catalyst project. Although all of the Core Team members have played a key role in this tutorial, it would have never been possible without the critical contributions of: Matt Trout, for his unfathomable knowledge of all things Perl and Catalyst (and his willingness to answer lots of my questions); Jesse Sheidlower, for his incredible skill with the written word and dedication to improving the Catalyst documentation; and Yuval Kogman, for his work on the Catalyst "Auth & Authz" plugins (the original focus of the tutorial) and other key Catalyst modules. =item * Other Catalyst documentation folks like Kieren Diment, Gavin Henry, and Jess Robinson (including their work on the original Catalyst tutorial). =item * Kieren Diment for currently maintaining this document on CPAN. =item * Everyone on #catalyst and #catalyst-dev. =item * Louis Moore (who thanks Marcello Romani and Tom Lanyon) for the PostgreSQL content in the Appendix. =item * People who have emailed me with corrections and suggestions on the tutorial. As of the most recent release, this include: Florian Ragwitz, Mauro Andreolini, Jim Howard, Giovanni Gigante, William Moreno, Bryan Roach, Ashley Berlin, David Kamholz, Kevin Old, Henning Sprang, Jeremy Jones, David Kurtz, Ingo Wichmann, and Shlomi Fish. I'm sure I am missing some names here... apologies for that (please let me know if you name should be here). =back =head1 AUTHOR Kennedy Clark, C Please report any errors, issues or suggestions to the author. The most recent version of the Catalyst Tutorial can be found at L. Copyright 2006-2008, Kennedy Clark, under Creative Commons License (L).