Update tutorial for latest versions of Cat-related modules for Debian.
[catagits/Catalyst-Manual.git] / lib / Catalyst / Manual / Tutorial / 06_Authorization.pod
CommitLineData
d442cc9f 1=head1 NAME
2
3ab6187c 3Catalyst::Manual::Tutorial::06_Authorization - Catalyst Tutorial - Chapter 6: Authorization
d442cc9f 4
5
6=head1 OVERVIEW
7
4b4d3884 8This is B<Chapter 6 of 10> for the Catalyst tutorial.
d442cc9f 9
10L<Tutorial Overview|Catalyst::Manual::Tutorial>
11
12=over 4
13
14=item 1
15
3ab6187c 16L<Introduction|Catalyst::Manual::Tutorial::01_Intro>
d442cc9f 17
18=item 2
19
3ab6187c 20L<Catalyst Basics|Catalyst::Manual::Tutorial::02_CatalystBasics>
d442cc9f 21
22=item 3
23
3ab6187c 24L<More Catalyst Basics|Catalyst::Manual::Tutorial::03_MoreCatalystBasics>
d442cc9f 25
26=item 4
27
3ab6187c 28L<Basic CRUD|Catalyst::Manual::Tutorial::04_BasicCRUD>
d442cc9f 29
30=item 5
31
3ab6187c 32L<Authentication|Catalyst::Manual::Tutorial::05_Authentication>
d442cc9f 33
34=item 6
35
3ab6187c 36B<06_Authorization>
d442cc9f 37
38=item 7
39
3ab6187c 40L<Debugging|Catalyst::Manual::Tutorial::07_Debugging>
d442cc9f 41
42=item 8
43
3ab6187c 44L<Testing|Catalyst::Manual::Tutorial::08_Testing>
d442cc9f 45
46=item 9
47
3ab6187c 48L<Advanced CRUD|Catalyst::Manual::Tutorial::09_AdvancedCRUD>
3533daff 49
50=item 10
51
3ab6187c 52L<Appendices|Catalyst::Manual::Tutorial::10_Appendices>
d442cc9f 53
54=back
55
56
d442cc9f 57=head1 DESCRIPTION
58
4b4d3884 59This chapter of the tutorial adds role-based authorization to the
60existing authentication implemented in Chapter 5. It provides simple
acbd7bdd 61examples of how to use roles in both TT templates and controller
62actions. The first half looks at basic authorization concepts. The
63second half looks at how moving your authorization code to your model
64can simplify your code and make things easier to maintain.
d442cc9f 65
66You can checkout the source code for this example from the catalyst
67subversion repository as per the instructions in
3ab6187c 68L<Catalyst::Manual::Tutorial::01_Intro|Catalyst::Manual::Tutorial::01_Intro>.
1390ef0e 69
d442cc9f 70
71=head1 BASIC AUTHORIZATION
72
acbd7bdd 73In this section you learn the basics of how authorization works under
74Catalyst.
d442cc9f 75
1390ef0e 76
d442cc9f 77=head2 Update Plugins to Include Support for Authorization
78
79Edit C<lib/MyApp.pm> and add C<Authorization::Roles> to the list:
80
acbd7bdd 81 # Load plugins
2a6eb5f9 82 use Catalyst qw/
83 -Debug
3b1fa91b 84 ConfigLoader
85 Static::Simple
acbd7bdd 86
3b1fa91b 87 StackTrace
acbd7bdd 88
3b1fa91b 89 Authentication
90 Authorization::Roles
acbd7bdd 91
3b1fa91b 92 Session
93 Session::Store::FastMmap
94 Session::State::Cookie
95 /;
d442cc9f 96
3b1fa91b 97Once again (remain sharp, by now you should be getting the hang of things)
98include this additional plugin as a new dependency in the Makefile.PL file
99like this:
100
101 requires (
102 ...
103 'Catalyst::Plugin::Authorization::Roles' => '0',
104 );
d442cc9f 105
2a6eb5f9 106
d442cc9f 107=head2 Add Role-Specific Logic to the "Book List" Template
108
109Open C<root/src/books/list.tt2> in your editor and add the following
110lines to the bottom of the file:
111
acbd7bdd 112 ...
8a7c5151 113 <p>Hello [% c.user.username %], you have the following roles:</p>
1390ef0e 114
d442cc9f 115 <ul>
116 [% # Dump list of roles -%]
2a6eb5f9 117 [% FOR role = c.user.roles %]<li>[% role %]</li>[% END %]
d442cc9f 118 </ul>
1390ef0e 119
d442cc9f 120 <p>
121 [% # Add some simple role-specific logic to template %]
122 [% # Use $c->check_user_roles() to check authz -%]
8a7c5151 123 [% IF c.check_user_roles('user') %]
d442cc9f 124 [% # Give normal users a link for 'logout' %]
e075db0c 125 <a href="[% c.uri_for('/logout') %]">User Logout</a>
d442cc9f 126 [% END %]
1390ef0e 127
d442cc9f 128 [% # Can also use $c->user->check_roles() to check authz -%]
8a7c5151 129 [% IF c.check_user_roles('admin') %]
d442cc9f 130 [% # Give admin users a link for 'create' %]
0416017e 131 <a href="[% c.uri_for(c.controller.action_for('form_create')) %]">Admin Create</a>
d442cc9f 132 [% END %]
133 </p>
134
135This code displays a different combination of links depending on the
444d6b27 136roles assigned to the user.
d442cc9f 137
1390ef0e 138
8a472b34 139=head2 Limit Books::add to 'admin' Users
d442cc9f 140
141C<IF> statements in TT templates simply control the output that is sent
142to the user's browser; it provides no real enforcement (if users know or
143guess the appropriate URLs, they are still perfectly free to hit any
144action within your application). We need to enhance the controller
145logic to wrap restricted actions with role-validation logic.
146
147For example, we might want to restrict the "formless create" action to
148admin-level users by editing C<lib/MyApp/Controller/Books.pm> and
149updating C<url_create> to match the following code:
150
151 =head2 url_create
1390ef0e 152
d442cc9f 153 Create a book with the supplied title and rating,
154 with manual authorization
1390ef0e 155
d442cc9f 156 =cut
1390ef0e 157
e075db0c 158 sub url_create :Chained('base') :PathPart('url_create') :Args(3) {
d442cc9f 159 # In addition to self & context, get the title, rating & author_id args
160 # from the URL. Note that Catalyst automatically puts extra information
161 # after the "/<controller_name>/<action_name/" into @_
162 my ($self, $c, $title, $rating, $author_id) = @_;
1390ef0e 163
d442cc9f 164 # Check the user's roles
165 if ($c->check_user_roles('admin')) {
905a3a26 166 # Call create() on the book model object. Pass the table
d442cc9f 167 # columns/field values we want to set as hash values
3b1fa91b 168 my $book = $c->model('DB::Book')->create({
d442cc9f 169 title => $title,
170 rating => $rating
171 });
1390ef0e 172
905a3a26 173 # Add a record to the join table for this book, mapping to
d442cc9f 174 # appropriate author
2a6eb5f9 175 $book->add_to_book_authors({author_id => $author_id});
d442cc9f 176 # Note: Above is a shortcut for this:
2a6eb5f9 177 # $book->create_related('book_authors', {author_id => $author_id});
1390ef0e 178
d442cc9f 179 # Assign the Book object to the stash for display in the view
180 $c->stash->{book} = $book;
1390ef0e 181
d442cc9f 182 # Set the TT template to use
183 $c->stash->{template} = 'books/create_done.tt2';
184 } else {
e075db0c 185 # Provide very simple feedback to the user.
d442cc9f 186 $c->response->body('Unauthorized!');
187 }
188 }
189
190
191To add authorization, we simply wrap the main code of this method in an
192C<if> statement that calls C<check_user_roles>. If the user does not
193have the appropriate permissions, they receive an "Unauthorized!"
194message. Note that we intentionally chose to display the message this
195way to demonstrate that TT templates will not be used if the response
196body has already been set. In reality you would probably want to use a
197technique that maintains the visual continuity of your template layout
198(for example, using the "status" or "error" message feature added in
4b4d3884 199Chapter 3 or C<detach> to an action that shows an "unauthorized" page).
d442cc9f 200
201B<TIP>: If you want to keep your existing C<url_create> method, you can
202create a new copy and comment out the original by making it look like a
e075db0c 203Pod comment. For example, put something like C<=begin> before
204C<sub add : Local {> and C<=end> after the closing C<}>.
d442cc9f 205
1390ef0e 206
d442cc9f 207=head2 Try Out Authentication And Authorization
208
209Press C<Ctrl-C> to kill the previous server instance (if it's still
210running) and restart it:
211
212 $ script/myapp_server.pl
213
1390ef0e 214Now trying going to L<http://localhost:3000/books/list> and you should
215be taken to the login page (you might have to C<Shift+Reload> or
fbbb9084 216C<Ctrl+Reload> your browser and/or click the "User Logout" link on the book
1390ef0e 217list page). Try logging in with both C<test01> and C<test02> (both
218use a password of C<mypass>) and notice how the roles information
fbbb9084 219updates at the bottom of the "Book List" page. Also try the "User Logout"
1390ef0e 220link on the book list page.
d442cc9f 221
222Now the "url_create" URL will work if you are already logged in as user
223C<test01>, but receive an authorization failure if you are logged in as
224C<test02>. Try:
225
226 http://localhost:3000/books/url_create/test/1/6
227
fbbb9084 228while logged in as each user. Use one of the "logout" links (or go to
1390ef0e 229L<http://localhost:3000/logout> in your browser directly) when you are
d442cc9f 230done.
231
232
acbd7bdd 233=head1 ENABLE MODEL-BASED AUTHORIZATION
d442cc9f 234
acbd7bdd 235Hopefully it's fairly obvious that adding detailed permission checking
236logic to our controllers and view templates isn't a very clean or
237scalable way to build role-based permissions into out application. As
238with many other aspects of MVC web development, the goal is to have
239your controllers and views be an "thin" as possible, with all of the
240"fancy business logic" built into your model.
d442cc9f 241
acbd7bdd 242For example, let's add a method to our C<Books.pm> Result Class to
243check if a user is allowed to delete a book. Open
3b1fa91b 244C<lib/MyApp/Schema/Result/Book.pm> and add the following method
acbd7bdd 245(be sure to add it below the "C<DO NOT MODIFY ...>" line):
d442cc9f 246
acbd7bdd 247 =head2 delete_allowed_by
248
249 Can the specified user delete the current book?
250
251 =cut
252
253 sub delete_allowed_by {
254 my ($self, $user) = @_;
255
256 # Only allow delete if user has 'admin' role
257 return $user->has_role('admin');
258 }
d442cc9f 259
acbd7bdd 260Here we call a C<has_role> method on our user object, so we should add
261this method to our Result Class. Open
3b1fa91b 262C<lib/MyApp/Schema/Result/User.pm> and add the following method below
8e571e49 263the "C<DO NOT MODIFY ...>" line:
d442cc9f 264
acbd7bdd 265 =head 2 has_role
266
267 Check if a user has the specified role
268
269 =cut
270
8e571e49 271 use Perl6::Junction qw/any/;
acbd7bdd 272 sub has_role {
273 my ($self, $role) = @_;
274
275 # Does this user posses the required role?
276 return any(map { $_->role } $self->roles) eq $role;
277 }
d442cc9f 278
acbd7bdd 279Now we need to add some enforcement inside our controller. Open
280C<lib/MyApp/Controller/Books.pm> and update the C<delete> method to
281match the following code:
d442cc9f 282
acbd7bdd 283 =head2 delete
1390ef0e 284
acbd7bdd 285 Delete a book
1390ef0e 286
d442cc9f 287 =cut
1390ef0e 288
acbd7bdd 289 sub delete :Chained('object') :PathPart('delete') :Args(0) {
d442cc9f 290 my ($self, $c) = @_;
1390ef0e 291
acbd7bdd 292 # Check permissions
293 $c->detach('/error_noperms')
294 unless $c->stash->{object}->delete_allowed_by($c->user->get_object);
295
296 # Use the book object saved by 'object' and delete it along
297 # with related 'book_authors' entries
298 $c->stash->{object}->delete;
1390ef0e 299
acbd7bdd 300 # Use 'flash' to save information across requests until it's read
301 $c->flash->{status_msg} = "Book deleted";
302
303 # Redirect the user back to the list page
304 $c->response->redirect($c->uri_for($self->action_for('list')));
2a6eb5f9 305 }
acbd7bdd 306
307Here, we C<detach> to an error page if the user is lacking the
308appropriate permissions. For this to work, we need to make
309arrangements for the '/error_noperms' action to work. Open
310C<lib/MyApp/Controller/Root.pm> and add this method:
311
312 =head2 error_noperms
313
314 Permissions error screen
315
316 =cut
317
614b484c 318 sub error_noperms :Chained('/') :PathPart('error_noperms') :Args(0) {
acbd7bdd 319 my ($self, $c) = @_;
320
321 $c->stash->{template} = 'error_noperms.tt2';
d442cc9f 322 }
323
acbd7bdd 324And also add the template file by putting the following text into
325C<root/src/error_noperms.tt2>:
326
327 <span class="error">Permission Denied</span>
328
905a3a26 329Then run the Catalyst development server script:
d442cc9f 330
331 $ script/myapp_server.pl
332
acbd7bdd 333Log in as C<test01> and create several new books using the C<url_create>
334feature:
335
336 http://localhost:3000/books/url_create/Test/1/4
337
338Then, while still logged in as C<test01>, click the "Delete" link next
339to one of these books. The book should be removed and you should see
340the usual green "Book deleted" message. Next, click the "User Logout"
341link and log back in as C<test02>. Now try deleting one of the books.
342You should be taken to the red "Permission Denied" message on our
343error page.
d442cc9f 344
4feda61c 345Use one of the 'Logout' links (or go to the
d442cc9f 346L<http://localhost:3000/logout> URL directly) when you are done.
347
348
349=head1 AUTHOR
350
351Kennedy Clark, C<hkclark@gmail.com>
352
353Please report any errors, issues or suggestions to the author. The
354most recent version of the Catalyst Tutorial can be found at
59884771 355L<http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-Manual/5.80/trunk/lib/Catalyst/Manual/Tutorial/>.
d442cc9f 356
45c7830f 357Copyright 2006-2008, Kennedy Clark, under Creative Commons License
95674086 358(L<http://creativecommons.org/licenses/by-sa/3.0/us/>).
d442cc9f 359