lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Auth/LDAP.pm

60 lines
1.4 KiB
Perl
Raw Normal View History

2016-05-01 09:30:21 +02:00
package Lemonldap::NG::Portal::Auth::LDAP;
use strict;
use Mouse;
2016-05-22 14:22:59 +02:00
use Lemonldap::NG::Portal::Main::Constants
qw(PE_OK PE_LDAPCONNECTFAILED PE_PP_CHANGE_AFTER_RESET PE_PP_PASSWORD_EXPIRED);
2016-05-01 09:30:21 +02:00
our $VERSION = '2.0.0';
2016-05-02 12:30:23 +02:00
# Inheritance: UserDB::LDAP provides all needed ldap functions
2016-05-01 09:30:21 +02:00
extends
qw(Lemonldap::NG::Portal::Auth::_WebForm Lemonldap::NG::Portal::UserDB::LDAP);
2016-06-09 20:40:20 +02:00
# RUNNING METHODS
2016-05-01 09:30:21 +02:00
sub authenticate {
2016-05-04 13:38:49 +02:00
my ( $self, $req ) = @_;
2016-05-01 09:30:21 +02:00
unless ( $self->ldap ) {
return PE_LDAPCONNECTFAILED;
}
# Set the dn unless done before
unless ( $req->datas->{dn} ) {
if ( my $tmp = $self->getUser($req) ) {
return $tmp;
}
}
my $res =
2016-05-11 13:42:37 +02:00
$self->userBind( $req->datas->{dn}, password => $req->datas->{password} );
2016-05-01 09:30:21 +02:00
# Remember password if password reset needed
$req->datas->{oldpassword} = $self->{password}
if (
$res == PE_PP_CHANGE_AFTER_RESET
or ( $res == PE_PP_PASSWORD_EXPIRED
and $self->conf->{ldapAllowResetExpiredPassword} )
);
2016-05-01 09:30:21 +02:00
return $res;
}
sub authLogout {
PE_OK;
}
2016-05-11 13:42:37 +02:00
# Test LDAP connection before trying to bind
sub userBind {
my $self = shift;
unless ($self->ldap
and $self->ldap->root_dse( attrs => ['supportedLDAPVersion'] ) )
{
$self->ldap( $self->newLdap );
}
return $self->ldap ? $self->ldap->userBind(@_) : undef;
}
2016-05-01 09:30:21 +02:00
1;