X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/075bd42af8885aee3c18fe055a2c82b8b43f4cea..8b34d2951ae9a949476331eb5b8f6249df616b5b:/SL/Controller/LoginScreen.pm diff --git a/SL/Controller/LoginScreen.pm b/SL/Controller/LoginScreen.pm index 89f21ccfa..6c31a9055 100644 --- a/SL/Controller/LoginScreen.pm +++ b/SL/Controller/LoginScreen.pm @@ -4,10 +4,20 @@ use strict; use parent qw(SL::Controller::Base); +use List::Util qw(first); + use SL::Dispatcher::AuthHandler::User; +use SL::DB::AuthClient; +use SL::DB::AuthGroup; +use SL::DB::AuthUser; use SL::User; +use Rose::Object::MakeMethods::Generic ( + 'scalar --get_set_init' => [ qw(clients default_client_id) ], +); + __PACKAGE__->run_before('set_layout'); + # # actions # @@ -20,7 +30,7 @@ sub action_user_login { return if $self->_redirect_to_main_script_if_already_logged_in; # Otherwise show the login form. - $self->render('login_screen/user_login', { no_menu => 1 }, error => error_state($::form->{error})); + $self->render('login_screen/user_login', error => error_state($::form->{error})); } sub action_logout { @@ -28,14 +38,15 @@ sub action_logout { $::auth->destroy_session; $::auth->create_or_refresh_session; - $self->render('login_screen/user_login', { no_menu => 1 }, error => $::locale->text('You are logged out!')); + $self->render('login_screen/user_login', error => $::locale->text('You are logged out!')); } sub action_login { my ($self) = @_; - %::myconfig = $::form->{'{AUTH}login'} ? $::auth->read_user(login => $::form->{'{AUTH}login'}) : (); - %::myconfig = SL::Dispatcher::AuthHandler::User->new->handle(countrycode => $::myconfig{countrycode}); + my $login = $::form->{'{AUTH}login'} || $::auth->get_session_value('login'); + %::myconfig = $login ? $::auth->read_user(login => $login) : (); + SL::Dispatcher::AuthHandler::User->new->handle(countrycode => $::myconfig{countrycode}); $::form->{login} = $::myconfig{login}; $::locale = Locale->new($::myconfig{countrycode}) if $::myconfig{countrycode}; my $user = User->new(login => $::myconfig{login}); @@ -56,7 +67,7 @@ sub action_login { # Other login errors. if (0 > $result) { $::auth->punish_wrong_login; - return $self->render('login_screen/user_login', { no_menu => 1 }, error => $::locale->text('Incorrect username or password!')); + return $self->render('login_screen/user_login', error => $::locale->text('Incorrect username or password!')); } # Everything is fine. @@ -121,4 +132,14 @@ sub set_layout { $::request->{layout} = SL::Layout::Dispatcher->new(style => 'login'); } +sub init_clients { + return SL::DB::Manager::AuthClient->get_all_sorted; +} + +sub init_default_client_id { + my ($self) = @_; + my $default_client = first { $_->is_default } @{ $self->clients }; + return $default_client ? $default_client->id : undef; +} + 1;