possibly fix frang's problem
[catagits/Catalyst-Plugin-Authentication.git] / lib / Catalyst / Plugin / Authentication.pm
1 #!/usr/bin/perl
2
3 package Catalyst::Plugin::Authentication;
4
5 use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
6
7 BEGIN {
8     __PACKAGE__->mk_accessors(qw/_user/);
9     __PACKAGE__->mk_classdata($_) for qw/_auth_stores _auth_store_names/;
10 }
11
12 use strict;
13 use warnings;
14
15 use Tie::RefHash;
16 use Class::Inspector;
17
18 # this optimization breaks under Template::Toolkit
19 # use user_exists instead
20 #BEGIN {
21 #       require constant;
22 #       constant->import(have_want => eval { require Want });
23 #}
24
25 our $VERSION = "0.08";
26
27 sub set_authenticated {
28     my ( $c, $user ) = @_;
29
30     $c->user($user);
31     $c->request->{user} = $user;    # compatibility kludge
32
33     if (    $c->isa("Catalyst::Plugin::Session")
34         and $c->config->{authentication}{use_session}
35         and $user->supports("session") )
36     {
37         $c->save_user_in_session($user);
38     }
39
40     $c->NEXT::set_authenticated($user);
41 }
42
43 sub user {
44     my $c = shift;
45
46     if (@_) {
47         return $c->_user(@_);
48     }
49
50     if ( defined(my $user = $c->_user) ) {
51         return $user;
52     } else {
53         return $c->auth_restore_user;
54     }
55 }
56
57 sub user_exists {
58         my $c = shift;
59         return defined($c->_user) || defined($c->_user_in_session);
60 }
61
62 sub save_user_in_session {
63     my ( $c, $user ) = @_;
64
65     my $store = $user->store || ref $user;
66     $c->session->{__user_store} = $c->get_auth_store_name($store) || $store;
67     $c->session->{__user} = $user->for_session;
68 }
69
70 sub logout {
71     my $c = shift;
72
73     $c->user(undef);
74
75     if (
76         $c->isa("Catalyst::Plugin::Session")
77         and $c->config->{authentication}{use_session}
78         and $c->session_is_valid
79     ) {
80         delete @{ $c->session }{qw/__user __user_store/};
81     }
82     
83     $c->NEXT::logout(@_);
84 }
85
86 sub get_user {
87     my ( $c, $uid, @rest ) = @_;
88
89     if ( my $store = $c->default_auth_store ) {
90         return $store->get_user( $uid, @rest );
91     }
92     else {
93         Catalyst::Exception->throw(
94                 "The user id $uid was passed to an authentication "
95               . "plugin, but no default store was specified" );
96     }
97 }
98
99 sub _user_in_session {
100     my $c = shift;
101
102     return unless
103         $c->isa("Catalyst::Plugin::Session")
104         and $c->config->{authentication}{use_session}
105         and $c->session_is_valid;
106
107     return $c->session->{__user};
108
109     return;
110 }
111
112 sub auth_restore_user {
113     my ( $c, $frozen_user, $store_name ) = @_;
114
115     $frozen_user ||= $c->_user_in_session;
116     return unless defined($frozen_user);
117
118     $store_name  ||= $c->session->{__user_store};
119
120     my $store = $c->get_auth_store($store_name);
121     $c->_user( my $user = $store->from_session( $c, $frozen_user ) );
122
123     return $user;
124
125 }
126
127 sub setup {
128     my $c = shift;
129
130     my $cfg = $c->config->{authentication} || {};
131
132     %$cfg = (
133         use_session => 1,
134         %$cfg,
135     );
136
137     $c->register_auth_stores(
138         default => $cfg->{store},
139         %{ $cfg->{stores} || {} },
140     );
141
142     $c->NEXT::setup(@_);
143 }
144
145 sub get_auth_store {
146     my ( $self, $name ) = @_;
147     $self->auth_stores->{$name} || ( Class::Inspector->loaded($name) && $name );
148 }
149
150 sub get_auth_store_name {
151     my ( $self, $store ) = @_;
152     $self->auth_store_names->{$store};
153 }
154
155 sub register_auth_stores {
156     my ( $self, %new ) = @_;
157
158     foreach my $name ( keys %new ) {
159         my $store = $new{$name} or next;
160         $self->auth_stores->{$name}       = $store;
161         $self->auth_store_names->{$store} = $name;
162     }
163 }
164
165 sub auth_stores {
166     my $self = shift;
167     $self->_auth_stores(@_) || $self->_auth_stores( {} );
168 }
169
170 sub auth_store_names {
171     my $self = shift;
172
173     $self->_auth_store_names || do {
174         tie my %hash, 'Tie::RefHash';
175         $self->_auth_store_names( \%hash );
176       }
177 }
178
179 sub default_auth_store {
180     my $self = shift;
181
182     if ( my $new = shift ) {
183         $self->register_auth_stores( default => $new );
184     }
185
186     $self->get_auth_store("default");
187 }
188
189 __PACKAGE__;
190
191 __END__
192
193 =pod
194
195 =head1 NAME
196
197 Catalyst::Plugin::Authentication - Infrastructure plugin for the Catalyst
198 authentication framework.
199
200 =head1 SYNOPSIS
201
202     use Catalyst qw/
203         Authentication
204         Authentication::Store::Foo
205         Authentication::Credential::Password
206     /;
207
208     # later on ...
209     # ->login is provided by the Credential::Password module
210     $c->login('myusername', 'mypassword');
211     my $age = $c->user->age;
212     $c->logout;
213
214 =head1 DESCRIPTION
215
216 The authentication plugin provides generic user support. It is the basis 
217 for both authentication (checking the user is who they claim to be), and 
218 authorization (allowing the user to do what the system authorises them to do).
219
220 Using authentication is split into two parts. A Store is used to actually 
221 store the user information, and can store any amount of data related to 
222 the user. Multiple stores can be accessed from within one application. 
223 Credentials are used to verify users, using the store, given data from 
224 the frontend.
225
226 To implement authentication in a Catalyst application you need to add this 
227 module, plus at least one store and one credential module.
228
229 Authentication data can also be stored in a session, if the application 
230 is using the L<Catalyst::Plugin::Session> module.
231
232 =head1 INTRODUCTION
233
234 =head2 The Authentication/Authorization Process
235
236 Web applications typically need to identify a user - to tell the user apart
237 from other users. This is usually done in order to display private information
238 that is only that user's business, or to limit access to the application so
239 that only certain entities can access certain parts.
240
241 This process is split up into several steps. First you ask the user to identify
242 themselves. At this point you can't be sure that the user is really who they
243 claim to be.
244
245 Then the user tells you who they are, and backs this claim with some piece of
246 information that only the real user could give you. For example, a password is
247 a secret that is known to both the user and you. When the user tells you this
248 password you can assume they're in on the secret and can be trusted (ignore
249 identity theft for now). Checking the password, or any other proof is called
250 B<credential verification>.
251
252 By this time you know exactly who the user is - the user's identity is
253 B<authenticated>. This is where this module's job stops, and other plugins step
254 in. The next logical step is B<authorization>, the process of deciding what a
255 user is (or isn't) allowed to do. For example, say your users are split into
256 two main groups - regular users and administrators. You should verify that the
257 currently logged in user is indeed an administrator before performing the
258 actions of an administrative part of your application. One way to do this is
259 with role based access control.
260
261 =head2 The Components In This Framework
262
263 =head3 Credential Verifiers
264
265 When user input is transferred to the L<Catalyst> application (typically via
266 form inputs) this data then enters the authentication framework through these
267 plugins.
268
269 These plugins check the data, and ensure that it really proves the user is who
270 they claim to be.
271
272 =head3 Storage Backends
273
274 The credentials also identify a user, and this family of modules is supposed to
275 take this identification data and return a standardized object oriented
276 representation of users.
277
278 When a user is retrieved from a store it is not necessarily authenticated.
279 Credential verifiers can either accept a user object, or fetch the object
280 themselves from the default store.
281
282 =head3 The Core Plugin
283
284 This plugin on its own is the glue, providing store registration, session
285 integration, and other goodness for the other plugins.
286
287 =head3 Other Plugins
288
289 More layers of plugins can be stacked on top of the authentication code. For
290 example, L<Catalyst::Plugin::Session::PerUser> provides an abstraction of
291 browser sessions that is more persistent per users.
292 L<Catalyst::Plugin::Authorization::Roles> provides an accepted way to separate
293 and group users into categories, and then check which categories the current
294 user belongs to.
295
296 =head1 EXAMPLE
297
298 Let's say we were storing users in an Apache style htpasswd file. Users are
299 stored in that file, with a hashed password and some extra comments. Users are
300 verified by supplying a password which is matched with the file.
301
302 This means that our application will begin like this:
303
304     package MyApp;
305
306     use Catalyst qw/
307         Authentication
308         Authentication::Credential::Password
309         Authentication::Store::Htpasswd
310     /;
311
312     __PACKAGE__->config->{authentication}{htpasswd} = "passwdfile";
313
314 This loads the appropriate methods and also sets the htpasswd store as the
315 default store.
316     
317 So, now that we have the code loaded we need to get data from the user into the
318 credential verifier.
319
320 Let's create an authentication controller:
321
322     package MyApp::Controller::Auth;
323
324     sub login : Local {
325         my ( $self, $c ) = @_;
326
327         if (    my $user = $c->req->param("user")
328             and my $password = $c->req->param("password") )
329         {
330             if ( $c->login( $user, $password ) ) {
331                 $c->res->body( "hello " . $c->user->name );
332             } else {
333                 # login incorrect
334             }
335         }
336         else {
337             # invalid form input
338         }
339     }
340
341 This code should be very readable. If all the necessary fields are supplied,
342 call the L<Authentication::Credential::Password/login> method on the
343 controller. If that succeeds the user is logged in.
344
345 It could be simplified though:
346
347     sub login : Local {
348         my ( $self, $c ) = @_;
349
350         if ( $c->login ) {
351             ...
352         }
353     }
354
355 Since the C<login> method knows how to find logically named parameters on its
356 own.
357
358 The credential verifier will ask the default store to get the user whose ID is
359 the user parameter. In this case the default store is the htpasswd one. Once it
360 fetches the user from the store the password is checked and if it's OK
361 C<< $c->user >> will contain the user object returned from the htpasswd store.
362
363 We can also pass a user object to the credential verifier manually, if we have
364 several stores per app. This is discussed in
365 L<Catalyst::Plugin::Authentication::Store>.
366
367 Now imagine each admin user has a comment set in the htpasswd file saying
368 "admin".
369
370 A restricted action might look like this:
371
372     sub restricted : Local {
373         my ( $self, $c ) = @_;
374
375         $c->detach("unauthorized")
376           unless $c->user_exists
377           and $c->user->extra_info() eq "admin";
378
379         # do something restricted here
380     }
381
382 This is somewhat similar to role based access control.
383 L<Catalyst::Plugin::Authentication::Store::Htpasswd> treats the extra info
384 field as a comma separated list of roles if it's treated that way. Let's
385 leverage this. Add the role authorization plugin:
386
387     use Catalyst qw/
388         ...
389         Authorization::Roles
390     /;
391
392     sub restricted : Local {
393         my ( $self, $c ) = @_;
394
395         $c->detach("unauthorized") unless $c->check_roles("admin");
396
397         # do something restricted here
398     }
399
400 This is somewhat simpler and will work if you change your store, too, since the
401 role interface is consistent.
402
403 Let's say your app grew, and you now have 10000 users. It's no longer efficient
404 to maintain an htpasswd file, so you move this data to a database.
405
406     use Catalyst qw/
407         Authentication
408         Authentication::Credential::Password
409         Authentication::Store::DBIC
410         Authorization::Roles
411     /;
412
413     __PACKAGE__->config->{authentication}{dbic} = ...; # see the DBIC store docs
414
415 The rest of your code should be unchanged. Now let's say you are integrating
416 typekey authentication to your system. For simplicity's sake we'll assume that
417 the user's are still keyed in the same way.
418
419     use Catalyst qw/
420         Authentication
421         Authentication::Credential::Password
422         Authentication::Credential::TypeKey
423         Authentication::Store::DBIC
424         Authorization::Roles
425     /;
426
427 And in your auth controller add a new action:
428
429     sub typekey : Local {
430         my ( $self, $c ) = @_;
431
432         if ( $c->authenticate_typekey) { # uses $c->req and Authen::TypeKey
433             # same stuff as the $c->login method
434             # ...
435         }
436     }
437
438 You've now added a new credential verification mechanizm orthogonally to the
439 other components. All you have to do is make sure that the credential verifiers
440 pass on the same types of parameters to the store in order to retrieve user
441 objects.
442
443 =head1 METHODS
444
445 =over 4 
446
447 =item user
448
449 Returns the currently logged in user or undef if there is none.
450
451 =item user_exists
452
453 Whether or not a user is logged in right now.
454
455 The reason this method exists is that C<< $c->user >> may needlessly load the
456 user from the auth store.
457
458 If you're just going to say
459
460         if ( $c->user_exists ) {
461                 # foo
462         } else {
463                 $c->forward("login");
464         }
465
466 it should be more efficient than C<< $c->user >> when a user is marked in the
467 session but C<< $c->user >> hasn't been called yet.
468
469 =item logout
470
471 Delete the currently logged in user from C<user> and the session.
472
473 =item get_user $uid
474
475 Fetch a particular users details, defined by the given ID, via the default store.
476
477 =back
478
479 =head1 CONFIGURATION
480
481 =over 4
482
483 =item use_session
484
485 Whether or not to store the user's logged in state in the session, if the
486 application is also using the L<Catalyst::Plugin::Session> plugin. This 
487 value is set to true per default.
488
489 =item store
490
491 If multiple stores are being used, set the module you want as default here.
492
493 =item stores
494
495 If multiple stores are being used, you need to provide a name for each store
496 here, as a hash, the keys are the names you wish to use, and the values are
497 the the names of the plugins.
498
499  # example
500  __PACKAGE__->config( authentication => {
501                         store => 'Catalyst::Plugin::Authentication::Store::HtPasswd',
502                         stores => { 
503                            'dbic' => 'Catalyst::Plugin::Authentication::Store::DBIC'
504                                   }
505                                          });
506
507 =back
508
509 =head1 METHODS FOR STORE MANAGEMENT
510
511 =over 4
512
513 =item default_auth_store
514
515 Return the store whose name is 'default'.
516
517 This is set to C<< $c->config->{authentication}{store} >> if that value exists,
518 or by using a Store plugin:
519
520         use Catalyst qw/Authentication Authentication::Store::Minimal/;
521
522 Sets the default store to
523 L<Catalyst::Plugin::Authentication::Store::Minimal::Backend>.
524
525
526 =item get_auth_store $name
527
528 Return the store whose name is $name.
529
530 =item get_auth_store_name $store
531
532 Return the name of the store $store.
533
534 =item auth_stores
535
536 A hash keyed by name, with the stores registered in the app.
537
538 =item auth_store_names
539
540 A ref-hash keyed by store, which contains the names of the stores.
541
542 =item register_auth_stores %stores_by_name
543
544 Register stores into the application.
545
546 =back
547
548 =head1 INTERNAL METHODS
549
550 =over 4
551
552 =item set_authenticated $user
553
554 Marks a user as authenticated. Should be called from a
555 C<Catalyst::Plugin::Authentication::Credential> plugin after successful
556 authentication.
557
558 This involves setting C<user> and the internal data in C<session> if
559 L<Catalyst::Plugin::Session> is loaded.
560
561 =item auth_restore_user $user
562
563 Used to restore a user from the session, by C<user> only when it's actually
564 needed.
565
566 =item save_user_in_session $user
567
568 Used to save the user in a session.
569
570 =item prepare
571
572 Revives a user from the session object if there is one.
573
574 =item setup
575
576 Sets the default configuration parameters.
577
578 =item 
579
580 =back
581
582 =head1 SEE ALSO
583
584 This list might not be up to date.
585
586 =head2 User Storage Backends
587
588 L<Catalyst::Plugin::Authentication::Store::Minimal>,
589 L<Catalyst::Plugin::Authentication::Store::Htpasswd>,
590 L<Catalyst::Plugin::Authentication::Store::DBIC> (also works with Class::DBI).
591
592 =head2 Credential verification
593
594 L<Catalyst::Plugin::Authentication::Credential::Password>,
595 L<Catalyst::Plugin::Authentication::Credential::HTTP>,
596 L<Catalyst::Plugin::Authentication::Credential::TypeKey>
597
598 =head2 Authorization
599
600 L<Catalyst::Plugin::Authorization::ACL>,
601 L<Catalyst::Plugin::Authorization::Roles>
602
603 =head2 Internals Documentation
604
605 L<Catalyst::Plugin::Authentication::Store>
606
607 =head2 Misc
608
609 L<Catalyst::Plugin::Session>,
610 L<Catalyst::Plugin::Session::PerUser>
611
612 =head1 DON'T SEE ALSO
613
614 This module along with its sub plugins deprecate a great number of other
615 modules. These include L<Catalyst::Plugin::Authentication::Simple>,
616 L<Catalyst::Plugin::Authentication::CDBI>.
617
618 At the time of writing these plugins have not yet been replaced or updated, but
619 should be eventually: L<Catalyst::Plugin::Authentication::OpenID>,
620 L<Catalyst::Plugin::Authentication::LDAP>,
621 L<Catalyst::Plugin::Authentication::CDBI::Basic>,
622 L<Catalyst::Plugin::Authentication::Basic::Remote>.
623
624 =head1 AUTHORS
625
626 Yuval Kogman, C<nothingmuch@woobling.org>
627
628 Jess Robinson
629
630 David Kamholz
631
632 =head1 COPYRIGHT & LICENSE
633
634         Copyright (c) 2005 the aforementioned authors. All rights
635         reserved. This program is free software; you can redistribute
636         it and/or modify it under the same terms as Perl itself.
637
638 =cut
639