d78a63b8de87a43976b44a67ce0bfd465dd44a58
[catagits/Catalyst-Plugin-Authentication.git] / lib / Catalyst / Plugin / Authentication.pm
1 package Catalyst::Plugin::Authentication;
2 use Moose::Role;
3 use MRO::Compat;
4 use Tie::RefHash;
5 use Class::Inspector;
6 use Catalyst::Authentication::Realm;
7 use namespace::autoclean;
8
9 has _user => ( is => 'rw' );
10
11 our $VERSION = "0.10016";
12
13 sub set_authenticated {
14     my ( $c, $user, $realmname ) = @_;
15
16     $c->user($user);
17     $c->request->{user} = $user;    # compatibility kludge
18
19     if (!$realmname) {
20         $realmname = 'default';
21     }
22     my $realm = $c->get_auth_realm($realmname);
23
24     if (!$realm) {
25         Catalyst::Exception->throw(
26                 "set_authenticated called with nonexistant realm: '$realmname'.");
27     }
28     $user->auth_realm($realm->name);
29
30     $c->persist_user();
31
32     $c->maybe::next::method($user, $realmname);
33 }
34
35 sub user {
36     my $c = shift;
37
38     if (@_) {
39         return $c->_user(@_);
40     }
41
42     if ( defined($c->_user) ) {
43         return $c->_user;
44     } else {
45         return $c->auth_restore_user;
46     }
47 }
48
49 # change this to allow specification of a realm - to verify the user is part of that realm
50 # in addition to verifying that they exist.
51 sub user_exists {
52     my $c = shift;
53     return defined($c->_user) || defined($c->find_realm_for_persisted_user);
54 }
55
56 # works like user_exists - except only returns true if user
57 # exists AND is in the realm requested.
58 sub user_in_realm {
59     my ($c, $realmname) = @_;
60
61     if (defined($c->_user)) {
62         return ($c->_user->auth_realm eq $realmname);
63     } else {
64         my $realm = $c->find_realm_for_persisted_user;
65         if ($realm) {
66             return ($realm->name eq $realmname);
67         } else {
68             return undef;
69         }
70     }
71 }
72
73 sub __old_save_user_in_session {
74     my ( $c, $user, $realmname ) = @_;
75
76     $c->session->{__user_realm} = $realmname;
77
78     # we want to ask the store for a user prepared for the session.
79     # but older modules split this functionality between the user and the
80     # store.  We try the store first.  If not, we use the old method.
81     my $realm = $c->get_auth_realm($realmname);
82     if ($realm->{'store'}->can('for_session')) {
83         $c->session->{__user} = $realm->{'store'}->for_session($c, $user);
84     } else {
85         $c->session->{__user} = $user->for_session;
86     }
87 }
88
89 sub persist_user {
90     my $c = shift;
91
92     if ($c->user_exists) {
93
94         ## if we have a valid session handler - we store the
95         ## realm in the session.  If not - we have to hope that
96         ## the realm can recognize its frozen user somehow.
97         if ($c->can('session') &&
98             $c->config->{'Plugin::Authentication'}{'use_session'} &&
99             $c->session_is_valid) {
100
101             $c->session->{'__user_realm'} = $c->_user->auth_realm;
102         }
103
104         my $realm = $c->get_auth_realm($c->_user->auth_realm);
105
106         # used to call $realm->save_user_in_session
107         $realm->persist_user($c, $c->user);
108     }
109 }
110
111
112 ## this was a short lived method to update user information -
113 ## you should use persist_user instead.
114 sub update_user_in_session {
115     my $c = shift;
116
117     return $c->persist_user;
118 }
119
120 sub logout {
121     my $c = shift;
122
123     $c->user(undef);
124
125     my $realm = $c->find_realm_for_persisted_user;
126     if ($realm) {
127         $realm->remove_persisted_user($c);
128     }
129
130     $c->maybe::next::method(@_);
131 }
132
133 sub find_user {
134     my ( $c, $userinfo, $realmname ) = @_;
135
136     $realmname ||= 'default';
137     my $realm = $c->get_auth_realm($realmname);
138
139     if (!$realm) {
140         Catalyst::Exception->throw(
141                 "find_user called with nonexistant realm: '$realmname'.");
142     }
143     return $realm->find_user($userinfo, $c);
144 }
145
146 ## Consider making this a public method. - would make certain things easier when
147 ## dealing with things pre-auth restore.
148 sub find_realm_for_persisted_user {
149     my $c = shift;
150
151     my $realm;
152     if ($c->can('session')
153         and $c->config->{'Plugin::Authentication'}{'use_session'}
154         and $c->session_is_valid
155         and exists($c->session->{'__user_realm'})) {
156
157         $realm = $c->auth_realms->{$c->session->{'__user_realm'}};
158         if ($realm->user_is_restorable($c)) {
159             return $realm;
160         }
161     } else {
162         ## we have no choice but to ask each realm whether it has a persisted user.
163         foreach my $realmname (@{$c->_auth_realm_restore_order}) {
164             my $realm = $c->auth_realms->{$realmname}
165                 || Catalyst::Exception->throw("Could not find authentication realm '$realmname'");
166             return $realm
167                 if $realm->user_is_restorable($c);
168         }
169     }
170     return undef;
171 }
172
173 sub auth_restore_user {
174     my ( $c, $frozen_user, $realmname ) = @_;
175
176     my $realm;
177     if (defined($realmname)) {
178         $realm = $c->get_auth_realm($realmname);
179     } else {
180         $realm = $c->find_realm_for_persisted_user;
181     }
182     return undef unless $realm; # FIXME die unless? This is an internal inconsistency
183
184     $c->_user( my $user = $realm->restore_user( $c, $frozen_user ) );
185
186     # this sets the realm the user originated in.
187     $user->auth_realm($realm->name) if $user;
188
189     return $user;
190
191 }
192
193 # We can't actually do our setup in setup because the model has not yet been loaded.  
194 # So we have to trigger before 'setup_finalize'.
195 before 'setup_finalize' => sub {
196     my $app = shift;
197
198     $app->mk_classdata('_auth_initialized');
199     $app->_authentication_initialize();
200 };
201
202 ## the actual initialization routine. whee.
203 sub _authentication_initialize {
204     my $app = shift;
205
206     ## let's avoid recreating / configuring everything if we have already done it, eh?
207     if ($app->can('_auth_realms')) { return };
208
209     ## make classdata where it is used.
210     $app->mk_classdata( '_auth_realms' => {});
211
212     ## the order to attempt restore in - If we don't have session - we have
213     ## no way to be sure where a frozen user came from - so we have to
214     ## ask each realm if it can restore the user.  Unfortunately it is possible
215     ## that multiple realms could restore the user from the data we have -
216     ## So we have to determine at setup time what order to ask the realms in.
217     ## The default is to use the user_restore_priority values defined in the realm
218     ## config. if they are not defined - we go by alphabetical order.   Note that
219     ## the 'default' realm always gets first chance at it unless it is explicitly
220     ## placed elsewhere by user_restore_priority.  Remember this only comes
221     ## into play if session is disabled.
222
223     $app->mk_classdata( '_auth_realm_restore_order' => []);
224
225     my $cfg = $app->config->{'Plugin::Authentication'};
226     my $realmshash;
227     if (!defined($cfg)) {
228         if (exists($app->config->{'authentication'})) {
229             $cfg = $app->config->{'authentication'};
230             $app->config->{'Plugin::Authentication'} = $app->config->{'authentication'};
231         } else {
232             $cfg = {};
233         }
234     } else {
235         # the realmshash contains the various configured realms.  By default this is
236         # the main $app->config->{'Plugin::Authentication'} hash - but if that is
237         # not defined, or there is a subkey {'realms'} then we use that.
238         $realmshash = $cfg;
239     }
240
241     ## If we have a sub-key of {'realms'} then we use that for realm configuration
242     if (exists($cfg->{'realms'})) {
243         $realmshash = $cfg->{'realms'};
244     }
245
246     # old default was to force use_session on.  This must remain for that
247     # reason - but if use_session is already in the config, we respect its setting.
248     if (!exists($cfg->{'use_session'})) {
249         $cfg->{'use_session'} = 1;
250     }
251
252     ## if we have a realms hash
253     if (ref($realmshash) eq 'HASH') {
254
255         my %auth_restore_order;
256         my $authcount = 2;
257         my $defaultrealm = 'default';
258
259         foreach my $realm (sort keys %{$realmshash}) {
260             if (ref($realmshash->{$realm}) eq 'HASH' &&
261                 (exists($realmshash->{$realm}{credential}) || exists($realmshash->{$realm}{class}))) {
262
263                 $app->setup_auth_realm($realm, $realmshash->{$realm});
264
265                 if (exists($realmshash->{$realm}{'user_restore_priority'})) {
266                     $auth_restore_order{$realm} = $realmshash->{$realm}{'user_restore_priority'};
267                 } else {
268                     $auth_restore_order{$realm} = $authcount++;
269                 }
270             }
271         }
272
273         # if we have a 'default_realm' in the config hash and we don't already
274         # have a realm called 'default', we point default at the realm specified
275         if (exists($cfg->{'default_realm'}) && !$app->get_auth_realm('default')) {
276             if ($app->_set_default_auth_realm($cfg->{'default_realm'})) {
277                 $defaultrealm = $cfg->{'default_realm'};
278                 $auth_restore_order{'default'} = $auth_restore_order{$cfg->{'default_realm'}};
279                 delete($auth_restore_order{$cfg->{'default_realm'}});
280             }
281         }
282
283         ## if the default realm did not have a defined priority in its config - we put it at the front.
284         if (!exists($realmshash->{$defaultrealm}{'user_restore_priority'})) {
285             $auth_restore_order{'default'} = 1;
286         }
287
288         @{$app->_auth_realm_restore_order} = sort { $auth_restore_order{$a} <=> $auth_restore_order{$b} } keys %auth_restore_order;
289
290     } else {
291
292         ## BACKWARDS COMPATIBILITY - if realms is not defined - then we are probably dealing
293         ## with an old-school config.  The only caveat here is that we must add a classname
294
295         ## also - we have to treat {store} as {stores}{default} - because
296         ## while it is not a clear as a valid config in the docs, it
297         ## is functional with the old api. Whee!
298         if (exists($cfg->{'store'}) && !exists($cfg->{'stores'}{'default'})) {
299             $cfg->{'stores'}{'default'} = $cfg->{'store'};
300         }
301
302         push @{$app->_auth_realm_restore_order}, 'default';
303         foreach my $storename (keys %{$cfg->{'stores'}}) {
304             my $realmcfg = {
305                 store => { class => $cfg->{'stores'}{$storename} },
306             };
307             $app->setup_auth_realm($storename, $realmcfg);
308         }
309     }
310
311 }
312
313 # set up realmname.
314 sub setup_auth_realm {
315     my ($app, $realmname, $config) = @_;
316
317     my $realmclass = $config->{class};
318
319     if( !$realmclass ) {
320         $realmclass = 'Catalyst::Authentication::Realm';
321     } elsif ($realmclass !~ /^\+(.*)$/ ) {
322         $realmclass = "Catalyst::Authentication::Realm::${realmclass}";
323     } else {
324         $realmclass = $1;
325     }
326
327     Catalyst::Utils::ensure_class_loaded( $realmclass );
328
329     my $realm = $realmclass->new($realmname, $config, $app);
330     if ($realm) {
331         $app->auth_realms->{$realmname} = $realm;
332     } else {
333         $app->log->debug("realm initialization for '$realmname' failed.");
334     }
335     return $realm;
336 }
337
338 sub auth_realms {
339     my $self = shift;
340     $self->_authentication_initialize(); # Ensure _auth_realms created!
341     return($self->_auth_realms);
342 }
343
344 sub get_auth_realm {
345     my ($app, $realmname) = @_;
346     return $app->auth_realms->{$realmname};
347 }
348
349
350 # Very internal method.  Vital Valuable Urgent, Do not touch on pain of death.
351 # Using this method just assigns the default realm to be the value associated
352 # with the realmname provided.  It WILL overwrite any real realm called 'default'
353 # so can be very confusing if used improperly.  It's used properly already.
354 # Translation: don't use it.
355 sub _set_default_auth_realm {
356     my ($app, $realmname) = @_;
357
358     if (exists($app->auth_realms->{$realmname})) {
359         $app->auth_realms->{'default'} = $app->auth_realms->{$realmname};
360     }
361     return $app->get_auth_realm('default');
362 }
363
364 sub authenticate {
365     my ($app, $userinfo, $realmname) = @_;
366
367     if (!$realmname) {
368         $realmname = 'default';
369     }
370
371     my $realm = $app->get_auth_realm($realmname);
372
373     ## note to self - make authenticate throw an exception if realm is invalid.
374
375     if ($realm) {
376         return $realm->authenticate($app, $userinfo);
377     } else {
378         Catalyst::Exception->throw(
379                 "authenticate called with nonexistant realm: '$realmname'.");
380
381     }
382     return undef;
383 }
384
385 ## BACKWARDS COMPATIBILITY  -- Warning:  Here be monsters!
386 #
387 # What follows are backwards compatibility routines - for use with Stores and Credentials
388 # that have not been updated to work with C::P::Authentication v0.10.
389 # These are here so as to not break people's existing installations, but will go away
390 # in a future version.
391 #
392 # The old style of configuration only supports a single store, as each store module
393 # sets itself as the default store upon being loaded.  This is the only supported
394 # 'compatibility' mode.
395 #
396
397 sub get_user {
398     my ( $c, $uid, @rest ) = @_;
399
400     return $c->find_user( {'id' => $uid, 'rest'=>\@rest }, 'default' );
401 }
402
403
404 ## this should only be called when using old-style authentication plugins.  IF this gets
405 ## called in a new-style config - it will OVERWRITE the store of your default realm.  Don't do it.
406 ## also - this is a partial setup - because no credential is instantiated... in other words it ONLY
407 ## works with old-style auth plugins and C::P::Authentication in compatibility mode.  Trying to combine
408 ## this with a realm-type config will probably crash your app.
409 sub default_auth_store {
410     my $self = shift;
411
412     my $realm = $self->get_auth_realm('default');
413     if (!$realm) {
414         $realm = $self->setup_auth_realm('default', { class => 'Compatibility' });
415     }
416     if ( my $new = shift ) {
417         $realm->store($new);
418
419         my $storeclass;
420         if (ref($new)) {
421             $storeclass = ref($new);
422         } else {
423             $storeclass = $new;
424         }
425
426         # BACKWARDS COMPATIBILITY - if the store class does not define find_user, we define it in terms
427         # of get_user and add it to the class.  this is because the auth routines use find_user,
428         # and rely on it being present. (this avoids per-call checks)
429         if (!$storeclass->can('find_user')) {
430             no strict 'refs';
431             *{"${storeclass}::find_user"} = sub {
432                                                     my ($self, $info) = @_;
433                                                     my @rest = @{$info->{rest}} if exists($info->{rest});
434                                                     $self->get_user($info->{id}, @rest);
435                                                 };
436         }
437     }
438
439     return $self->get_auth_realm('default')->store;
440 }
441
442 ## BACKWARDS COMPATIBILITY
443 ## this only ever returns a hash containing 'default' - as that is the only
444 ## supported mode of calling this.
445 sub auth_store_names {
446     my $self = shift;
447
448     my %hash = (  $self->get_auth_realm('default')->store => 'default' );
449 }
450
451 sub get_auth_store {
452     my ( $self, $name ) = @_;
453
454     if ($name ne 'default') {
455         Carp::croak "get_auth_store called on non-default realm '$name'. Only default supported in compatibility mode";
456     } else {
457         $self->default_auth_store();
458     }
459 }
460
461 sub get_auth_store_name {
462     my ( $self, $store ) = @_;
463     return 'default';
464 }
465
466 # sub auth_stores is only used internally - here for completeness
467 sub auth_stores {
468     my $self = shift;
469
470     my %hash = ( 'default' => $self->get_auth_realm('default')->store);
471 }
472
473 __PACKAGE__;
474
475 __END__
476
477 =pod
478
479 =head1 NAME
480
481 Catalyst::Plugin::Authentication - Infrastructure plugin for the Catalyst
482 authentication framework.
483
484 =head1 SYNOPSIS
485
486     use Catalyst qw/
487         Authentication
488     /;
489
490     # later on ...
491     $c->authenticate({ username => 'myusername',
492                        password => 'mypassword' });
493     my $age = $c->user->get('age');
494     $c->logout;
495
496 =head1 DESCRIPTION
497
498 The authentication plugin provides generic user support for Catalyst apps. It
499 is the basis for both authentication (checking the user is who they claim to
500 be), and authorization (allowing the user to do what the system authorises
501 them to do).
502
503 Using authentication is split into two parts. A Store is used to actually
504 store the user information, and can store any amount of data related to the
505 user. Credentials are used to verify users, using information from the store,
506 given data from the frontend. A Credential and a Store are paired to form a
507 'Realm'. A Catalyst application using the authentication framework must have
508 at least one realm, and may have several.
509
510 To implement authentication in a Catalyst application you need to add this
511 module, and specify at least one realm in the configuration.
512
513 Authentication data can also be stored in a session, if the application
514 is using the L<Catalyst::Plugin::Session> module.
515
516 B<NOTE> in version 0.10 of this module, the interface to this module changed.
517 Please see L</COMPATIBILITY ROUTINES> for more information.
518
519 =head1 INTRODUCTION
520
521 =head2 The Authentication/Authorization Process
522
523 Web applications typically need to identify a user - to tell the user apart
524 from other users. This is usually done in order to display private information
525 that is only that user's business, or to limit access to the application so
526 that only certain entities can access certain parts.
527
528 This process is split up into several steps. First you ask the user to identify
529 themselves. At this point you can't be sure that the user is really who they
530 claim to be.
531
532 Then the user tells you who they are, and backs this claim with some piece of
533 information that only the real user could give you. For example, a password is
534 a secret that is known to both the user and you. When the user tells you this
535 password you can assume they're in on the secret and can be trusted (ignore
536 identity theft for now). Checking the password, or any other proof is called
537 B<credential verification>.
538
539 By this time you know exactly who the user is - the user's identity is
540 B<authenticated>. This is where this module's job stops, and your application
541 or other plugins step in.
542
543 The next logical step is B<authorization>, the process of deciding what a user
544 is (or isn't) allowed to do. For example, say your users are split into two
545 main groups - regular users and administrators. You want to verify that the
546 currently logged in user is indeed an administrator before performing the
547 actions in an administrative part of your application. These decisions may be
548 made within your application code using just the information available after
549 authentication, or it may be facilitated by a number of plugins.
550
551 =head2 The Components In This Framework
552
553 =head3 Realms
554
555 Configuration of the Catalyst::Plugin::Authentication framework is done in
556 terms of realms. In simplest terms, a realm is a pairing of a Credential
557 verifier and a User storage (Store) backend. As of version 0.10003, realms are
558 now objects that you can create and customize.
559
560 An application can have any number of Realms, each of which operates
561 independent of the others. Each realm has a name, which is used to identify it
562 as the target of an authentication request. This name can be anything, such as
563 'users' or 'members'. One realm must be defined as the default_realm, which is
564 used when no realm name is specified. More information about configuring
565 realms is available in the configuration section.
566
567 =head3 Credential Verifiers
568
569 When user input is transferred to the L<Catalyst> application
570 (typically via form inputs) the application may pass this information
571 into the authentication system through the C<< $c->authenticate() >>
572 method.  From there, it is passed to the appropriate Credential
573 verifier.
574
575 These plugins check the data, and ensure that it really proves the user is who
576 they claim to be.
577
578 Credential verifiers compatible with versions of this module 0.10x and
579 upwards should be in the namespace
580 C<Catalyst::Authentication::Credential>.
581
582 =head3 Storage Backends
583
584 The authentication data also identifies a user, and the Storage backend modules
585 use this data to locate and return a standardized object-oriented
586 representation of a user.
587
588 When a user is retrieved from a store it is not necessarily authenticated.
589 Credential verifiers accept a set of authentication data and use this
590 information to retrieve the user from the store they are paired with.
591
592 Storage backends compatible with versions of this module 0.10x and
593 upwards should be in the namespace
594 C<Catalyst::Authentication::Store>.
595
596 =head3 The Core Plugin
597
598 This plugin on its own is the glue, providing realm configuration, session
599 integration, and other goodness for the other plugins.
600
601 =head3 Other Plugins
602
603 More layers of plugins can be stacked on top of the authentication code. For
604 example, L<Catalyst::Plugin::Session::PerUser> provides an abstraction of
605 browser sessions that is more persistent per user.
606 L<Catalyst::Plugin::Authorization::Roles> provides an accepted way to separate
607 and group users into categories, and then check which categories the current
608 user belongs to.
609
610 =head1 EXAMPLE
611
612 Let's say we were storing users in a simple Perl hash. Users are
613 verified by supplying a password which is matched within the hash.
614
615 This means that our application will begin like this:
616
617     package MyApp;
618
619     use Catalyst qw/
620         Authentication
621     /;
622
623     __PACKAGE__->config( 'Plugin::Authentication' =>
624                 {
625                     default => {
626                         credential => {
627                             class => 'Password',
628                             password_field => 'password',
629                             password_type => 'clear'
630                         },
631                         store => {
632                             class => 'Minimal',
633                             users => {
634                                 bob => {
635                                     password => "s00p3r",
636                                     editor => 'yes',
637                                     roles => [qw/edit delete/],
638                                 },
639                                 william => {
640                                     password => "s3cr3t",
641                                     roles => [qw/comment/],
642                                 }
643                             }
644                         }
645                     }
646                 }
647     );
648
649 This tells the authentication plugin what realms are available, which
650 credential and store modules are used, and the configuration of each. With
651 this code loaded, we can now attempt to authenticate users.
652
653 To show an example of this, let's create an authentication controller:
654
655     package MyApp::Controller::Auth;
656
657     sub login : Local {
658         my ( $self, $c ) = @_;
659
660         if (    my $user     = $c->req->params->{user}
661             and my $password = $c->req->params->{password} )
662         {
663             if ( $c->authenticate( { username => $user,
664                                      password => $password } ) ) {
665                 $c->res->body( "hello " . $c->user->get("name") );
666             } else {
667                 # login incorrect
668             }
669         }
670         else {
671             # invalid form input
672         }
673     }
674
675 This code should be self-explanatory. If all the necessary fields are supplied,
676 call the C<authenticate> method on the context object. If it succeeds the
677 user is logged in.
678
679 The credential verifier will attempt to retrieve the user whose
680 details match the authentication information provided to
681 C<< $c->authenticate() >>. Once it fetches the user the password is
682 checked and if it matches the user will be B<authenticated> and
683 C<< $c->user >> will contain the user object retrieved from the store.
684
685 In the above case, the default realm is checked, but we could just as easily
686 check an alternate realm. If this were an admin login, for example, we could
687 authenticate on the admin realm by simply changing the C<< $c->authenticate() >>
688 call:
689
690     if ( $c->authenticate( { username => $user,
691                              password => $password }, 'admin' ) ) {
692         $c->res->body( "hello " . $c->user->get("name") );
693     } ...
694
695
696 Now suppose we want to restrict the ability to edit to a user with an
697 'editor' value of yes.
698
699 The restricted action might look like this:
700
701     sub edit : Local {
702         my ( $self, $c ) = @_;
703
704         $c->detach("unauthorized")
705           unless $c->user_exists
706           and $c->user->get('editor') eq 'yes';
707
708         # do something restricted here
709     }
710
711 (Note that if you have multiple realms, you can use
712 C<< $c->user_in_realm('realmname') >> in place of
713 C<< $c->user_exists(); >> This will essentially perform the same
714 verification as user_exists, with the added requirement that if there
715 is a user, it must have come from the realm specified.)
716
717 The above example is somewhat similar to role based access control.
718 L<Catalyst::Authentication::Store::Minimal> treats the roles field as
719 an array of role names. Let's leverage this. Add the role authorization
720 plugin:
721
722     use Catalyst qw/
723         ...
724         Authorization::Roles
725     /;
726
727     sub edit : Local {
728         my ( $self, $c ) = @_;
729
730         $c->detach("unauthorized") unless $c->check_user_roles("edit");
731
732         # do something restricted here
733     }
734
735 This is somewhat simpler and will work if you change your store, too, since the
736 role interface is consistent.
737
738 Let's say your app grows, and you now have 10,000 users. It's no longer
739 efficient to maintain a hash of users, so you move this data to a database.
740 You can accomplish this simply by installing the L<DBIx::Class|Catalyst::Authentication::Store::DBIx::Class> Store and
741 changing your config:
742
743     __PACKAGE__->config( 'Plugin::Authentication' =>
744                     {
745                         default_realm => 'members',
746                         members => {
747                             credential => {
748                                 class => 'Password',
749                                 password_field => 'password',
750                                 password_type => 'clear'
751                             },
752                             store => {
753                                 class => 'DBIx::Class',
754                                 user_model => 'MyApp::Users',
755                                 role_column => 'roles',
756                             }
757                         }
758                     }
759     );
760
761 The authentication system works behind the scenes to load your data from the
762 new source. The rest of your application is completely unchanged.
763
764
765 =head1 CONFIGURATION
766
767     # example
768     __PACKAGE__->config( 'Plugin::Authentication' =>
769                 {
770                     default_realm => 'members',
771
772                     members => {
773                         credential => {
774                             class => 'Password',
775                             password_field => 'password',
776                             password_type => 'clear'
777                         },
778                         store => {
779                             class => 'DBIx::Class',
780                             user_model => 'MyApp::Users',
781                             role_column => 'roles',
782                         }
783                     },
784                     admins => {
785                         credential => {
786                             class => 'Password',
787                             password_field => 'password',
788                             password_type => 'clear'
789                         },
790                         store => {
791                             class => '+MyApp::Authentication::Store::NetAuth',
792                             authserver => '192.168.10.17'
793                         }
794                     }
795                 }
796     );
797
798 NOTE: Until version 0.10008 of this module, you would need to put all the
799 realms inside a "realms" key in the configuration. Please see
800 L</COMPATIBILITY CONFIGURATION> for more information
801
802 =over 4
803
804 =item use_session
805
806 Whether or not to store the user's logged in state in the session, if the
807 application is also using L<Catalyst::Plugin::Session>. This
808 value is set to true per default.
809
810 However, even if use_session is disabled, if any code touches $c->session, a session
811 object will be auto-vivified and session Cookies will be sent in the headers. To
812 prevent accidental session creation, check if a session already exists with
813 if ($c->sessionid) { ... }. If the session doesn't exist, then don't place
814 anything in the session to prevent an unecessary session from being created.
815
816 =item default_realm
817
818 This defines which realm should be used as when no realm is provided to methods
819 that require a realm such as authenticate or find_user.
820
821 =item realm refs
822
823 The Plugin::Authentication config hash contains the series of realm
824 configurations you want to use for your app. The only rule here is
825 that there must be at least one. A realm consists of a name, which is used
826 to reference the realm, a credential and a store.  You may also put your
827 realm configurations within a subelement called 'realms' if you desire to
828 separate them from the remainder of your configuration.  Note that if you use
829 a 'realms' subelement, you must put ALL of your realms within it.
830
831 You can also specify a realm class to instantiate instead of the default
832 L<Catalyst::Authentication::Realm> class using the 'class' element within the
833 realm config.
834
835 Each realm config contains two hashes, one called 'credential' and one called
836 'store', each of which provide configuration details to the respective modules.
837 The contents of these hashes is specific to the module being used, with the
838 exception of the 'class' element, which tells the core Authentication module the
839 classname to instantiate.
840
841 The 'class' element follows the standard Catalyst mechanism of class
842 specification. If a class is prefixed with a +, it is assumed to be a complete
843 class name. Otherwise it is considered to be a portion of the class name. For
844 credentials, the classname 'B<Password>', for example, is expanded to
845 Catalyst::Authentication::Credential::B<Password>. For stores, the
846 classname 'B<storename>' is expanded to:
847 Catalyst::Authentication::Store::B<storename>.
848
849 =back
850
851 =head1 METHODS
852
853 =head2 $c->authenticate( $userinfo [, $realm ])
854
855 Attempts to authenticate the user using the information in the $userinfo hash
856 reference using the realm $realm. $realm may be omitted, in which case the
857 default realm is checked.
858
859 =head2 $c->user( )
860
861 Returns the currently logged in user, or undef if there is none.
862
863 =head2 $c->user_exists( )
864
865 Returns true if a user is logged in right now. The difference between
866 user_exists and user is that user_exists will return true if a user is logged
867 in, even if it has not been yet retrieved from the storage backend. If you only
868 need to know if the user is logged in, depending on the storage mechanism this
869 can be much more efficient.
870
871 =head2 $c->user_in_realm( $realm )
872
873 Works like user_exists, except that it only returns true if a user is both
874 logged in right now and was retrieved from the realm provided.
875
876 =head2 $c->logout( )
877
878 Logs the user out. Deletes the currently logged in user from C<< $c->user >>
879 and the session.  It does not delete the session.
880
881 =head2 $c->find_user( $userinfo, $realm )
882
883 Fetch a particular users details, matching the provided user info, from the realm
884 specified in $realm.
885
886 =head2 persist_user()
887
888 Under normal circumstances the user data is only saved to the session during
889 initial authentication.  This call causes the auth system to save the
890 currently authenticated user's data across requests.  Useful if you have
891 changed the user data and want to ensure that future requests reflect the
892 most current data.  Assumes that at the time of this call, $c->user
893 contains the most current data.
894
895 =head2 find_realm_for_persisted_user()
896
897 Private method, do not call from user code!
898
899 =head1 INTERNAL METHODS
900
901 These methods are for Catalyst::Plugin::Authentication B<INTERNAL USE> only.
902 Please do not use them in your own code, whether application or credential /
903 store modules. If you do, you will very likely get the nasty shock of having
904 to fix / rewrite your code when things change. They are documented here only
905 for reference.
906
907 =head2 $c->set_authenticated( $user, $realmname )
908
909 Marks a user as authenticated. This is called from within the authenticate
910 routine when a credential returns a user. $realmname defaults to 'default'
911
912 =head2 $c->auth_restore_user( $user, $realmname )
913
914 Used to restore a user from the session. In most cases this is called without
915 arguments to restore the user via the session. Can be called with arguments
916 when restoring a user from some other method.  Currently not used in this way.
917
918 =head2 $c->auth_realms( )
919
920 Returns a hashref containing realmname -> realm instance pairs. Realm
921 instances contain an instantiated store and credential object as the 'store'
922 and 'credential' elements, respectively
923
924 =head2 $c->get_auth_realm( $realmname )
925
926 Retrieves the realm instance for the realmname provided.
927
928 =head2 $c->update_user_in_session
929
930 This was a short-lived method to update user information - you should use persist_user instead.
931
932 =head2 $c->setup_auth_realm( )
933
934 =head1 OVERRIDDEN METHODS
935
936 =head2 $c->setup( )
937
938 =head1 SEE ALSO
939
940 This list might not be up to date.  Below are modules known to work with the updated
941 API of 0.10 and are therefore compatible with realms.
942
943 =head2 Realms
944
945 L<Catalyst::Authentication::Realm>
946
947 =head2 User Storage Backends
948
949 =over
950
951 =item L<Catalyst::Authentication::Store::Minimal>
952
953 =item L<Catalyst::Authentication::Store::DBIx::Class>
954
955 =item L<Catalyst::Authentication::Store::LDAP>
956
957 =item L<Catalyst::Authentication::Store::RDBO>
958
959 =item L<Catalyst::Authentication::Store::Model::KiokuDB>
960
961 =item L<Catalyst::Authentication::Store::Jifty::DBI>
962
963 =item L<Catalyst::Authentication::Store::Htpasswd>
964
965 =back
966
967 =head2 Credential verification
968
969 =over
970
971 =item L<Catalyst::Authentication::Credential::Password>
972
973 =item L<Catalyst::Authentication::Credential::HTTP>
974
975 =item L<Catalyst::Authentication::Credential::OpenID>
976
977 =item L<Catalyst::Authentication::Credential::Authen::Simple>
978
979 =item L<Catalyst::Authentication::Credential::Flickr>
980
981 =item L<Catalyst::Authentication::Credential::Testing>
982
983 =item L<Catalyst::Authentication::Credential::AuthTkt>
984
985 =item L<Catalyst::Authentication::Credential::Kerberos>
986
987 =back
988
989 =head2 Authorization
990
991 L<Catalyst::Plugin::Authorization::ACL>,
992 L<Catalyst::Plugin::Authorization::Roles>
993
994 =head2 Internals Documentation
995
996 L<Catalyst::Plugin::Authentication::Internals>
997
998 =head2 Misc
999
1000 L<Catalyst::Plugin::Session>,
1001 L<Catalyst::Plugin::Session::PerUser>
1002
1003 =head1 DON'T SEE ALSO
1004
1005 This module along with its sub plugins deprecate a great number of other
1006 modules. These include L<Catalyst::Plugin::Authentication::Simple>,
1007 L<Catalyst::Plugin::Authentication::CDBI>.
1008
1009 =head1 INCOMPATABILITIES
1010
1011 The realms-based configuration and functionality of the 0.10 update
1012 of L<Catalyst::Plugin::Authentication> required a change in the API used by
1013 credentials and stores.  It has a compatibility mode which allows use of
1014 modules that have not yet been updated. This, however, completely mimics the
1015 older api and disables the new realm-based features. In other words you cannot
1016 mix the older credential and store modules with realms, or realm-based
1017 configs. The changes required to update modules are relatively minor and are
1018 covered in L<Catalyst::Plugin::Authentication::Internals>.  We hope that most
1019 modules will move to the compatible list above very quickly.
1020
1021 =head1 COMPATIBILITY CONFIGURATION
1022
1023 Until version 0.10008 of this module, you needed to put all the
1024 realms inside a "realms" key in the configuration.
1025
1026     # example
1027     __PACKAGE__->config( 'Plugin::Authentication' =>
1028                 {
1029                     default_realm => 'members',
1030                     realms => {
1031                         members => {
1032                             ...
1033                         },
1034                     },
1035                 }
1036     );
1037
1038 If you use the old, deprecated C<< __PACKAGE__->config( 'authentication' ) >>
1039 configuration key, then the realms key is still required.
1040
1041 =head1 COMPATIBILITY ROUTINES
1042
1043 In version 0.10 of L<Catalyst::Plugin::Authentication>, the API
1044 changed. For app developers, this change is fairly minor, but for
1045 Credential and Store authors, the changes are significant.
1046
1047 Please see the documentation in version 0.09 of
1048 Catalyst::Plugin::Authentication for a better understanding of how the old API
1049 functioned.
1050
1051 The items below are still present in the plugin, though using them is
1052 deprecated. They remain only as a transition tool, for those sites which can
1053 not yet be upgraded to use the new system due to local customizations or use
1054 of Credential / Store modules that have not yet been updated to work with the
1055 new API.
1056
1057 These routines should not be used in any application using realms
1058 functionality or any of the methods described above. These are for reference
1059 purposes only.
1060
1061 =head2 $c->login( )
1062
1063 This method is used to initiate authentication and user retrieval. Technically
1064 this is part of the old Password credential module and it still resides in the
1065 L<Password|Catalyst::Plugin::Authentication::Credential::Password> class. It is
1066 included here for reference only.
1067
1068 =head2 $c->default_auth_store( )
1069
1070 Return the store whose name is 'default'.
1071
1072 This is set to C<< $c->config( 'Plugin::Authentication' => { store => # Store} ) >> if that value exists,
1073 or by using a Store plugin:
1074
1075     # load the Minimal authentication store.
1076     use Catalyst qw/Authentication Authentication::Store::Minimal/;
1077
1078 Sets the default store to
1079 L<Catalyst::Plugin::Authentication::Store::Minimal>.
1080
1081 =head2 $c->get_auth_store( $name )
1082
1083 Return the store whose name is $name.
1084
1085 =head2 $c->get_auth_store_name( $store )
1086
1087 Return the name of the store $store.
1088
1089 =head2 $c->auth_stores( )
1090
1091 A hash keyed by name, with the stores registered in the app.
1092
1093 =head2 $c->register_auth_stores( %stores_by_name )
1094
1095 Register stores into the application.
1096
1097 =head2 $c->auth_store_names( )
1098
1099 =head2 $c->get_user( )
1100
1101 =head1 AUTHORS
1102
1103 Yuval Kogman, C<nothingmuch@woobling.org>
1104
1105 Jay Kuri, C<jayk@cpan.org>
1106
1107 Jess Robinson
1108
1109 David Kamholz
1110
1111 Tomas Doran (t0m), C<bobtfish@bobtfish.net>
1112
1113 kmx
1114
1115 Nigel Metheringham
1116
1117 Florian Ragwitz C<rafl@debian.org>
1118
1119 Stephan Jauernick C<stephanj@cpan.org>
1120
1121 =head1 COPYRIGHT & LICENSE
1122
1123 Copyright (c) 2005 - 2009
1124 the Catalyst::Plugin::Authentication L</AUTHORS>
1125 as listed above.
1126
1127 This program is free software; you can redistribute
1128 it and/or modify it under the same terms as Perl itself.
1129
1130 =cut
1131