X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2FPlack%2FMiddleware%2FAuth%2FComplex.pm;h=55fc5ee1861579b4af2e2a6de06fc8ee5f50be2c;hb=4c1b8033b07680fc1ee1cdd4f515ca89545b22c4;hp=0f6759ddb24c1d5eb2e05d97e1b3c06d31a017d5;hpb=12aa0bc64ec5cbecd0cce89d1144deb0c66bbd61;p=plack-middleware-auth-complex.git diff --git a/lib/Plack/Middleware/Auth/Complex.pm b/lib/Plack/Middleware/Auth/Complex.pm index 0f6759d..55fc5ee 100644 --- a/lib/Plack/Middleware/Auth/Complex.pm +++ b/lib/Plack/Middleware/Auth/Complex.pm @@ -13,11 +13,12 @@ use Authen::Passphrase; use Authen::Passphrase::BlowfishCrypt; use Bytes::Random::Secure qw/random_bytes/; use DBI; -use Digest::SHA qw/hmac_sha1_base64/; +use Digest::SHA qw/hmac_sha1_base64 sha256/; use Email::Simple; use Email::Sender::Simple qw/sendmail/; use MIME::Base64 qw/decode_base64/; use Plack::Request; +use Tie::Hash::Expire; sub default_opts {( dbi_connect => ['dbi:Pg:', '', ''], @@ -26,12 +27,14 @@ sub default_opts {( insert_user => 'INSERT INTO users (id, passphrase, email) VALUES (?,?,?)', mail_subject => 'Password reset token', realm => 'restricted area', + cache_fail => 0, + cache_max_age => 5 * 60, token_max_age => 60 * 60 * 24, username_regex => qr/^\w{2,20}$/a, - register_url => '/register', - passwd_url => '/passwd', - request_reset_url => '/request-reset', - reset_url => '/reset' + register_url => '/action/register', + passwd_url => '/action/passwd', + request_reset_url => '/action/request-reset', + reset_url => '/action/reset' )} sub new { @@ -60,9 +63,17 @@ sub get_user { sub check_passphrase { my ($self, $username, $passphrase) = @_; + unless ($self->{cache}) { + tie my %cache, 'Tie::Hash::Expire', {expire_seconds => $self->{cache_max_age}}; + $self->{cache} = \%cache; + } + my $cachekey = sha256 "$username:$passphrase"; + return $self->{cache}{$cachekey} if exists $self->{cache}{$cachekey}; my $user = $self->get_user($username); return 0 unless $user; - Authen::Passphrase->from_rfc2307($user->{passphrase})->match($passphrase) + my $ret = Authen::Passphrase->from_rfc2307($user->{passphrase})->match($passphrase); + $self->{cache}{$cachekey} = $ret if $ret || $self->{cache_fail}; + $ret } sub hash_passphrase { @@ -275,25 +286,25 @@ error and 500 for server errors. All parameters are mandatory. =over -=item B /register?username=user&password=pw&confirm_password=pw&email=user@example.org +=item B /action/register?username=user&password=pw&confirm_password=pw&email=user@example.org This URL creates a new user with the given username, password and email. The two passwords must match, the user must match C and the user must not already exist. -=item B /passwd?password=oldpw&new_password=newpw&confirm_new_password=newpw +=item B /action/passwd?password=oldpw&new_password=newpw&confirm_new_password=newpw This URL changes the password of a user. The user must be authenticated (otherwise the endpoint will return 401). -=item B /request-reset?username=user +=item B /action/request-reset?username=user This URL requests a password reset token for the given user. The token will be sent to the user's email address. A reset token in the default implementation is C<< base64(HMAC-SHA1("$username $passphrase $expiration_unix_time")) . ":$expiration_user_time" >>. -=item B /reset?username=user&new_password=pw&confirm_new_password=pw&token=token +=item B /action/reset?username=user&new_password=pw&confirm_new_password=pw&token=token This URL performs a password reset. @@ -348,6 +359,17 @@ C<'Password reset token'>. Authentication realm. Defaults to C<'restricted area'>. +=item cache_fail + +If true, all authentication results are cached. If false, only +successful logins are cached. Defaults to false. + +=item cache_max_age + +Authentication cache timeout, in seconds. Authentication results are +cached for this number of seconds to avoid expensive hashing. Defaults +to 5 minutes. + =item token_max_age Password reset token validity, in seconds. Defaults to 24 hours. @@ -359,21 +381,21 @@ C. =item register_url -URL for registering. Defaults to C<'/register'>. +URL for registering. Defaults to C<'/action/register'>. =item passwd_url -URL for changing your password. Defaults to C<'/passwd'>. +URL for changing your password. Defaults to C<'/action/passwd'>. =item request_reset_url URL for requesting a password reset token by email. Defaults to -C<'/request-reset'>. +C<'/action/request-reset'>. =item reset_url URL for resetting your password with a reset token. Defaults to -C<'/reset'>. +C<'/action/reset'>. =back