lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/PasswordDBDemo.pm

65 lines
1.5 KiB
Perl
Raw Normal View History

2012-02-05 13:25:55 +01:00
##@file
# Demo password backend file
##@class
# Demo password backend class
package Lemonldap::NG::Portal::PasswordDBDemo;
use strict;
use Lemonldap::NG::Portal::Simple;
our $VERSION = '2.0.0';
2012-02-05 13:25:55 +01:00
## @apmethod int passwordDBInit()
# Check the use of AuthDemo
# @return Lemonldap::NG::Portal constant
sub passwordDBInit {
my $self = shift;
if ( $self->get_module('auth') eq 'Demo' ) {
return PE_OK;
}
else {
$self->lmLog( "Use PasswordDBDemo only with AuthDemo", 'error' );
return PE_ERROR;
}
PE_OK;
}
## @apmethod int modifyPassword()
# Check old password and password mismatch
# @return Lemonldap::NG::Portal constant
sub modifyPassword {
my $self = shift;
# Exit if no password change requested
return PE_OK unless ( $self->{newpassword} );
# Check if portal require old password
if ( $self->{portalRequireOldPassword} ) {
unless ( $self->{oldpassword} ) {
$self->lmLog( "Portal require old password", 'error' );
return PE_PP_MUST_SUPPLY_OLD_PASSWORD;
}
}
2012-02-05 13:25:55 +01:00
# Verify confirmation password matching
return PE_PASSWORD_MISMATCH
unless ( $self->{newpassword} eq $self->{confirmpassword} );
# Check old password
if ( $self->{oldpassword} ) {
# Old password must be the same as uid
return PE_BADOLDPASSWORD
if ( $self->{oldpassword} ne $self->{sessionInfo}->{uid} );
}
# Else accept all passwords
# They will not be changed
PE_OK;
}
1;