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