Version 0.016
[catagits/Catalyst-Authentication-Store-LDAP.git] / lib / Catalyst / Authentication / Store / LDAP / User.pm
index 79c4f37..e391de3 100644 (file)
@@ -49,8 +49,9 @@ use base qw( Catalyst::Authentication::User Class::Accessor::Fast );
 use strict;
 use warnings;
 use Scalar::Util qw/refaddr/;
+use Net::LDAP::Entry;
 
-our $VERSION = '1.015';
+our $VERSION = '1.016';
 
 BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }
 
@@ -167,6 +168,9 @@ sub roles {
 Returns the user for persistence in the session depending on the
 persist_in_session config option.
 
+Stores the persist_in_session setting so it can be used to revive the user
+even if the setting has been changed.
+
 =cut
 
 sub for_session {
@@ -174,7 +178,13 @@ sub for_session {
 
     if ( $self->store->persist_in_session eq 'all' ) {
         # use the roles accessor to ensure the roles are fetched
-        return { user => $self->user, _roles => [ $self->roles ] };
+        return {
+            # store the persistance setting in the session to know how to
+            # restore the user
+            persist_in_session  => $self->store->persist_in_session,
+            user                => $self->user,
+            _roles              => [ $self->roles ],
+        };
     }
 
     return $self->stringify;