X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAuthentication%2FStore%2FLDAP%2FUser.pm;h=636728e4d6497fc4d70efcbcb3c4562a1b33bde4;hb=8fe890e686a125fbb6f70afd6d95a9c6fe00b210;hp=de6e03668bbddd2ab024f3c181507f90f4d49652;hpb=a8fb838af9e57d5a5b53484c33fe61479e725fe4;p=catagits%2FCatalyst-Authentication-Store-LDAP.git diff --git a/lib/Catalyst/Authentication/Store/LDAP/User.pm b/lib/Catalyst/Authentication/Store/LDAP/User.pm index de6e036..636728e 100644 --- a/lib/Catalyst/Authentication/Store/LDAP/User.pm +++ b/lib/Catalyst/Authentication/Store/LDAP/User.pm @@ -48,13 +48,17 @@ use base qw( Catalyst::Authentication::User Class::Accessor::Fast ); use strict; use warnings; +use Scalar::Util qw/refaddr/; -our $VERSION = '0.1005'; +our $VERSION = '1.006'; -BEGIN { __PACKAGE__->mk_accessors(qw/user store _ldap_connection/) } +BEGIN { __PACKAGE__->mk_accessors(qw/user store/) } use overload '""' => sub { shift->stringify }, fallback => 1; +my %_ldap_connection_passwords; # Store inside-out so that they don't show up + # in dumps.. + =head1 METHODS =head2 new($store, $user, $c) @@ -147,7 +151,7 @@ sub check_password { $self->roles($ldap); } # Stash a closure which can be used to retrieve the connection in the users context later. - $self->_ldap_connection( sub { $self->store->ldap_bind( undef, $self->ldap_entry->dn, $password ) } ); + $_ldap_connection_passwords{refaddr($self)} = $password; return 1; } else { @@ -232,6 +236,19 @@ sub has_attribute { } } +=head2 ldap_connection + +Re-binds to the auth store with the credentials of the user you logged in +as, and returns a L object which you can use to do further queries. + +=cut + +sub ldap_connection { + my $self = shift; + $self->store->ldap_bind( undef, $self->ldap_entry->dn, + $_ldap_connection_passwords{refaddr($self)} ); +} + =head2 AUTOLOADed methods We automatically map the attributes of the underlying L @@ -271,6 +288,12 @@ value of user_field (uid by default.) =cut +sub DESTROY { + my $self = shift; + # Don't leak passwords.. + delete $_ldap_connection_passwords{refaddr($self)}; +} + sub AUTOLOAD { my $self = shift;