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