1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
# --
# Kernel/Output/HTML/PreferencesPassword.pm
# Copyright (C) 2001-2006 OTRS GmbH, http://otrs.org/
# --
# $Id: PreferencesPassword.pm,v 1.11 2006/12/30 02:56:55 mh Exp $
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (GPL). If you
# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
# --
package Kernel::Output::HTML::PreferencesPassword;
use strict;
use Digest::MD5;
use vars qw($VERSION);
$VERSION = '$Revision: 1.11 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
sub new {
my $Type = shift;
my %Param = @_;
# allocate new hash for object
my $Self = {};
bless ($Self, $Type);
# get env
foreach (keys %Param) {
$Self->{$_} = $Param{$_};
}
# get needed objects
foreach (qw(ConfigObject LogObject DBObject LayoutObject UserID ParamObject ConfigItem)) {
die "Got no $_!" if (!$Self->{$_});
}
return $Self;
}
sub Param {
my $Self = shift;
my %Param = @_;
my @Params = ();
if ($Self->{ConfigItem}->{Area} eq 'Agent') {
if ($Self->{ConfigObject}->Get('AuthModule') =~ /(LDAP|HTTPBasicAuth|Radius)/i) {
return ();
}
}
elsif ($Self->{ConfigItem}->{Area} eq 'Customer') {
if ($Self->{ConfigObject}->Get('Customer::AuthModule') =~ /(LDAP|HTTPBasicAuth|Radius)/i) {
return ();
}
}
push (@Params, {
%Param,
Key => 'New password',
Name => 'NewPw',
Block => 'Password'
},
{
%Param,
Key => 'New password again',
Name => 'NewPw1',
Block => 'Password'
},
);
return @Params;
}
sub Run {
my $Self = shift;
my %Param = @_;
# pref update db
if ($Self->{ConfigObject}->Get('DemoSystem')) {
return 1;
}
my $Pw = '';
my $Pw1 = '';
if ($Param{GetParam}->{NewPw} && $Param{GetParam}->{NewPw}->[0]) {
$Pw = $Param{GetParam}->{NewPw}->[0];
}
if ($Param{GetParam}->{NewPw1} && $Param{GetParam}->{NewPw1}->[0]) {
$Pw1 = $Param{GetParam}->{NewPw1}->[0];
}
# compare pws
if ($Pw ne $Pw1) {
$Self->{Error} = "Can\'t update password, passwords dosn\'t match! Please try it again!";
return;
}
# check if pw is true
if (!$Pw || !$Pw1) {
$Self->{Error} = "Password is needed!";
return;
}
# check pw
if ($Self->{ConfigItem}->{PasswordRegExp} && $Pw !~ /$Self->{ConfigItem}->{PasswordRegExp}/) {
$Self->{Error} = 'Can\'t update password, invalid characters!';
return;
}
if ($Self->{ConfigItem}->{PasswordMinSize} && $Pw !~ /^.{$Self->{ConfigItem}->{PasswordMinSize}}/) {
$Self->{Error} = 'Can\'t update password, need min. 8 characters!';
return;
}
if ($Self->{ConfigItem}->{PasswordMin2Lower2UpperCharacters} && ($Pw !~ /[A-Z]/ || $Pw !~ /[a-z]/)) {
$Self->{Error} = 'Can\'t update password, need 2 lower and 2 upper characters!';
return;
}
if ($Self->{ConfigItem}->{PasswordNeedDigit} && $Pw !~ /\d/) {
$Self->{Error} = 'Can\'t update password, need min. 1 digit!';
return;
}
if ($Self->{ConfigItem}->{PasswordMin2Characters} && $Pw !~ /[A-z][A-z]/) {
$Self->{Error} = 'Can\'t update password, need min. 2 characters!';
return;
}
# md5 sum for new pw, needed for password history
my $MD5 = Digest::MD5->new();
$MD5->add($Pw);
my $MD5Pw = $MD5->hexdigest;
if ($Self->{ConfigItem}->{PasswordHistory} &&
$Param{UserData}->{UserLastPw} &&
($MD5Pw eq $Param{UserData}->{UserLastPw})
) {
$Self->{Error} = "Password is already used! Please use an other password!";
return;
}
if ($Self->{UserObject}->SetPassword(UserLogin => $Param{UserData}->{UserLogin}, PW => $Pw)) {
if ($Param{UserData}->{UserID} eq $Self->{UserID}) {
# update SessionID
$Self->{SessionObject}->UpdateSessionID(
SessionID => $Self->{SessionID},
Key => 'UserLastPw',
Value => $Param{UserData}->{UserPw},
);
# update SessionID
$Self->{SessionObject}->UpdateSessionID(
SessionID => $Self->{SessionID},
Key => 'UserPw',
Value => crypt($Pw, $Param{UserData}->{UserLogin}),
);
}
$Self->{Message} = "Preferences updated successfully!";
return 1;
}
return;
}
sub Error {
my $Self = shift;
my %Param = @_;
return $Self->{Error} || '';
}
sub Message {
my $Self = shift;
my %Param = @_;
return $Self->{Message} || '';
}
1;
|