package Dancer2::Plugin::Auth::Extensible; our $VERSION = '0.711'; use strict; use warnings; use Carp; use Dancer2::Core::Types qw(ArrayRef Bool HashRef Int Str); use Dancer2::FileUtils qw(path); use Dancer2::Template::Tiny; use File::Share qw(dist_dir); use HTTP::BrowserDetect; use List::Util qw(first); use Module::Runtime qw(use_module); use Scalar::Util qw(blessed); use Session::Token; use Try::Tiny; use URI::Escape; use URI; use URI::QueryParam; # Needed to access query_form_hash(), although may be loaded anyway use Dancer2::Plugin; # # config attributes # has denied_page => ( is => 'ro', isa => Str, from_config => sub { '/login/denied' }, ); has disable_roles => ( is => 'ro', isa => Bool, from_config => sub { 0 }, ); has exit_page => ( is => 'ro', isa => Str, from_config => sub { '/' }, ); has login_page => ( is => 'ro', isa => Str, from_config => sub { '/login' }, ); has login_template => ( is => 'ro', isa => Str, from_config => sub { 'login' }, ); has login_page_handler => ( is => 'ro', isa => Str, from_config => sub { '_default_login_page' }, ); has login_without_redirect => ( is => 'ro', isa => Bool, from_config => sub { 0 }, ); has logout_page => ( is => 'ro', isa => Str, from_config => sub { '/logout' }, ); has no_login_handler => ( is => 'ro', isa => Bool, from_config => 1, default => sub { 0 }, ); has mailer => ( is => 'ro', isa => HashRef, from_config => sub { '' }, ); has mail_from => ( is => 'ro', isa => Str, from_config => sub { '' }, ); has no_default_pages => ( is => 'ro', isa => Bool, from_config => sub { 0 }, ); has password_generator => ( is => 'ro', isa => Str, from_config => sub { '_default_password_generator' }, ); has password_reset_send_email => ( is => 'ro', isa => Str, from_config => sub { '_default_email_password_reset' }, ); has password_reset_text => ( is => 'ro', isa => Str, from_config => sub { '' }, ); has permission_denied_handler => ( is => 'ro', isa => Str, from_config => sub { '_default_permission_denied_handler' }, ); has permission_denied_page_handler => ( is => 'ro', isa => Str, from_config => sub { '_default_permission_denied_page' }, ); has realms => ( is => 'ro', isa => ArrayRef, default => sub { my @realms; while ( my ( $name, $realm ) = each %{ $_[0]->config->{realms} } ) { $realm->{priority} ||= 0; push @realms, { name => $name, %$realm }; }; return [ sort { $b->{priority} <=> $a->{priority} } @realms ]; }, ); has realm_names => ( is => 'lazy', isa => ArrayRef, default => sub { return [ map { $_->{name} } @{ $_[0]->realms } ]; }, ); has realm_count => ( is => 'lazy', isa => Int, default => sub { return scalar @{ $_[0]->realms } }, ); # return realm config hash reference by name sub realm { my ( $self, $name ) = @_; croak "realm name not provided" unless $name; my $realm = first { $_->{name} eq $name } @{ $self->realms }; return $realm; } has record_lastlogin => ( is => 'ro', isa => Bool, from_config => sub { 0 }, ); has reset_password_handler => ( is => 'ro', isa => Bool, from_config => sub { 0 }, plugin_keyword => 1, ); has user_home_page => ( is => 'ro', isa => Str, from_config => sub { '/' }, ); has welcome_send => ( is => 'ro', isa => Str, from_config => sub { '_default_welcome_send' }, ); has welcome_text => ( is => 'ro', isa => Str, from_config => sub { '' }, ); # # other attributes # has realm_providers => ( is => 'ro', isa => HashRef, default => sub { {} }, init_arg => undef, ); has _template_tiny => ( is => 'ro', default => sub { Dancer2::Template::Tiny->new }, ); # # hooks # plugin_hooks 'before_authenticate_user', 'after_authenticate_user', 'before_create_user', 'after_create_user', 'after_reset_code_success', 'login_required', 'permission_denied', 'after_login_success', 'before_logout'; # # keywords # plugin_keywords 'authenticate_user', 'create_user', 'get_user_details', 'logged_in_user', 'logged_in_user_lastlogin', 'logged_in_user_password_expired', 'password_reset_send', [ 'require_all_roles', 'requires_all_roles' ], [ 'require_any_role', 'requires_any_role' ], [ 'require_login', 'requires_login' ], [ 'require_role', 'requires_role' ], 'update_current_user', 'update_user', 'user_has_role', 'user_password', 'user_roles'; # # public methods # sub BUILD { my $plugin = shift; my $app = $plugin->app; Scalar::Util::weaken( my $weak_plugin = $plugin ); warn "No Auth::Extensible realms configured with which to authenticate user" unless $plugin->realm_count; # Force all providers to load whilst we have access to the full dsl. # If we try and load later, then if the provider is using other # keywords (such as schema) they will not be available from the dsl. for my $realm ( @{ $plugin->realm_names } ) { $plugin->auth_provider( $realm ); } if ( !$plugin->no_default_pages ) { my $login_page = $plugin->login_page; my $denied_page = $plugin->denied_page; # Match optional reset code, but not "denied" $app->add_route( method => 'get', regexp => qr!^$login_page/?([\w]{32})?$!, code => sub { my $app = shift; if ( $weak_plugin->logged_in_user ) { # User is already logged in so redirect elsewhere # uncoverable condition false $app->redirect( _return_url($app) || $weak_plugin->user_home_page ); } # Reset password code submitted? my ($code) = $app->request->splat; if ( $code && $weak_plugin->reset_password_handler && $weak_plugin->user_password( code => $code ) ) { $app->request->parameters->set('password_code_valid' => 1), } no strict 'refs'; return &{ $weak_plugin->login_page_handler }($weak_plugin); }, ); $app->add_route( method => 'get', regexp => qr!^$denied_page$!, code => sub { my $app = shift; $app->response->status(403); no strict 'refs'; return &{ $weak_plugin->permission_denied_page_handler }($weak_plugin); }, ); } if ( !$plugin->no_login_handler ) { my $login_page = $plugin->login_page; my $logout_page = $plugin->logout_page; # Match optional reset code, but not "denied" $app->add_route( method => 'post', regexp => qr!^$login_page/?([\w]{32})?$!, code => \&_post_login_route, ); for my $method (qw/get post/) { $app->add_route( method => $method, regexp => qr!^$logout_page$!, code => \&_logout_route, ); } } if ( $plugin->login_without_redirect ) { # Add a post route so we can catch transparent login. # This is a little sucky but since no hooks are called before # route dispatch then adding this wildcard route now does at # least make sure it gets added before any routes that use this # plugin's route decorators are added. $plugin->app->add_route( method => 'post', regexp => qr/.*/, code => sub { my $app = shift; my $request = $app->request; # See if this is actually a POST login. my $username = $request->body_parameters->get( '__auth_extensible_username'); my $password = $request->body_parameters->get( '__auth_extensible_password'); if ( defined $username && defined $password ) { my $auth_realm = $request->body_parameters->get( '__auth_extensible_realm'); # Remove the auth params since the forward we call later # will cause dispatch to retry this route again if # the original route was a post since dispatch starts # again from the start of the route list and this # wildcard route will get hit again causing a loop. foreach (qw/username password realm/) { $request->body_parameters->remove( "__auth_extensible_$_"); } # Stash method and params since we delete these from # the session if login is successful but we still need # them for the forward to the original route after # success. my $method = $app->session->read('__auth_extensible_method'); my $params = $app->session->read('__auth_extensible_params'); # Attempt authentication. my ( $success, $realm ) = $weak_plugin->authenticate_user( $username, $password, $auth_realm ); if ($success) { $app->session->delete('__auth_extensible_params'); $app->session->delete('__auth_extensible_method'); # Change session ID if we have a new enough D2 # version with support. $app->change_session_id if $app->can('change_session_id'); $app->session->write( logged_in_user => $username ); $app->session->write( logged_in_user_realm => $realm ); $app->log( core => "Realm is $realm" ); $weak_plugin->execute_plugin_hook( 'after_login_success'); } else { $app->request->var( login_failed => 1 ); } # Now forward to the original route using method and # params stashed in the session. $app->forward( $request->path, $params, { method => $method } ); } $app->pass; }, ); } } sub auth_provider { my ( $plugin, $realm ) = @_; # If no realm was provided, but we have a logged in user, use their realm. # Don't try and read the session any earlier though, as it won't be # available on plugin load if ( !defined $realm ) { if ( $plugin->app->session->read('logged_in_user') ) { $realm = $plugin->app->session->read('logged_in_user_realm'); } else { croak "auth_provider needs realm or there must be a logged in user"; } } # First, if we already have a provider for this realm, go ahead and use it: return $plugin->realm_providers->{$realm} if exists $plugin->realm_providers->{$realm}; # OK, we need to find out what provider this realm uses, and get an instance # of that provider, configured with the settings from the realm. my $realm_settings = $plugin->realm($realm) or croak "Invalid realm $realm"; my $provider_class = $realm_settings->{provider} or croak "No provider configured - consult documentation for " . __PACKAGE__; if ( $provider_class !~ /::/ ) { $provider_class = __PACKAGE__ . "::Provider::$provider_class"; } return $plugin->realm_providers->{$realm} = use_module($provider_class)->new( plugin => $plugin, %$realm_settings, ); } sub authenticate_user { my ( $plugin, $username, $password, $realm ) = @_; my ( @errors, $success, $auth_realm ); $plugin->execute_plugin_hook( 'before_authenticate_user', { username => $username, password => $password, realm => $realm } ); # username and password must be simple non-empty scalars if ( defined $username && ref($username) eq '' && $username ne '' && defined $password && ref($password) eq '' && $password ne '' ) { my @realms_to_check = $realm ? ($realm) : @{ $plugin->realm_names }; for my $realm (@realms_to_check) { $plugin->app->log( debug => "Attempting to authenticate $username against realm $realm" ); my $provider = $plugin->auth_provider($realm); my %lastlogin = $plugin->record_lastlogin ? ( lastlogin => 'logged_in_user_lastlogin' ) : (); eval { $success = $provider->authenticate_user( $username, $password, %lastlogin ); 1; } or do { # uncoverable condition right my $err = $@ || "Unknown error"; $plugin->app->log( error => "$realm provider threw error: $err" ); push @errors, $err; }; if ($success) { $plugin->app->log( debug => "$realm accepted user $username" ); $auth_realm = $realm; last; } } } # force 0 or 1 for success $success = 0+!!$success; $plugin->execute_plugin_hook( 'after_authenticate_user', { username => $username, password => $password, realm => $auth_realm, errors => \@errors, success => $success, } ); return wantarray ? ( $success, $auth_realm ) : $success; } sub create_user { my $plugin = shift; my %options = @_; my ( $user, @errors ); croak "Realm must be specified when more than one realm configured" if !$options{realm} && $plugin->realm_count > 1; $plugin->execute_plugin_hook( 'before_create_user', \%options ); # uncoverable condition false my $realm = delete $options{realm} || $plugin->realm_names->[0]; my $email_welcome = delete $options{email_welcome}; my $password = delete $options{password}; my $provider = $plugin->auth_provider($realm); eval { $user = $provider->create_user(%options); 1; } or do { # uncoverable condition right my $err = $@ || "Unknown error"; $plugin->app->log( error => "$realm provider threw error: $err" ); push @errors, $err; }; if ($user) { # user creation successful if ($email_welcome) { my $code = _reset_code(); # Would be slightly more efficient to do this at time of creation, # but this keeps the code simpler for the provider $provider->set_user_details( $options{username}, pw_reset_code => $code ); # email hard-coded as per password_reset_send() my %params = ( code => $code, email => $options{email}, user => $user ); no strict 'refs'; &{ $plugin->welcome_send }( $plugin, %params ); } elsif ($password) { eval { $provider->set_user_password( $options{username}, $password ); 1; } or do { # uncoverable condition right my $err = $@ || "Unknown error"; $plugin->app->log( error => "$realm provider threw error: $err" ); push @errors, $err; }; } } $plugin->execute_plugin_hook( 'after_create_user', $options{username}, $user, \@errors ); return $user; } sub get_user_details { my ( $plugin, $username, $realm ) = @_; my $user; return unless defined $username; my @realms_to_check = $realm ? ($realm) : @{ $plugin->realm_names }; for my $realm (@realms_to_check) { $plugin->app->log( debug => "Attempting to find user $username in realm $realm" ); my $provider = $plugin->auth_provider($realm); eval { $user = $provider->get_user_details($username); 1; } or do { # uncoverable condition right my $err = $@ || "Unknown error"; $plugin->app->log( error => "$realm provider threw error: $err" ); }; last if $user; } return $user; } sub logged_in_user { my $plugin = shift; my $app = $plugin->app; my $session = $app->session; my $request = $app->request; if ( my $username = $session->read('logged_in_user') ) { my $existing = $request->vars->{logged_in_user_hash}; return $existing if $existing; my $realm = $session->read('logged_in_user_realm'); my $provider = $plugin->auth_provider($realm); my $user = $provider->can('get_user_details') ? $plugin->get_user_details( $username, $realm ) : +{ username => $username }; $request->vars->{logged_in_user_hash} = $user; return $user; } else { return undef; # Ensure function doesn't cause problems in list context (GH92) } } sub logged_in_user_lastlogin { my $lastlogin = shift->app->session->read('logged_in_user_lastlogin'); # We don't expect any bad $lastlogin values during testing so mark as many # as possible as uncoverable. # uncoverable branch false # uncoverable condition right if ( defined $lastlogin && ref($lastlogin) eq '' && $lastlogin =~ /^\d+$/ ) { # A sane epoch time. Old Provider::DBIC stores DateTime in the session # which might get stringified or perhaps not and some session engines # might fail to serialize/deserialize so we now store epoch and # convert back to DateTime. $lastlogin = DateTime->from_epoch( epoch => $lastlogin ); } return $lastlogin; } sub logged_in_user_password_expired { my $plugin = shift; return unless $plugin->logged_in_user; my $provider = $plugin->auth_provider; $provider->password_expired( $plugin->logged_in_user ); } sub password_reset_send { my ( $plugin, %options ) = @_; my $result = 0; my @realms_to_check = $options{realm} ? ( $options{realm} ) : @{ $plugin->realm_names }; my $username = $options{username} or croak "username must be passed to password_reset_send"; foreach my $realm (@realms_to_check) { my $this_result; $plugin->app->log( debug => "Attempting to find $username in realm $realm for password reset" ); my $provider = $plugin->auth_provider($realm); # Generate random string for the password reset URL my $code = _reset_code(); my $user = try { $provider->set_user_details( $username, pw_reset_code => $code ); } catch { $plugin->app->log( debug => "Failed to set_user_details with $realm: $_" ); }; if ($user) { $plugin->app->log( debug => "got one"); # Okay, so email key is hard-coded, and therefore relies on the # provider returning that key. The alternative is to have a # separate provider function to get an email address, which seems # an overkill. Providers can make the email key configurable if # need be my $email = blessed $user ? $user->email : $user->{email}; my %options = ( code => $code, email => $email ); no strict 'refs'; $result++ if &{ $plugin->password_reset_send_email }( $plugin, %options ); } } $result ? 1 : 0; # 1 if at least one send was successful } sub require_all_roles { my $plugin = shift; croak "Cannot use require_all_roles since roles are disabled by disable_roles setting" if $plugin->disable_roles; return $plugin->_build_wrapper( @_, 'all' ); } sub require_any_role { my $plugin = shift; croak "Cannot use require_any_role since roles are disabled by disable_roles setting" if $plugin->disable_roles; return $plugin->_build_wrapper( @_, 'any' ); } sub require_login { my $plugin = shift; my $coderef = shift; return sub { if ( !$coderef || ref $coderef ne 'CODE' ) { $plugin->app->log( warning => "Invalid require_login usage, please see docs" ); } # User already logged in so give them the page. return $coderef->($plugin) if $plugin->logged_in_user; return $plugin->_check_for_login( $coderef ); }; } sub require_role { my $plugin = shift; croak "Cannot use require_role since roles are disabled by disable_roles setting" if $plugin->disable_roles; return $plugin->_build_wrapper( @_, 'single' ); } sub update_current_user { my ( $plugin, %update ) = @_; my $session = $plugin->app->session; if ( my $username = $session->read('logged_in_user') ) { my $realm = $session->read('logged_in_user_realm'); $plugin->update_user( $username, realm => $realm, %update ); } else { $plugin->app->log( debug => "Could not update current user as no user currently logged in" ); } } sub update_user { my ( $plugin, $username, %update ) = @_; croak "Realm must be specified when more than one realm configured" if !$update{realm} && $plugin->realm_count > 1; # uncoverable condition false my $realm = delete $update{realm} || $plugin->realm_names->[0]; my $provider = $plugin->auth_provider($realm); my $updated = $provider->set_user_details( $username, %update ); my $cur_user = $plugin->app->session->read('logged_in_user'); $plugin->app->request->vars->{logged_in_user_hash} = $updated if $cur_user && $cur_user eq $username; $updated; } sub user_has_role { my $plugin = shift; croak "Cannot call user_has_role since roles are disabled by disable_roles setting" if $plugin->disable_roles; my ( $username, $want_role ); if ( @_ == 2 ) { ( $username, $want_role ) = @_; } else { $username = $plugin->app->session->read('logged_in_user'); $want_role = shift; } return unless defined $username; my $roles = $plugin->user_roles($username); for my $has_role (@$roles) { return 1 if $has_role eq $want_role; } return 0; } sub user_password { my ( $plugin, %params ) = @_; my ( $username, $realm ); my @realms_to_check = $params{realm} ? ( $params{realm} ) : @{ $plugin->realm_names }; # Expect either a code, username or nothing (for logged-in user) if ( exists $params{code} ) { my $code = $params{code} or return; foreach my $realm_check (@realms_to_check) { my $provider = $plugin->auth_provider($realm_check); # Realm may not support get_user_by_code $username = try { $provider->get_user_by_code($code); } catch { $plugin->app->log( 'debug', "Failed to check for code with $realm_check: $_" ); }; if ($username) { $plugin->app->log( 'debug', "Found $username for code with $realm_check" ); $realm = $realm_check; last; } else { $plugin->app->log( 'debug', "No user found in realm $realm_check with code $code" ); } } return unless $username; } else { if ( !$params{username} ) { $username = $plugin->app->session->read('logged_in_user') or croak "No username specified and no logged-in user"; $realm = $plugin->app->session->read('logged_in_user_realm'); } else { $username = $params{username}; $realm = $params{realm}; } if ( exists $params{password} ) { my $success; # Possible that realm will not be set before this statement ( $success, $realm ) = $plugin->authenticate_user( $username, $params{password}, $realm ); $success or return; } } # We now have a valid user. Reset the password? if ( my $new_password = $params{new_password} ) { if ( !$realm ) { # It's possible that the realm is unknown at this stage foreach my $realm_check (@realms_to_check) { my $provider = $plugin->auth_provider($realm_check); $realm = $realm_check if $provider->get_user_details($username); } return unless $realm; # Invalid user } my $provider = $plugin->auth_provider($realm); $provider->set_user_password( $username, $new_password ); if ( $params{code} ) { # Stop reset code being reused $provider->set_user_details( $username, pw_reset_code => undef ); # Force them to login if this was a reset with a code. This forces # a check that they have the new password correct, and there is a # chance they could have been logged-in as another user $plugin->app->destroy_session; } } $username; } sub user_roles { my ( $plugin, $username, $realm ) = @_; croak "Cannot call user_roles since roles are disabled by disable_roles setting" if $plugin->disable_roles; if ( !defined $username ) { # assume logged_in_user so clear realm and look for user $realm = undef; $username = $plugin->app->session->read('logged_in_user'); croak "user_roles needs a username or a logged in user" unless $username; } my $roles = $plugin->auth_provider($realm)->get_user_roles($username); return unless defined $roles; return wantarray ? @$roles : $roles; } # # private methods # sub _build_wrapper { my $plugin = shift; my $require_role = shift; my $coderef = shift; my $mode = shift; my @role_list = ref $require_role eq 'ARRAY' ? @$require_role : $require_role; return sub { return $plugin->_check_for_login( $coderef ) unless $plugin->logged_in_user; my $role_match; # this is a private method and we should never need 'else' # uncoverable branch false count:3 if ( $mode eq 'single' ) { for ( $plugin->user_roles ) { $role_match++ and last if _smart_match( $_, $require_role ); } } elsif ( $mode eq 'any' ) { my %role_ok = map { $_ => 1 } @role_list; for ( $plugin->user_roles ) { $role_match++ and last if $role_ok{$_}; } } elsif ( $mode eq 'all' ) { $role_match++; for my $role (@role_list) { if ( !$plugin->user_has_role($role) ) { $role_match = 0; last; } } } if ($role_match) { # We're happy with their roles, so go head and execute the route # handler coderef. return $coderef->($plugin); } $plugin->execute_plugin_hook( 'permission_denied', $coderef ); # TODO: see if any code executed by that hook set up a response $plugin->app->response->status(403); my $options; my $view = $plugin->denied_page; my $template_engine = $plugin->app->template_engine; my $path = $template_engine->view_pathname($view); if ( !$template_engine->pathname_exists($path) ) { $plugin->app->log( debug => "app has no denied_page template defined" ); $options->{content} = $plugin->_render_template('login_denied.tt'); undef $view; } return $plugin->app->template( $view, undef, $options ); }; } sub _check_for_login { my ( $plugin, $coderef ) = @_; $plugin->execute_plugin_hook( 'login_required', $coderef ); # TODO: see if any code executed by that hook set up a response my $request = $plugin->app->request; if ( $plugin->login_without_redirect ) { my $tokens = { login_failed => $request->var('login_failed'), reset_password_handler => $plugin->reset_password_handler }; # The WWW-Authenticate header added varies depending on whether # the client is a robot or not. my $ua = HTTP::BrowserDetect->new( $request->env->{HTTP_USER_AGENT} ); my $base = $request->base; my $auth_method; if ( !$ua->browser_string || $ua->robot ) { $auth_method = $auth_method = qq{Basic realm="$base"}; } else { $auth_method = qq{FormBasedLogin realm="$base", } . q{comment="use form to log in"}; } $plugin->app->response->status(401); $plugin->app->response->push_header( 'WWW-Authenticate' => $auth_method ); # If this is the first attempt to reach a protected page and *not* # a failed passthrough login then we need to stash method and params. if ( !$request->var('login_failed') ) { $plugin->app->session->write( '__auth_extensible_method' => lc($request->method) ); $plugin->app->session->write( '__auth_extensible_params' => \%{ $request->params } ); } return $plugin->_render_login_page( 'transparent_login.tt', $tokens ); } # old-fashioned redirect to login page with return_url set my $forward = $request->path; $forward .= "?".$request->query_string if $request->query_string; return $plugin->app->redirect( $request->uri_for( # Do not use request_uri, as it is the raw string sent by the # browser, not taking into account the application mount point. # This means that when it is then concatenated with the base URL, # the application mount point is specified twice. See GH PR #81 $plugin->login_page, { return_url => $forward } ) ); } sub _render_login_page { my ( $plugin, $default_template, $tokens ) = @_; # If app has its own login page view then use it # otherwise render our internal one and pass that to 'template'. my ( $view, $options ) = ( $plugin->login_template, {} ); my $template_engine = $plugin->app->template_engine; my $path = $template_engine->view_pathname($view); if ( !$template_engine->pathname_exists($path) ) { $plugin->app->log( debug => "app has no login template defined" ); $options->{content} = $plugin->_render_template( $default_template, $tokens ); undef $view; } return $plugin->app->template( $view, $tokens, $options ); } sub _default_email_password_reset { my ( $plugin, %options ) = @_; my %message; if ( my $password_reset_text = $plugin->password_reset_text ) { no strict 'refs'; %message = &{$password_reset_text}( $plugin, %options ); } else { my $site = $plugin->app->request->uri_base; my $appname = $plugin->app->config->{appname} || '[unknown]'; $message{subject} = "Password reset request"; $message{from} = $plugin->mail_from; $message{plain} = <<__EMAIL; A request has been received to reset your password for $appname. If you would like to do so, please follow the link below: $site/login/$options{code} __EMAIL } $plugin->_send_email( to => $options{email}, %message ); } sub _render_template { my ( $plugin, $view, $tokens ) = @_; $tokens ||= +{}; my $template = path( dist_dir('Dancer2-Plugin-Auth-Extensible'), 'views', $view ); $plugin->_template_tiny->render( $template, $tokens ); } sub _default_login_page { my $plugin = shift; my $request = $plugin->app->request; # Simple escape of new_password param. # This only works with the default password generator but since we # are planning to remove password generation in favour of user-specified # password on reset then this will do for now. my $new_password = $request->parameters->get('new_password'); if ( defined $new_password ) { $new_password =~ s/[^a-zA-Z0-9]//g; } # Make sure all tokens are escaped in some way. my $tokens = { loginpage => uri_escape( $plugin->login_page ), login_failed => !!$request->var('login_failed'), new_password => $new_password, password_code_valid => !!$request->parameters->get('password_code_valid'), reset_sent => !!$request->parameters->get('reset_sent'), reset_password_handler => !!$plugin->reset_password_handler, return_url => uri_escape( $request->parameters->get('return_url') ), }; return $plugin->_render_login_page( 'login.tt', $tokens ); } sub _default_permission_denied_page { shift->_render_template( 'login_denied.tt' ); } sub _default_welcome_send { my ( $plugin, %options ) = @_; my %message; if ( my $welcome_text = $plugin->welcome_text ) { no strict 'refs'; %message = &{$welcome_text}( $plugin, %options ); } else { my $site = $plugin->app->request->base; my $host = $site->host; my $appname = $plugin->app->config->{appname} || '[unknown]'; my $reset_link = $site . "login/$options{code}"; $message{subject} = "Welcome to $host"; $message{from} = $plugin->mail_from; $message{plain} = <<__EMAIL; An account has been created for you at $host. If you would like to accept this, please follow the link below to set a password: $reset_link __EMAIL } $plugin->_send_email( to => $options{email}, %message ); } sub _email_mail_message { my ( $plugin, %params ) = @_; my $mailer_options = $plugin->mailer->{options} || {}; my @parts; push @parts, Mail::Message::Body::String->new( mime_type => 'text/plain', disposition => 'inline', data => $params{plain}, ) if ( $params{plain} ); push @parts, Mail::Message::Body::String->new( mime_type => 'text/html', disposition => 'inline', data => $params{html}, ) if ( $params{html} ); @parts or croak "No plain or HTML email text supplied"; my $content_type = @parts > 1 ? 'multipart/alternative' : $parts[0]->type; Mail::Message->build( To => $params{to}, Subject => $params{subject}, From => $params{from}, 'Content-Type' => $content_type, attach => \@parts, )->send(%$mailer_options); } sub _send_email { my $plugin = shift; my $mailer = $plugin->mailer or croak "No mailer configured"; my $module = $mailer->{module} or croak "No email module specified for mailer"; if ( $module eq 'Mail::Message' ) { # require Mail::Message; require Mail::Message::Body::String; return $plugin->_email_mail_message(@_); } else { croak "No support for $module. Please submit a PR!"; } } sub _return_url { my $app = shift; my $return_url = $app->request->query_parameters->get('return_url') || $app->request->body_parameters->get('return_url') or return undef; $return_url = uri_unescape($return_url); my $uri = URI->new($return_url); # Construct a URL using uri_for, which ensures that the correct base domain # is used (preventing open URL redirection attacks). The query needs to be # parsed and passed as an option, otherwise it is not encoded properly return $app->request->uri_for($uri->path, $uri->query_form_hash); } # # routes # # implementation of logout route sub _logout_route { my $app = shift; my $req = $app->request; my $plugin = $app->with_plugin('Auth::Extensible'); $plugin->execute_plugin_hook( 'before_logout' ); $app->destroy_session; if ( my $url = _return_url($app) ) { $app->redirect( $url ); } elsif ($plugin->exit_page) { $app->redirect($plugin->exit_page); } else { # TODO: perhaps make this more configurable, perhaps by attempting to # render a template first. return "OK, logged out successfully."; } } # implementation of post login route sub _post_login_route { my $app = shift; my $plugin = $app->with_plugin('Auth::Extensible'); my $params = $app->request->body_parameters->as_hashref; # First check for password reset request, if applicable if ( $plugin->reset_password_handler && $params->{submit_reset} ) { my $username = $params->{username_reset}; croak "Attempt to pass reference to reset blocked" if ref $username; $plugin->password_reset_send( username => $username ); return $app->forward( $plugin->login_page, { reset_sent => 1 }, { method => 'GET' } ); } # Then for a password reset itself (confirmed by POST request) my ($code) = $plugin->reset_password_handler && $params->{confirm_reset} && $app->request->splat; if ($code) { no strict 'refs'; my $randompw = &{ $plugin->password_generator }; if (my $username = $plugin->user_password( code => $code, new_password => $randompw ) ) { # Support a custom 'Change password' page or other app-based # intervention after a successful reset code has been applied foreach my $realm_check (@{ $plugin->realm_names }) { # $params->{realm} isn't defined at this point... my $provider = $plugin->auth_provider($realm_check); $params->{realm} = $realm_check if $provider->get_user_details($username); } $plugin->execute_plugin_hook( 'after_reset_code_success', { username => $username, password => $randompw, realm => $params->{realm} } ); return $app->forward( $plugin->login_page, { new_password => $randompw }, { method => 'GET' } ); } } # For security, ensure the username and password are straight scalars; if # the app is using a serializer and we were sent a blob of JSON, they could # have come from that JSON, and thus could be hashrefs (JSON SQL injection) # - for database providers, feeding a carefully crafted hashref to the SQL # builder could result in different SQL to what we'd expect. # For instance, if we pass password => params->{password} to an SQL builder, # we'd expect the query to include e.g. "WHERE password = '...'" (likely # with paremeterisation) - but if params->{password} was something # different, e.g. { 'like' => '%' }, we might end up with some SQL like # WHERE password LIKE '%' instead - which would not be a Good Thing. my $username = $params->{username} || $params->{__auth_extensible_username}; my $password = $params->{password} || $params->{__auth_extensible_password}; for ( $username, $password ) { if ( ref $_ ) { # TODO: handle more cleanly croak "Attempt to pass a reference as username/password blocked"; } } if ( $plugin->logged_in_user ) { # uncoverable condition false $app->redirect( _return_url($app) || $plugin->user_home_page ); } my $auth_realm = $params->{realm} || $params->{__auth_extensible_realm}; my ( $success, $realm ) = $plugin->authenticate_user( $username, $password, $auth_realm ); if ($success) { # change session ID if we have a new enough D2 version with support $plugin->app->change_session_id if $plugin->app->can('change_session_id'); $app->session->write( logged_in_user => $username ); $app->session->write( logged_in_user_realm => $realm ); $app->log( core => "Realm is $realm" ); $plugin->execute_plugin_hook( 'after_login_success' ); # uncoverable condition false $app->redirect( _return_url($app) || $plugin->user_home_page ); } else { $app->request->vars->{login_failed}++; $app->forward( $plugin->login_page, { login_failed => 1 }, { method => 'GET' } ); } } # # private functions # sub _default_password_generator { Session::Token->new( length => 8 )->get; } sub _reset_code { Session::Token->new( length => 32 )->get; } # Replacement for much maligned and misunderstood smartmatch operator sub _smart_match { my ( $got, $want ) = @_; if ( !ref $want ) { return $got eq $want; } elsif ( ref $want eq 'Regexp' ) { return $got =~ $want; } elsif ( ref $want eq 'ARRAY' ) { return grep { $_ eq $got } @$want; } else { carp "Don't know how to match against a " . ref $want; } } =head1 NAME Dancer2::Plugin::Auth::Extensible - extensible authentication framework for Dancer2 apps =head1 DESCRIPTION A user authentication and authorisation framework plugin for Dancer2 apps. Makes it easy to require a user to be logged in to access certain routes, provides role-based access control, and supports various authentication methods/sources (config file, database, Unix system users, etc). Designed to support multiple authentication realms and to be as extensible as possible, and to make secure password handling easy. The base class for auth providers makes handling C-style hashed passwords really simple, so you have no excuse for storing plain-text passwords. A simple script called B to generate RFC2307-style hashed passwords is included, or you can use L yourself to do so, or use the C utility if you have it installed. =head1 SYNOPSIS Configure the plugin to use the authentication provider class you wish to use: plugins: Auth::Extensible: realms: users: provider: Config .... The configuration you provide will depend on the authentication provider module in use. For a simple example, see L. Define that a user must be logged in and have the proper permissions to access a route: get '/secret' => require_role Confidant => sub { tell_secrets(); }; Define that a user must be logged in to access a route - and find out who is logged in with the C keyword: get '/users' => require_login sub { my $user = logged_in_user; return "Hi there, $user->{username}"; }; =head1 AUTHENTICATION PROVIDERS For flexibility, this authentication framework uses simple authentication provider classes, which implement a simple interface and do whatever is required to authenticate a user against the chosen source of authentication. For an example of how simple provider classes are, so you can build your own if required or just try out this authentication framework plugin easily, see L. This framework supplies the following providers out-of-the-box: =over 4 =item L Authenticates users using system accounts on Linux/Unix type boxes =item L Authenticates users stored in the app's config =back The following external providers are also available on the CPAN: =over 4 =item L Authenticates users stored in a database table using L =item L Authenticates users stored in a database table =item L Authenticates users via in an IMAP server. =item L Authenticates users stored in an LDAP directory. =item L An alternative L-based provider. =back Need to write your own? Just create a new provider class which consumes L and implements the required methods, and you're good to go! =head1 CONTROLLING ACCESS TO ROUTES Keywords are provided to check if a user is logged in / has appropriate roles. =head2 require_login - require the user to be logged in get '/dashboard' => require_login sub { .... }; If the user is not logged in, they will be redirected to the login page URL to log in. The default URL is C - this may be changed with the C option. =head2 require_role - require the user to have a specified role get '/beer' => require_role BeerDrinker => sub { ... }; Requires that the user be logged in as a user who has the specified role. If the user is not logged in, they will be redirected to the login page URL. If they are logged in, but do not have the required role, they will be redirected to the access denied URL. If C configuration option is set to a true value then using L will cause the application to croak on load. =head2 require_any_role - require the user to have one of a list of roles get '/drink' => require_any_role [qw(BeerDrinker VodaDrinker)] => sub { ... }; Requires that the user be logged in as a user who has any one (or more) of the roles listed. If the user is not logged in, they will be redirected to the login page URL. If they are logged in, but do not have any of the specified roles, they will be redirected to the access denied URL. If C configuration option is set to a true value then using L will cause the application to croak on load. =head2 require_all_roles - require the user to have all roles listed get '/foo' => require_all_roles [qw(Foo Bar)] => sub { ... }; Requires that the user be logged in as a user who has all of the roles listed. If the user is not logged in, they will be redirected to the login page URL. If they are logged in but do not have all of the specified roles, they will be redirected to the access denied URL. If C configuration option is set to a true value then using L will cause the application to croak on load. =head1 NO-REDIRECT LOGIN By default when a page is requested that requires login and the user is not logged in then the plugin redirects the user to the L and sets C to the page originally requested. After successful login the user is redirected to the originally-requested page. As an alternative if L is true then the login process happens with no redirects. Instead a C<401> C code is returned and a login page is displayed. This login page is posted to the original URI and on successful login an internal L is performed so that the originally requested page is displayed. Any L from the original request are added to the forward so that they are available to the page's route handler either using L or L. This relies on the login form having no C set and also it must use C<__auth_extensible_username> and C<__auth_extensible_password> input names. Optionally C<__auth_extensible_realm> can also be used in a custom login page. See L for the original idea for this functionality. =head1 CUSTOMISING C AND C =head2 login_template The L setting determines the name of the view you use for your custom login page. If this view exists in your application then it will be used instead of the default login template. If you are using L and assuming you are using L then your custom login page should be something like this:

