X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Flogin.pl;h=82d50d7066b8a2dc9602a2c22a119e8ff4f961e5;hb=a0a30f41301f5f52c26febd9366182be858e54bb;hp=2d96b54002f087f35abb09bac84d9b9e7e8525f2;hpb=8c7e44938a661e035f62840e1e177353240ace5d;p=kivitendo-erp.git diff --git a/bin/mozilla/login.pl b/bin/mozilla/login.pl index 2d96b5400..82d50d706 100644 --- a/bin/mozilla/login.pl +++ b/bin/mozilla/login.pl @@ -33,25 +33,28 @@ use SL::User; use SL::Form; require "bin/mozilla/common.pl"; +require "bin/mozilla/todo.pl"; + +use strict; # This is required because the am.pl in the root directory # is not scanned by locales.pl: # $form->parse_html_template('login/password_error') -$form = new Form; +our $form = new Form; if (! -f 'config/authentication.pl') { show_error('login/authentication_pl_missing'); } -$locale = new Locale $language, "login"; +our $locale = new Locale $main::language, "login"; our $auth = SL::Auth->new(); if (!$auth->session_tables_present()) { show_error('login/auth_db_unreachable'); } $auth->expire_sessions(); -$auth->restore_session(); +my $session_result = $main::auth->restore_session(); # customization if (-f "bin/mozilla/custom_$form->{script}") { @@ -68,7 +71,19 @@ if (-f "bin/mozilla/$form->{login}_$form->{script}") { # window title bar, user info $form->{titlebar} = "Lx-Office " . $locale->text('Version') . " $form->{version}"; -if ($form->{action}) { +if (SL::Auth::SESSION_EXPIRED == $session_result) { + $form->{error_message} = $locale->text('The session is invalid or has expired.'); + login_screen(); + exit; +} + +my $action = $form->{action}; + +if (!$action && $auth->{SESSION}->{login}) { + $action = 'login'; +} + +if ($action) { our %myconfig = $auth->read_user($form->{login}) if ($form->{login}); if (!$myconfig{login} || (SL::Auth::OK != $auth->authenticate($form->{login}, $form->{password}, 0))) { @@ -81,7 +96,7 @@ if ($form->{action}) { $auth->create_or_refresh_session(); $form->{titlebar} .= " - $myconfig{name} - $myconfig{dbname}"; - call_sub($locale->findsub($form->{action})); + call_sub($locale->findsub($action)); } else { login_screen(); @@ -90,33 +105,33 @@ if ($form->{action}) { 1; sub login_screen { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); my ($msg) = @_; if (-f "css/lx-office-erp.css") { $form->{stylesheet} = "lx-office-erp.css"; } - $form->{msg} = $msg; - $form->{fokus} = "loginscreen.login"; - $form->header; + $form->{msg} = $msg; + $form->header(); print $form->parse_html_template('login/login_screen'); - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } sub login { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); unless ($form->{login}) { login_screen($locale->text('You did not enter a name!')); exit; } - $user = new User $form->{login}; + my $user = new User $form->{login}; # if we get an error back, bale out + my $result; if (($result = $user->login($form)) <= -1) { exit if $result == -2; login_screen($locale->text('Incorrect username or password!')); @@ -125,37 +140,41 @@ sub login { my %style_to_script_map = ( 'v3' => 'v3', 'neu' => 'new', + 'v4' => 'v4', 'xml' => 'XML', ); my $menu_script = $style_to_script_map{$user->{menustyle}} || ''; # made it this far, execute the menu - $form->{callback} = build_std_url("script=menu${menu_script}.pl", 'action=display'); + $form->{callback} = build_std_url("script=menu${menu_script}.pl", 'action=display', "callback=" . $form->escape($form->{callback})); - $auth->set_cookie_environment_variable(); + $main::auth->set_cookie_environment_variable(); $form->redirect(); - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } sub logout { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); - $auth->destroy_session(); + $main::auth->destroy_session(); # remove the callback to display the message $form->{callback} = "login.pl?action="; $form->redirect($locale->text('You are logged out!')); - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } sub company_logo { - $lxdebug->enter_sub(); + $main::lxdebug->enter_sub(); - $locale = new Locale $myconfig{countrycode}, "login" if ($language ne $myconfig{countrycode}); + my %myconfig = %main::myconfig; + $locale = new Locale $myconfig{countrycode}, "login" if ($main::language ne $myconfig{countrycode}); + + $form->{todo_list} = create_todo_list('login_screen' => 1) if (!$form->{no_todo_list}); $form->{stylesheet} = $myconfig{stylesheet}; $form->{title} = $locale->text('About'); @@ -165,13 +184,14 @@ sub company_logo { print $form->parse_html_template('login/company_logo'); - $lxdebug->leave_sub(); + $main::lxdebug->leave_sub(); } sub show_error { my $template = shift; - $locale = Locale->new($language, 'all'); - $myconfig{countrycode} = $language; + my %myconfig = %main::myconfig; + $locale = Locale->new($main::language, 'all'); + $myconfig{countrycode} = $main::language; $form->{stylesheet} = 'css/lx-office-erp.css'; $form->header(); @@ -182,3 +202,4 @@ sub show_error { exit; } +