wiki-archive/twiki/lib/TWiki/Users/ApacheHtpasswdUser.pm

152 lines
4.1 KiB
Perl
Raw Normal View History

# Module of TWiki Enterprise Collaboration Platform, http://TWiki.org/
#
# Copyright (C) 2004-2007 TWiki Contributors. All Rights Reserved.
# TWiki Contributors are listed in the AUTHORS file in the root of
# this distribution. NOTE: Please extend that file, not this notice.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version. For
# more details read LICENSE in the root of this distribution.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# As per the GPL, removal of this notice is prohibited.
package TWiki::Users::ApacheHtpasswdUser;
use Apache::Htpasswd;
use Assert;
use strict;
use TWiki::Users::Password;
use Error qw( :try );
@TWiki::Users::ApacheHtpasswdUser::ISA = qw( TWiki::Users::Password );
=pod
---+ package TWiki::Users::ApacheHtpasswdUser
Password manager that uses Apache::HtPasswd to manage users and passwords.
Subclass of [[TWikiUsersPasswordDotPm][ =TWiki::Users::Password= ]].
See documentation of that class for descriptions of the methods of this class.
Duplicates functionality of
[[TWikiUsersHtPasswdUserDotPm][ =TWiki::Users::HtPasswdUser=]];
provided mainly as an example of how to write a new password manager.
=cut
sub new {
my( $class, $session ) = @_;
my $this = bless( $class->SUPER::new( $session ), $class );
$this->{apache} = new Apache::Htpasswd
( { passwdFile => $TWiki::cfg{Htpasswd}{FileName} } );
$this->{error} = undef;
return $this;
}
sub fetchPass {
my( $this, $login ) = @_;
ASSERT( $login ) if DEBUG;
my $r = $this->{apache}->fetchPass( $login );
$this->{error} = undef;
return $r;
}
sub checkPassword {
my( $this, $login, $passU ) = @_;
ASSERT( $login ) if DEBUG;
my $r = $this->{apache}->htCheckPassword( $login, $passU );
$this->{error} = $this->{apache}->error();
return $r;
}
sub deleteUser {
my( $this, $login ) = @_;
ASSERT( $login ) if DEBUG;
$this->{error} = undef;
my $r;
try {
$r = $this->{apache}->htDelete( $login );
$this->{error} = $this->{apache}->error() unless (defined($r));
} catch Error::Simple with {
$this->{error} = $this->{apache}->error();
};
return $r;
}
sub passwd {
my( $this, $user, $newPassU, $oldPassU ) = @_;
ASSERT( $user ) if DEBUG;
if( defined($oldPassU)) {
my $ok = 0;
try {
$ok = $this->{apache}->htCheckPassword( $user, $oldPassU );
} catch Error::Simple with {
};
unless( $ok ) {
$this->{error} = "Wrong password";
return 0;
}
}
my $added = 0;
try {
$added = $this->{apache}->htpasswd( $user, $newPassU, $oldPassU );
$this->{error} = undef;
} catch Error::Simple with {
$this->{error} = $this->{apache}->error();
$this->{error} = undef if
$this->{error} && $this->{error} =~ /assword not changed/;
};
return $added;
}
sub encrypt {
my( $this, $user, $passwordU, $fresh ) = @_;
ASSERT( $user ) if DEBUG;
my $salt = '';
unless( $fresh ) {
my $epass = $this->fetchPass( $user );
$salt = substr( $epass, 0, 2 ) if ( $epass );
}
my $r = $this->{apache}->CryptPasswd( $passwordU, $salt );
$this->{error} = $this->{apache}->error();
return $r;
}
sub error {
my $this = shift;
return $this->{error} || undef;
}
# emails are stored in extra info field as a ; separated list
sub getEmails {
my( $this, $login) = @_;
my @r = split(/;/, $this->{apache}->fetchInfo($login));
$this->{error} = $this->{apache}->error() || undef;
return @r;
}
sub setEmails {
my $this = shift;
my $login = shift;
my $r = $this->{apache}->writeInfo($login, join(';', @_));
$this->{error} = $this->{apache}->error() || undef;
return $r;
}
1;