Update revision numbers in 'svn co' commands.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Manual / Tutorial / Authorization.pod
1 =head1 NAME
2
3 Catalyst::Manual::Tutorial::Authorization - Catalyst Tutorial - Part 5: Authorization
4
5
6 =head1 OVERVIEW
7
8 This is B<Part 5 of 9> for the Catalyst tutorial.
9
10 L<Tutorial Overview|Catalyst::Manual::Tutorial>
11
12 =over 4
13
14 =item 1
15
16 L<Introduction|Catalyst::Manual::Tutorial::Intro>
17
18 =item 2
19
20 L<Catalyst Basics|Catalyst::Manual::Tutorial::CatalystBasics>
21
22 =item 3
23
24 L<Basic CRUD|Catalyst::Manual::Tutorial_BasicCRUD>
25
26 =item 4
27
28 L<Authentication|Catalyst::Manual::Tutorial::Authentication>
29
30 =item 5
31
32 B<Authorization>
33
34 =item 6
35
36 L<Debugging|Catalyst::Manual::Tutorial::Debugging>
37
38 =item 7
39
40 L<Testing|Catalyst::Manual::Tutorial::Testing>
41
42 =item 8
43
44 L<AdvancedCRUD|Catalyst::Manual::Tutorial::AdvancedCRUD>
45
46 =item 9
47
48 L<Appendices|Catalyst::Manual::Tutorial::Appendices>
49
50 =back
51
52
53
54 =head1 DESCRIPTION
55
56 This part of the tutorial adds role-based authorization to the existing
57 authentication implemented in Part 4.  It provides simple examples of
58 how to use roles in both TT templates and controller actions.  The first
59 half looks at manually configured authorization.  The second half looks
60 at how the ACL authorization plugin can simplify your code.
61
62 B<TIP>: Note that all of the code for this part of the tutorial can be
63 pulled from the Catalyst Subversion repository in one step with the
64 following command:
65
66     svn checkout http://dev.catalyst.perl.org/repos/Catalyst/trunk/examples/Tutorial@4613 .
67     IMPORTANT: Does not work yet.  Will be completed for final version.
68
69
70 =head1 BASIC AUTHORIZATION
71
72 In this section you learn how to manually configure authorization.
73
74 =head2 Update Plugins to Include Support for Authorization
75
76 Edit C<lib/MyApp.pm> and add C<Authorization::Roles> to the list:
77
78     use Catalyst qw/
79             -Debug
80             ConfigLoader
81             Static::Simple
82             
83             StackTrace
84             
85             Authentication
86             Authentication::Store::DBIC
87             Authentication::Credential::Password
88             Authorization::Roles
89             
90             Session
91             Session::Store::FastMmap
92             Session::State::Cookie
93             /;
94
95
96 =head2 Add Config Information for Authorization
97
98 Edit C<myapp.yml> and update it to match (everything from the
99 "authorization:" line down is new):
100
101     ---
102     name: MyApp
103     authentication:
104         dbic:
105             # Note this first definition would be the same as setting
106             # __PACKAGE__->config->{authentication}->{dbic}->{user_class} = 'MyAppDB::User'
107             # in lib/MyApp.pm (IOW, each hash key becomes a "name:" in the YAML file).
108             #
109             # This is the model object created by Catalyst::Model::DBIC from your
110             # schema (you created 'MyAppDB::User' but as the Catalyst startup
111             # debug messages show, it was loaded as 'MyApp::Model::MyAppDB::User').
112             # NOTE: Omit 'MyApp::Model' to avoid a component lookup issue in Catalyst 5.66
113             user_class: MyAppDB::User
114             # This is the name of the field in your 'users' table that contains the user's name
115             user_field: username
116             # This is the name of the field in your 'users' table that contains the password
117             password_field: password
118             # Other options can go here for hashed passwords
119             # Enabled hashed passwords
120             password_type: hashed
121             # Use the SHA-1 hashing algorithm
122             password_hash_type: SHA-1
123     authorization:
124         dbic:
125             # This is the model object created by Catalyst::Model::DBIC from your
126             # schema (you created 'MyAppDB::Role' but as the Catalyst startup
127             # debug messages show, it was loaded as 'MyApp::Model::MyAppDB::Role').
128             # NOTE: Omit 'MyApp::Model' to avoid a component lookup issue in Catalyst 5.66
129             role_class: MyAppDB::Role
130             # The name of the field in the 'roles' table that contains the role name
131             role_field: role
132             # The name of the accessor used to map a role to the users who have this role
133             # See the has_many() in MyAppDB/Role.pm
134             role_rel: map_user_role
135             # The name of the field in the user_role table that references the user
136             user_role_user_field: user_id
137
138
139 =head2 Add Role-Specific Logic to the "Book List" Template
140
141 Open C<root/src/books/list.tt2> in your editor and add the following
142 lines to the bottom of the file:
143
144     <p>Hello [% Catalyst.user.username %], you have the following roles:</p>
145     
146     <ul>
147       [% # Dump list of roles -%]
148       [% FOR role = Catalyst.user.roles %]<li>[% role %]</li>[% END %]
149     </ul>
150     
151     <p>
152     [% # Add some simple role-specific logic to template %]
153     [% # Use $c->check_user_roles() to check authz -%]
154     [% IF Catalyst.check_user_roles('user') %]
155       [% # Give normal users a link for 'logout' %]
156       <a href="[% Catalyst.uri_for('/logout') %]">Logout</a>
157     [% END %]
158     
159     [% # Can also use $c->user->check_roles() to check authz -%]
160     [% IF Catalyst.check_user_roles('admin') %]
161       [% # Give admin users a link for 'create' %]
162       <a href="[% Catalyst.uri_for('form_create') %]">Create</a>
163     [% END %]
164     </p>
165
166 This code displays a different combination of links depending on the
167 roles assigned to the user.
168
169 =head2 Limit C<Books::add> to C<admin> Users
170
171 C<IF> statements in TT templates simply control the output that is sent
172 to the user's browser; it provides no real enforcement (if users know or
173 guess the appropriate URLs, they are still perfectly free to hit any
174 action within your application).  We need to enhance the controller
175 logic to wrap restricted actions with role-validation logic.
176
177 For example, we might want to restrict the "formless create" action to
178 admin-level users by editing C<lib/MyApp/Controller/Books.pm> and
179 updating C<url_create> to match the following code:
180
181     =head2 url_create
182
183     Create a book with the supplied title and rating,
184     with manual authorization
185     
186     =cut
187     
188     sub url_create : Local {
189         # In addition to self & context, get the title, rating & author_id args
190         # from the URL.  Note that Catalyst automatically puts extra information
191         # after the "/<controller_name>/<action_name/" into @_
192         my ($self, $c, $title, $rating, $author_id) = @_;
193     
194         # Check the user's roles
195         if ($c->check_user_roles('admin')) {
196             # Call create() on the book model object. Pass the table 
197             # columns/field values we want to set as hash values
198             my $book = $c->model('MyAppDB::Book')->create({
199                     title   => $title,
200                     rating  => $rating
201                 });
202             
203             # Add a record to the join table for this book, mapping to 
204             # appropriate author
205             $book->add_to_book_authors({author_id => $author_id});
206             # Note: Above is a shortcut for this:
207             # $book->create_related('book_authors', {author_id => $author_id});
208             
209             # Assign the Book object to the stash for display in the view
210             $c->stash->{book} = $book;
211         
212             # This is a hack to disable XSUB processing in Data::Dumper
213             # (it's used in the view).  This is a work-around for a bug in
214             # the interaction of some versions or Perl, Data::Dumper & DBIC.
215             # You won't need this if you aren't using Data::Dumper (or if
216             # you are running DBIC 0.06001 or greater), but adding it doesn't 
217             # hurt anything either.
218             $Data::Dumper::Useperl = 1;
219         
220             # Set the TT template to use
221             $c->stash->{template} = 'books/create_done.tt2';
222         } else {
223             # Provide very simple feedback to the user
224             $c->response->body('Unauthorized!');
225         }
226     }
227
228
229 To add authorization, we simply wrap the main code of this method in an
230 C<if> statement that calls C<check_user_roles>.  If the user does not
231 have the appropriate permissions, they receive an "Unauthorized!"
232 message.  Note that we intentionally chose to display the message this
233 way to demonstrate that TT templates will not be used if the response
234 body has already been set.  In reality you would probably want to use a
235 technique that maintains the visual continuity of your template layout
236 (for example, using the "status" or "error" message feature added in
237 Part 2).
238
239 B<TIP>: If you want to keep your existing C<url_create> method, you can
240 create a new copy and comment out the original by making it look like a
241 Pod comment.  For example, put something like C<=begin> before C<sub add
242 : Local {> and C<=end> after the closing C<}>.
243
244 =head2 Try Out Authentication And Authorization
245
246 Press C<Ctrl-C> to kill the previous server instance (if it's still
247 running) and restart it:
248
249     $ script/myapp_server.pl
250
251 Now trying going to L<http://localhost:3000/books/list> and you should
252 be taken to the login page (you might have to C<Shift+Reload> your
253 browser and/or click the "Logout" link on the book list page).  Try 
254 logging in with both C<test01> and C<test02> (both use a password 
255 of C<mypass>) and notice how the roles information updates at the 
256 bottom of the "Book List" page. Also try the C<Logout> link on the
257 book list page.
258
259 Now the "url_create" URL will work if you are already logged in as user
260 C<test01>, but receive an authorization failure if you are logged in as
261 C<test02>.  Try:
262
263     http://localhost:3000/books/url_create/test/1/6
264
265 while logged in as each user.  Use one of the 'Logout' links (or go to
266 L<http://localhost:3000/logout> in you browser directly) when you are
267 done.
268
269
270 =head1 ENABLE ACL-BASED AUTHORIZATION
271
272 This section takes a brief look at how the
273 L<Catalyst::Plugin::Authorization::ACL|Catalyst::Plugin::Authorization::ACL>
274 plugin can automate much of the work required to perform role-based 
275 authorization in a Catalyst application.
276
277 =head2 Add the C<Catalyst::Plugin::Authorization::ACL> Plugin
278
279 Open C<lib/MyApp.pm> in your editor and add the following plugin to the
280 C<use Catalyst> statement:
281
282     Authorization::ACL
283
284 Note that the remaining C<use Catalyst> plugins from earlier sections
285 are not shown here, but they should still be included.
286
287 =head2 Add ACL Rules to the Application Class
288
289 Open C<lib/MyApp.pm> in your editor and add the following B<BELOW> the
290 C<__PACKAGE__-E<gt>setup;> statement:
291
292     # Authorization::ACL Rules
293     __PACKAGE__->deny_access_unless(
294             "/books/form_create",
295             [qw/admin/],
296         );
297     __PACKAGE__->deny_access_unless(
298             "/books/form_create_do",
299             [qw/admin/],
300         );
301     __PACKAGE__->deny_access_unless(
302             "/books/delete",
303             [qw/user admin/],
304         );
305
306 Each of the three statements above comprises an ACL plugin "rule".  The
307 first two rules only allow admin-level users to create new books using
308 the form (both the form itself and the data submission logic are
309 protected).  The third statement allows both users and admins to delete
310 books.  The C</books/url_create> action will continue to be protected by
311 the "manually configured" authorization created earlier in this part of
312 the tutorial.
313
314 The ACL plugin permits you to apply allow/deny logic in a variety of
315 ways.  The following provides a basic overview of the capabilities:
316
317 =over 4
318
319 =item * 
320
321 The ACL plugin only operates on the Catalyst "private namespace".  You
322 are using the private namespace when you use C<Local> actions.  C<Path>,
323 C<Regex>, and C<Global> allow you to specify actions where the path and
324 the namespace differ -- the ACL plugin will not work in these cases.
325
326 =item * 
327
328 Each rule is expressed in a separate
329 C<__PACKAGE__-E<gt>deny_access_unless()> or
330 C<__PACKAGE__-E<gt>allow_access_if()> line (there are several other
331 methods that can be used for more complex policies, see the C<METHODS>
332 portion of the
333 L<Catalyst::Plugin::Authorization::ACL|Catalyst::Plugin::Authorization::ACL>
334 documentation for more details).
335
336 =item * 
337
338 Each rule can contain multiple roles but only a single path.
339
340 =item * 
341
342 The rules are tried in order (with the "most specific" rules tested
343 first), and processing stops at the first "match" where an allow or deny
344 is specified.  Rules "fall through" if there is not a "match" (where a
345 "match" means the user has the specified role).  If a "match" is found,
346 then processing stops there and the appropriate allow/deny action is
347 taken.
348
349 =item * 
350
351 If none of the rules match, then access is allowed.
352
353 =item * 
354
355 The rules currently need to be specific in the application class
356 C<lib\MyApp.pm> B<after> the C<__PACKAGE__-E<gt>setup;> line.
357
358 =back
359
360 =head2 Add a Method to Handle Access Violations
361
362 By default,
363 L<Catalyst::Plugin::Authorization::ACL|Catalyst::Plugin::Authorization::ACL>
364 throws an exception when authorization fails.  This will take the user
365 to the Catalyst debug screen, or a "Please come back later" message if
366 you are not using the C<-Debug> flag. This step uses the
367 C<access_denied> method in order to provide more appropriate feedback to
368 the user.
369
370 Open C<lib/MyApp/Controller/Books.pm> in your editor and add the
371 following method:
372
373     =head2 access_denied
374     
375     Handle Catalyst::Plugin::Authorization::ACL access denied exceptions
376     
377     =cut
378     
379     sub access_denied : Private {
380         my ($self, $c) = @_;
381     
382         # Set the error message
383         $c->stash->{error_msg} = 'Unauthorized!';
384     
385         # Display the list
386         $c->forward('list');
387     }
388
389 Then run the Catalyst development server script:    
390
391     $ script/myapp_server.pl
392
393 Log in as C<test02>.  Once at the book list, click the "Create" link to
394 try the C<form_create> action.  You should receive a red "Unauthorized!"
395 error message at the top of the list.  (Note that in reality you would
396 probably want to place the "Create" link code in
397 C<root/src/books/list.tt2> inside an C<IF> statement that only displays
398 the list to admin-level users.)  If you log in as C<test01> you should
399 be able to view the C<form_create> form and add a new book.
400
401 When you are done, use one of the 'Logout' links (or go to the
402 L<http://localhost:3000/logout> URL directly) when you are done.
403
404
405 =head1 AUTHOR
406
407 Kennedy Clark, C<hkclark@gmail.com>
408
409 Please report any errors, issues or suggestions to the author.  The
410 most recent version of the Catlayst Tutorial can be found at
411 L<http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Runtime/lib/Catalyst/Manual/Tutorial/>.
412
413 Copyright 2006, Kennedy Clark, under Creative Commons License
414 (L<http://creativecommons.org/licenses/by-nc-sa/2.5/>).
415