add a check that user really exists to Store::Htpasswd::User's constructor
[catagits/Catalyst-Authentication-Store-Htpasswd.git] / lib / Catalyst / Plugin / Authentication / Store / Htpasswd / User.pm
CommitLineData
e8a7c384 1#!/usr/bin/perl
2
3package Catalyst::Plugin::Authentication::Store::Htpasswd::User;
4use base qw/Catalyst::Plugin::Authentication::User Class::Accessor::Fast/;
5
6use strict;
7use warnings;
8
039544ff 9BEGIN { __PACKAGE__->mk_accessors(qw/user store/) }
e8a7c384 10
7efcea1c 11use overload '""' => sub { shift->id }, fallback => 1;
47fb088e 12
e8a7c384 13sub new {
039544ff 14 my ( $class, $store, $user ) = @_;
e8a7c384 15
ad94190e 16 return unless $user;
17
039544ff 18 bless { store => $store, user => $user }, $class;
e8a7c384 19}
20
7efcea1c 21sub id {
22 my $self = shift;
23 return $self->user->username;
24}
25
e8a7c384 26sub supported_features {
27 return {
28 password => {
29 self_check => 1,
47fb088e 30 },
31 session => 1
e8a7c384 32 };
33}
34
35sub check_password {
36 my ( $self, $password ) = @_;
3e0bbcff 37 return $self->user->check_password( $password );
e8a7c384 38}
39
40sub roles {
41 my $self = shift;
cedb9fb4 42 my $field = $self->user->extra_info->[0];
43 return defined $field ? split /,/, $field : ();
e8a7c384 44}
45
47fb088e 46sub for_session {
47 my $self = shift;
7efcea1c 48 return $self->id;
47fb088e 49}
50
039544ff 51sub AUTOLOAD {
52 my $self = shift;
53
54 ( my $method ) = ( our $AUTOLOAD =~ /([^:]+)$/ );
55
56 return if $method eq "DESTROY";
57
58 $self->user->$method;
47fb088e 59}
60
e8a7c384 61__PACKAGE__;
62
63__END__
64
65=pod
66
67=head1 NAME
68
69Catalyst::Plugin::Authentication::Store::Htpasswd::User - A user object
70representing an entry in an htpasswd file.
71
cedb9fb4 72=head1 DESCRIPTION
e8a7c384 73
cedb9fb4 74This object wraps an L<Authen::Htpasswd::User> object. An instance of it will be returned
75by C<< $c->user >> when using L<Catalyst::Plugin::Authentication::Store::Htpasswd>. Methods
76not defined in this module are passed through to the L<Authen::Htpasswd::User> object. The
77object stringifies to the username.
e8a7c384 78
cedb9fb4 79=head1 METHODS
80
81=head2 new($store,$user)
82
83Creates a new object from a store object, normally an instance of
84L<Catalyst::Plugin::Authentication::Store::Htpasswd::Backend>, and a user object,
85normally an instance of L<Authen::Htpasswd::User>.
86
87=head2 id
88
89Returns the username.
90
91=head2 check_password($password)
92
93Returns whether the password is valid.
94
95=head2 roles
96
97Returns an array of roles, which is extracted from a comma-separated list in the
98third field of the htpasswd file.
99
f3ed9b84 100=head1 COPYRIGHT & LICENSE
cedb9fb4 101
102 Copyright (c) 2005 the aforementioned authors. All rights
103 reserved. This program is free software; you can redistribute
104 it and/or modify it under the same terms as Perl itself.
e8a7c384 105
106=cut
107
108