package Authen::Simple::CDBI;
use strict;
use warnings;
use base 'Authen::Simple::Adapter';
use Carp qw[];
use Params::Validate qw[];
our $VERSION = 0.2;
__PACKAGE__->options({
class => {
type => Params::Validate::SCALAR,
optional => 0
},
username => {
type => Params::Validate::SCALAR,
default => 'username',
optional => 1
},
password => {
type => Params::Validate::SCALAR,
default => 'password',
optional => 1
}
});
sub init {
my ( $self, $params ) = @_;
my $class = $params->{class};
my $username = $params->{username};
my $password = $params->{password};
unless ( eval "require $class;" ) {
Carp::croak( qq/Failed to require class '$class'. Reason: '$@'/ );
}
unless ( $class->isa('Class::DBI') ) {
Carp::croak( qq/Class '$class' is not a subclass of 'Class::DBI'./ );
}
unless ( $class->find_column($username) ) {
Carp::croak( qq/Class '$class' does not have a username column named '$username'/ );
}
unless ( $class->find_column($password) ) {
Carp::croak( qq/Class '$class' does not have a password column named '$password'/ );
}
return $self->SUPER::init($params);
}
sub check {
my ( $self, $username, $password ) = @_;
my ( $class, $user, $encrypted ) = ( $self->class, undef, undef );
unless ( $user = $class->retrieve( $self->username => $username ) ) {
$self->log->debug( qq/User '$username' was not found with class '$class'./ )
if $self->log;
return 0;
}
$encrypted = $user->get( $self->password );
unless ( defined $encrypted && length $encrypted ) {
$self->log->debug( qq/Encrypted password for user '$username' is null./ )
if $self->log;
return 0;
}
unless ( $self->check_password( $password, $encrypted ) ) {
$self->log->debug( qq/Failed to authenticate user '$username'. Reason: 'Invalid credentials'/ )
if $self->log;
return 0;
}
$self->log->debug( qq/Successfully authenticated user '$username' with class '$class'./ )
if $self->log;
return 1;
}
1;
__END__
=head1 NAME
Authen::Simple::CDBI - Simple Class::DBI authentication
=head1 SYNOPSIS
use Authen::Simple::CDBI;
my $cdbi = Authen::Simple::CDBI->new(
class => 'MyApp::Model::User'
);
if ( $cdbi->authenticate( $username, $password ) ) {
# successfull authentication
}
# or as a mod_perl Authen handler
PerlModule Authen::Simple::Apache
PerlModule Authen::Simple::CDBI
PerlSetVar AuthenSimpleDBI_class "MyApp::Model::User"
PerlAuthenHandler Authen::Simple::CDBI
AuthType Basic
AuthName "Protected Area"
Require valid-user
=head1 DESCRIPTION
Class::DBI authentication.
=head1 METHODS
=over 4
=item * new
This method takes a hash of parameters. The following options are
valid:
=over 8
=item * class
Class::DBI subclass. Required.
class => 'MyApp::Model::User'
=item * username
Name of C column. Defaults to C.
username => 'username'
=item * password
Name of C column. Defaults to C.
password => 'password'
=item * log
Any object that supports C, C, C and C.
log => Log::Log4perl->get_logger('Authen::Simple::CDBI')
=back
=item * authenticate( $username, $password )
Returns true on success and false on failure.
=back
=head1 SEE ALSO
L.
L.
L.
=head1 AUTHOR
Christian Hansen C
=head1 COPYRIGHT
This program is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut