kivitendo/SL/Dispatcher.pm @ 95ecb428
94899fc9 | Moritz Bunkus | package SL::Dispatcher;
|
||
use strict;
|
||||
0ea2ddad | Sven Schöling | BEGIN {
|
||
unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML).
|
||||
push @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version.
|
||||
push @INC, "SL"; # FCGI won't find modules that are not properly named. Help it by inclduging SL
|
||||
}
|
||||
94899fc9 | Moritz Bunkus | use CGI qw( -no_xhtml);
|
||
use English qw(-no_match_vars);
|
||||
use SL::Auth;
|
||||
use SL::LXDebug;
|
||||
use SL::Locale;
|
||||
use SL::Common;
|
||||
use Form;
|
||||
7a604472 | Moritz Bunkus | use List::Util qw(first);
|
||
94899fc9 | Moritz Bunkus | use File::Basename;
|
||
b2945bf6 | Sven Schöling | # Trailing new line is added so that Perl will not add the line
|
||
# number 'die' was called in.
|
||||
use constant END_OF_REQUEST => "END-OF-REQUEST\n";
|
||||
94899fc9 | Moritz Bunkus | sub pre_request_checks {
|
||
879abbad | Sven Schöling | if (!$::auth->session_tables_present) {
|
||
if ($::form->{script} eq 'admin.pl') {
|
||||
::run();
|
||||
::end_of_request();
|
||||
} else {
|
||||
show_error('login/auth_db_unreachable');
|
||||
}
|
||||
}
|
||||
94899fc9 | Moritz Bunkus | $::auth->expire_sessions;
|
||
}
|
||||
sub show_error {
|
||||
$::lxdebug->enter_sub;
|
||||
881cc205 | Moritz Bunkus | my $template = shift;
|
||
my $error_type = shift || '';
|
||||
c7edb248 | Sven Schöling | $::locale = Locale->new($::language);
|
||
881cc205 | Moritz Bunkus | $::form->{error} = $::locale->text('The session is invalid or has expired.') if ($error_type eq 'session');
|
||
$::form->{error} = $::locale->text('Incorrect password!.') if ($error_type eq 'password');
|
||||
94899fc9 | Moritz Bunkus | $::myconfig{countrycode} = $::language;
|
||
$::form->{stylesheet} = 'css/lx-office-erp.css';
|
||||
$::form->header;
|
||||
print $::form->parse_html_template($template);
|
||||
$::lxdebug->leave_sub;
|
||||
b2945bf6 | Sven Schöling | ::end_of_request();
|
||
94899fc9 | Moritz Bunkus | }
|
||
sub pre_startup_setup {
|
||||
eval {
|
||||
package main;
|
||||
require "config/lx-erp.conf";
|
||||
};
|
||||
eval {
|
||||
package main;
|
||||
require "config/lx-erp-local.conf";
|
||||
} if -f "config/lx-erp-local.conf";
|
||||
eval {
|
||||
package main;
|
||||
require "bin/mozilla/common.pl";
|
||||
require "bin/mozilla/installationcheck.pl";
|
||||
} or die $EVAL_ERROR;
|
||||
1c8bbb4e | Sven Schöling | # canonial globals. if it's not here, chances are it will get refactored someday.
|
||
94899fc9 | Moritz Bunkus | {
|
||
no warnings 'once';
|
||||
1c8bbb4e | Sven Schöling | $::userspath = "users";
|
||
$::templates = "templates";
|
||||
$::memberfile = "users/members";
|
||||
$::menufile = "menu.ini";
|
||||
$::sendmail = "| /usr/sbin/sendmail -t";
|
||||
$::lxdebug = LXDebug->new;
|
||||
$::auth = SL::Auth->new;
|
||||
$::form = undef;
|
||||
%::myconfig = ();
|
||||
%::called_subs = (); # currently used for recursion detection
|
||||
94899fc9 | Moritz Bunkus | }
|
||
847d924b | Sven Schöling | |||
$SIG{__WARN__} = sub {
|
||||
$::lxdebug->warn(@_);
|
||||
}
|
||||
94899fc9 | Moritz Bunkus | }
|
||
sub pre_startup_checks {
|
||||
::verify_installation();
|
||||
}
|
||||
sub pre_startup {
|
||||
pre_startup_setup();
|
||||
pre_startup_checks();
|
||||
}
|
||||
sub require_main_code {
|
||||
193b1e4e | Sven Schöling | $::lxdebug->enter_sub;
|
||
94899fc9 | Moritz Bunkus | my ($script, $suffix) = @_;
|
||
eval {
|
||||
package main;
|
||||
require "bin/mozilla/$script$suffix";
|
||||
} or die $EVAL_ERROR;
|
||||
if (-f "bin/mozilla/custom_$script$suffix") {
|
||||
eval {
|
||||
package main;
|
||||
require "bin/mozilla/custom_$script$suffix";
|
||||
};
|
||||
$::form->error($EVAL_ERROR) if ($EVAL_ERROR);
|
||||
}
|
||||
d4f9d559 | Moritz Bunkus | if ($::form->{login} && -f "bin/mozilla/$::form->{login}_$script") {
|
||
94899fc9 | Moritz Bunkus | eval {
|
||
package main;
|
||||
d4f9d559 | Moritz Bunkus | require "bin/mozilla/$::form->{login}_$script";
|
||
94899fc9 | Moritz Bunkus | };
|
||
$::form->error($EVAL_ERROR) if ($EVAL_ERROR);
|
||||
}
|
||||
193b1e4e | Sven Schöling | $::lxdebug->leave_sub;
|
||
94899fc9 | Moritz Bunkus | }
|
||
sub handle_request {
|
||||
$::lxdebug->enter_sub;
|
||||
$::lxdebug->begin_request;
|
||||
my $interface = lc(shift || 'cgi');
|
||||
7a604472 | Moritz Bunkus | my ($script_name, $action);
|
||
94899fc9 | Moritz Bunkus | |||
9ea6d163 | Sven Schöling | $script_name = $ENV{SCRIPT_NAME};
|
||
94899fc9 | Moritz Bunkus | |||
9ea6d163 | Sven Schöling | unrequire_bin_mozilla($interface);
|
||
94899fc9 | Moritz Bunkus | |||
aabb3a63 | Moritz Bunkus | $::cgi = CGI->new('');
|
||
$::locale = Locale->new($::language);
|
||||
$::form = Form->new;
|
||||
%::called_subs = ();
|
||||
7a604472 | Moritz Bunkus | |||
eval { ($script_name, $action) = _route_request($script_name); 1; } or return;
|
||||
94899fc9 | Moritz Bunkus | my ($script, $path, $suffix) = fileparse($script_name, ".pl");
|
||
require_main_code($script, $suffix);
|
||||
$::form->{script} = $script . $suffix;
|
||||
pre_request_checks();
|
||||
eval {
|
||||
fa438d50 | Moritz Bunkus | my $session_result = $::auth->restore_session;
|
||
$::auth->create_or_refresh_session;
|
||||
cb114b28 | Moritz Bunkus | $::form->error($::locale->text('System currently down for maintenance!')) if -e "$::userspath/nologin" && $script ne 'admin';
|
||
94899fc9 | Moritz Bunkus | if ($script eq 'login' or $script eq 'admin' or $script eq 'kopf') {
|
||
$::form->{titlebar} = "Lx-Office " . $::locale->text('Version') . " $::form->{version}";
|
||||
fa438d50 | Moritz Bunkus | ::run($session_result);
|
||
94899fc9 | Moritz Bunkus | |||
aa2bdd23 | Moritz Bunkus | } else {
|
||
94899fc9 | Moritz Bunkus | show_error('login/password_error', 'session') if SL::Auth::SESSION_EXPIRED == $session_result;
|
||
%::myconfig = $::auth->read_user($::form->{login});
|
||||
show_error('login/password_error', 'password') unless $::myconfig{login};
|
||||
c7edb248 | Sven Schöling | $::locale = Locale->new($::myconfig{countrycode});
|
||
94899fc9 | Moritz Bunkus | |||
show_error('login/password_error', 'password') if SL::Auth::OK != $::auth->authenticate($::form->{login}, $::form->{password}, 0);
|
||||
$::auth->set_session_value('login', $::form->{login}, 'password', $::form->{password});
|
||||
$::auth->create_or_refresh_session;
|
||||
4065042c | Moritz Bunkus | $::auth->delete_session_value('FLASH')->save_session();
|
||
94899fc9 | Moritz Bunkus | delete $::form->{password};
|
||
aa2bdd23 | Moritz Bunkus | if ($action) {
|
||
map { $::form->{$_} = $::myconfig{$_} } qw(stylesheet charset)
|
||||
unless $action eq 'save' && $::form->{type} eq 'preferences';
|
||||
94899fc9 | Moritz Bunkus | |||
aa2bdd23 | Moritz Bunkus | $::form->set_standard_title;
|
||
::call_sub('::' . $::locale->findsub($action));
|
||||
} else {
|
||||
$::form->error($::locale->text('action= not defined!'));
|
||||
}
|
||||
94899fc9 | Moritz Bunkus | }
|
||
1;
|
||||
} or do {
|
||||
b2945bf6 | Sven Schöling | if ($EVAL_ERROR ne END_OF_REQUEST) {
|
||
$::form->{label_error} = $::cgi->pre($EVAL_ERROR);
|
||||
eval { show_error('generic/error') };
|
||||
}
|
||||
94899fc9 | Moritz Bunkus | };
|
||
# cleanup
|
||||
$::locale = undef;
|
||||
$::form = undef;
|
||||
$::myconfig = ();
|
||||
7bd555b6 | Moritz Bunkus | Form::disconnect_standard_dbh();
|
||
94899fc9 | Moritz Bunkus | |||
$::lxdebug->end_request;
|
||||
$::lxdebug->leave_sub;
|
||||
}
|
||||
sub unrequire_bin_mozilla {
|
||||
9ea6d163 | Sven Schöling | return unless $_[0] =~ m/^(?:fastcgi|fcgid|fcgi)$/;
|
||
94899fc9 | Moritz Bunkus | for (keys %INC) {
|
||
next unless m#^bin/mozilla/#;
|
||||
next if /\bcommon.pl$/;
|
||||
next if /\binstallationcheck.pl$/;
|
||||
delete $INC{$_};
|
||||
}
|
||||
}
|
||||
7a604472 | Moritz Bunkus | sub _route_request {
|
||
my $script_name = shift;
|
||||
return $script_name =~ m/dispatcher\.pl$/ ? _route_dispatcher_request() : ($script_name, $::form->{action});
|
||||
}
|
||||
sub _route_dispatcher_request {
|
||||
d8b7e4d0 | Moritz Bunkus | my $name_re = qr{[a-z]\w*};
|
||
7a604472 | Moritz Bunkus | my ($script_name, $action);
|
||
eval {
|
||||
d8b7e4d0 | Moritz Bunkus | die "Unroutable request -- inavlid module name.\n" if !$::form->{M} || ($::form->{M} !~ m/^${name_re}$/);
|
||
7a604472 | Moritz Bunkus | $script_name = $::form->{M} . '.pl';
|
||
if ($::form->{A}) {
|
||||
$action = $::form->{A};
|
||||
} else {
|
||||
d8b7e4d0 | Moritz Bunkus | $action = first { m/^A_${name_re}$/ } keys %{ $::form };
|
||
7a604472 | Moritz Bunkus | die "Unroutable request -- inavlid action name.\n" if !$action;
|
||
delete $::form->{$action};
|
||||
$action = substr $action, 2;
|
||||
}
|
||||
delete @{$::form}{qw(M A)};
|
||||
1;
|
||||
} or do {
|
||||
$::form->{label_error} = $::cgi->pre($EVAL_ERROR);
|
||||
show_error('generic/error');
|
||||
};
|
||||
return ($script_name, $action);
|
||||
}
|
||||
b2945bf6 | Sven Schöling | package main;
|
||
use strict;
|
||||
sub end_of_request {
|
||||
die SL::Dispatcher->END_OF_REQUEST;
|
||||
}
|
||||
94899fc9 | Moritz Bunkus | 1;
|