X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Flogin.pl;h=82d50d7066b8a2dc9602a2c22a119e8ff4f961e5;hb=d03b28772dce973bf100e338e0d09112f06eb328;hp=7a4df5c696a46052f2c9b0a875b6325e27903b1e;hpb=713a6d703c0b2806f6a1f8fafa6bc9b6554c4087;p=kivitendo-erp.git diff --git a/bin/mozilla/login.pl b/bin/mozilla/login.pl index 7a4df5c69..82d50d706 100644 --- a/bin/mozilla/login.pl +++ b/bin/mozilla/login.pl @@ -35,24 +35,26 @@ 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}") { @@ -69,6 +71,12 @@ if (-f "bin/mozilla/$form->{login}_$form->{script}") { # window title bar, user info $form->{titlebar} = "Lx-Office " . $locale->text('Version') . " $form->{version}"; +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}) { @@ -97,33 +105,33 @@ if ($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!')); @@ -132,37 +140,39 @@ 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}); @@ -174,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();