Login Required

You need to log in to continue.

[%- IF login_failed -%]

LOGIN FAILED

[%- END -%]


[%- IF reset_password_handler -%]

Password reset

Enter your username to obtain an email to reset your password

[%- END -%] If you are B using L and assuming you are using L then your custom login page should be something like this:

Login Required

You need to log in to continue.

[%- IF login_failed -%]

LOGIN FAILED

[%- END -%]


[%- IF return_url -%] [%- END -%] [%- IF reset_password_handler -%]

Password reset

Enter your username to obtain an email to reset your password

[%- END -%]
=head2 Replacing the default C< /login > and C< /login/denied > routes By default, the plugin adds a route to present a simple login form at that URL. If you would rather add your own, set the C setting to a true value, and define your own route which responds to C with a login page. Alternatively you can let DPAE add the routes and handle the status codes, etc. and simply define the setting C and/or C with the name of a subroutine to be called to handle the route. Note that it must be a fully qualified sub. E.g. plugins: Auth::Extensible: login_page_handler: 'My::App::login_page_handler' permission_denied_page_handler: 'My::App::permission_denied_page_handler' Then in your code you might simply use a template: sub login_page_handler { my $return_url = query_parameters->get('return_url'); template 'account/login', { title => 'Sign in', return_url => $return_url, }, { layout => 'login.tt', }; } sub permission_denied_page_handler { template 'account/login'; } and your account/login.tt template might look like: [% IF vars.login_failed %]
Login Failed Try again
[% END %] If the user is logged in, but tries to access a route which requires a specific role they don't have, they will be redirected to the "permission denied" page URL, which defaults to C but may be changed using the C option. Again, by default a route is added to respond to that URL with a default page; again, you can disable this by setting C and creating your own. This would still leave the routes C and C routes in place. To disable them too, set the option C to a true value. In this case, these routes should be defined by the user, and should do at least the following: post '/login' => sub { my ($success, $realm) = authenticate_user( params->{username}, params->{password} ); if ($success) { # change session ID if we have a new enough D2 version with support # (security best practice on privilege level change) app->change_session_id if app->can('change_session_id'); session logged_in_user => params->{username}; session logged_in_user_realm => $realm; # other code here } else { # authentication failed } }; any '/logout' => sub { app->destroy_session; }; If you want to use the default C and C routes you can configure them. See below. The default routes also contain functionality for a user to perform password resets. See the L documentation for more details. =head1 KEYWORDS The following keywords are provided in additional to the route decorators specified in L: =head2 logged_in_user Returns a hashref of details of the currently logged-in user or some kind of user object, if there is one. The details you get back will depend upon the authentication provider in use. =head2 get_user_details Returns a hashref of details of the specified user. The realm can optionally be specified as the second parameter. If the realm is not specified, each realm will be checked, and the first matching user will be returned. The details you get back will depend upon the authentication provider in use. =head2 user_has_role Check if a user has the role named. By default, the currently-logged-in user will be checked, so you need only name the role you're looking for: if (user_has_role('BeerDrinker')) { pour_beer(); } You can also provide the username to check; if (user_has_role($user, $role)) { .... } If C configuration option is set to a true value then using L will cause the application to croak at runtime. =head2 user_roles Returns a list of the roles of a user. By default, roles for the currently-logged-in user will be checked; alternatively, you may supply a username to check. Returns a list or arrayref depending on context. If C configuration option is set to a true value then using L will cause the application to croak at runtime. =head2 authenticate_user Usually you'll want to let the built-in login handling code deal with authenticating users, but in case you need to do it yourself, this keyword accepts a username and password, and optionally a specific realm, and checks whether the username and password are valid. For example: if (authenticate_user($username, $password)) { ... } If you are using multiple authentication realms, by default each realm will be consulted in turn. If you only wish to check one of them (for instance, you're authenticating an admin user, and there's only one realm which applies to them), you can supply the realm as an optional third parameter. In boolean context, returns simply true or false; in list context, returns C<($success, $realm)>. =head2 logged_in_user_lastlogin Returns (as a DateTime object) the time of the last successful login of the current logged in user. To enable this functionality, set the configuration key C to a true value. The backend provider must support write access for a user and have lastlogin functionality implemented. =head2 update_user Updates a user's details. If the authentication provider supports it, this keyword allows a user's details to be updated within the backend data store. In order to update the user's details, the keyword should be called with the username to be updated, followed by a hash of the values to be updated. Note that whilst the password can be updated using this method, any new value will be stored directly into the provider as-is, not encrypted. It is recommended to use L instead. If only one realm is configured then this will be used to search for the user. Otherwise, the realm must be specified with the realm key. # Update user, only one realm configured update_user "jsmith", surname => "Smith" # Update a user's username, more than one realm update_user "jsmith", realm => "dbic", username => "jjones" The updated user's details are returned, as per L. =head2 update_current_user The same as L, but does not take a username as the first parameter, instead updating the currently logged-in user. # Update user, only one realm configured update_current_user surname => "Smith" The updated user's details are returned, as per L. =head2 create_user Creates a new user, if the authentication provider supports it. Optionally sends a welcome message with a password reset request, in which case an email key must be provided. This function works in the same manner as L, except that the username key is mandatory. As with L, it is recommended not to set a password directly using this method, otherwise it will be stored in plain text. The realm to use must be specified with the key C if there is more than one realm configured. # Create new user create_user username => "jsmith", realm => "dbic", surname => "Smith" # Create new user and send welcome email create_user username => "jsmith", email => "john@you.com", email_welcome => 1 On success, the created user's details are returned, as per L. The text sent in the welcome email can be customised in 2 ways, in the same way as L: =over =item welcome_send This can be used to specify a subroutine that will be called to perform the entire message construction and email sending. Note that it must be a fully-qualified sub such as C. The subroutine will be passed the dsl as the first parameter, followed by a hash with the keys C, C and C, which contain the generated reset code, user email address, and user hashref respectively. For example: sub reset_send_handler { my ($dsl, %params) = @_; my $user_email = $params{email}; my $reset_code = $params{code}; # Send email return $result; } =item welcome_text This can be used to generate the text for the welcome email, with this module sending the actual email itself. It must be a fully-qualified sub, as per the previous option. It will be passed the same parameters as L, and should return a hash with the same keys as L. =back =head2 password_reset_send L sends a user an email with a password reset link. Along with L, it allows a user to reset their password. The function must be called with the key C and a value that is the username. The username specified will be sent an email with a link to reset their password. Note that the provider being used must return the email address in the key C, which in the case of a database will normally require that column to exist in the user's table. The provider must be able to write values to the user in order for this function to store the generated code. If the username is not found, a value of 0 is returned. If the username is found and the email is sent successfully, 1 is returned. Otherwise undef is returned. Note: if you are displaying a success message, and you do not want people to be able to check the existance of a user on your system, then you should check for the return value being defined, not true. For example: say "Success" if defined password_reset_send username => username; Note that this still leaves the possibility of checking the existance of a user if the email send mechanism is failing. The realm can also be specified using the key realm: password_reset_send username => 'jsmith', realm => 'dbic' Default text for the email is automatically produced and emailed. This can be customized with one of 2 config parameters: =over =item password_reset_send_email This can be used to specify a subroutine that will be called to perform the entire message construction and email sending. Note that it must be a fully-qualified sub such as C. The subroutine will be passed the dsl as the first parameter, followed by a hash with the keys C and C, which contain the generated reset code and user email address respectively. For example: sub reset_send_handler { my ($dsl, %params) = @_; my $user_email = $params{email}; my $reset_code = $params{code}; # Send email return $result; } =item password_reset_text This can be used to generate the text for the email, with this module sending the actual email itself. It must be a fully-qualified sub, as per the previous option. It will be passed the same parameters as L, and should return a hash with the following keys: =over =item subject The subject of the email message. =item from The sender of the email message (optional, can also be specified using C. =item plain Plain text for the email. Either this, or html, or both should be returned. =item html HTML text for the email (optional, as per plain). =back Here is an example subroutine: sub reset_text_handler { my ($dsl, %params) = @_; return ( from => '"My name" 'the subject', plain => "reset here: $params{code}", ); } # Example configuration Auth::Extensible: mailer: module: Mail::Message # Module to send email with options: # Module options via: sendmail mail_from: '"My app" ' password_reset_text: MyApp::reset_send =back =head2 user_password This provides various functions to check or reset a user's password, either from a reset code that was previously send by L or directly by specifying a username and password. Functions that update a password rely on a provider that has write access to a user's details. By default, the user to update is the currently logged-in user. A specific user can be specified with the key C for a certain username, or C for a previously sent reset code. Using these parameters on their own will return the username if it is a valid request. If the above parameters are specified with the additional parameter C, then the password will be set to that value, assuming that it is a valid request. The realm can be optionally specified with the keyword C. Examples: Check the logged-in user's password: user_password password => 'mysecret' Check a specific user's password: user_password username => 'jsmith', password => 'bigsecret' Check a previously sent reset code: user_password code => 'XXXX' Reset a password with a previously sent code: user_password code => 'XXXX', new_password => 'newsecret' Change a user's password (username optional) user_password username => 'jbloggs', password => 'old', new_password => 'secret' Force set a specific user's password, without checking existing password: user_password username => 'jbloggs', new_password => 'secret' =head2 logged_in_user_password_expired Returns true if the password of the currently logged in user has expired. To use this functionality, the provider must support the C function, and must be configured accordingly. See the relevant provider for full configuration details. Note that this functionality does B prevent the user accessing any protected pages, even if the password has expired. This is so that the developer can still leave some protected routes available, such as a page to change the password. Therefore, if using this functionality, it is suggested that a check is done in the C hook: hook before => sub { if (logged_in_user_password_expired) { # Redirect to user details page if password expired, but only if that # is not the currently request page to prevent redirect loops redirect '/password_update' unless request->uri eq '/password_update'; } } =head2 PASSWORD RESETS A variety of functionality is provided to make it easier to manage requests from users to reset their passwords. The keywords L and L form the core of this functionality - see the documentation of these keywords for full details. This functionality can only be used with a provider that supports write access. When utilising this functionality, it is wise to only allow passwords to be reset with a POST request. This is because some email scanners "open" links before delivering the email to the end user. With only a single-use GET request, this will result in the link being "used" by the time it reaches the end user, thus rendering it invalid. Password reset functionality is also built-in to the default route handlers. To enable this, set the configuration value C to a true value (having already configured the mail handler, as per the keyword documentation above). Once this is done, the default login page will contain additional form controls to allow the user to enter their username and request a reset password link. By default, the default handlers will generate a random 8 character password using L. To use your own function, set C in your configuration. See the L for an example. If using C to replace the default login page, you can still use the default password reset handlers. Add 2 controls to your form for submitting a password reset request: a text input called username_reset for the username, and submit_reset to submit the request. Your login_page_handler is then passed the following additional params: =over =item new_password Contains the new automatically-generated password, once the password reset has been performed successfully. =item reset_sent Is true when a password reset has been emailed to the user. =item password_code_valid Is true when a valid password reset code has been submitted with a GET request. In this case, the user should be given the chance to confirm with a POST request, with a form control called C. For a full example, see the default handler in this module's code. =back =head2 SAMPLE CONFIGURATION In your application's configuation file: session: simple plugins: Auth::Extensible: # Set to 1 if you want to disable the use of roles (0 is default) # If roles are disabled then any use of role-based route decorators # will cause app to croak on load. Use of 'user_roles' and # 'user_has_role' will croak at runtime. disable_roles: 0 # Set to 1 to use the no-redirect login functionality login_without_redirect: 0 # Set the view name for a custom login page, defaults to 'login' login_template: login # After /login: If no return_url is given: land here ('/' is default) user_home_page: '/user' # After /logout: If no return_url is given: land here (no default) exit_page: '/' # Mailer options for reset password and welcome emails mailer: module: Mail::Message # Email module to use options: # Options for module via: sendmail # Options passed to $msg->send mail_from: '"App name" ' # From email address # Set to true to enable password reset code in the default handlers reset_password_handler: 1 password_generator: My::App::random_pw # Optional random password generator # Set to a true value to enable recording of successful last login times record_lastlogin: 1 # Password reset functionality password_reset_send_email: My::App::reset_send # Customise sending sub password_reset_text: My::App::reset_text # Customise reset text # create_user options welcome_send: My::App::welcome_send # Customise welcome email sub welcome_text: My::App::welcome_text # Customise welcome email text # List each authentication realm, with the provider to use and the # provider-specific settings (see the documentation for the provider # you wish to use) realms: realm_one: priority: 3 # Defaults to 0. Realms are checked in descending order provider: Database db_connection_name: 'foo' realm_two: priority: 0 # Will be checked after realm_one provider: Config B that you B have a session provider configured. The authentication framework requires sessions in order to track information about the currently logged in user. Please see L for information on how to configure session management within your application. =head1 METHODS =head2 auth_provider($dsl, $realm) Given a realm, returns a configured and ready to use instance of the provider specified by that realm's config. =head1 HOOKS This plugin provides the following hooks: =head2 before_authenticate_user Called at the start of L. Receives a hash reference of C, C and C. =head2 after_authenticate_user Called at the end of L. Receives a hash reference of C, C, C, C and C. C is the realm that the user authenticated against of undef if auth failed. The value of C is an array reference of any errors thrown by authentication providers (if any). The value of C is either C<1> or C<0> to show whether or not authentication was successful. =head2 before_create_user Called at the start of L. Receives a hash reference of the arguments passed to L. =head2 after_create_user Called at the end of L. Receives the requested username, the created user (or undef) and an array reference of any errors from the main method or from the provider. =head2 login_required =head2 permission_denied =head2 after_reset_code_success Called after successful reset code has been provided. Supports a custom 'Change password' page or other app-based intervention after a successful reset code has been applied. =head2 after_login_success Called after successful login just before redirect is called. =head2 before_logout Called just before the session gets destroyed on logout. =head1 AUTHOR David Precious, C<< >> Dancer2 port of Dancer::Plugin::Auth::Extensible by: Stefan Hornburg (Racke), C<< >> Conversion to Dancer2's new plugin system plus much cleanup & reorg: Peter Mottram (SysPete), C<< >> =head1 BUGS / FEATURE REQUESTS This is an early version; there may still be bugs present or features missing. This is developed on GitHub - please feel free to raise issues or pull requests against the repo at: L =head1 ACKNOWLEDGEMENTS Valuable feedback on the early design of this module came from many people, including Matt S Trout (mst), David Golden (xdg), Damien Krotkine (dams), Daniel Perrett, and others. Configurable login/logout URLs added by Rene (hertell) Regex support for require_role by chenryn Support for user_roles looking in other realms by Colin Ewen (casao) LDAP provider added by Mark Meyer (ofosos) Documentation fix by Vince Willems. Henk van Oers (GH #8, #13, #55). Andrew Beverly (GH #6, #7, #10, #17, #22, #24, #25, #26, #54). This includes support for creating and editing users and manage user passwords. Gabor Szabo (GH #11, #16, #18). Evan Brown (GH #20, #32). Jason Lewis (Unix provider problem, GH#62). Matt S. Trout (mst) for L. Ben Kaufman "whosgonna" (GH#79) Dominic Sonntag (GH#70) =head1 LICENSE AND COPYRIGHT Copyright 2012-16 David Precious. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. =cut 1; # End of Dancer2::Plugin::Auth::Extensible