1 package SL::Dispatcher;
 
   6   unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML).
 
   7   push    @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version.
 
  10 use CGI qw( -no_xhtml);
 
  14 use English qw(-no_match_vars);
 
  16 use List::MoreUtils qw(all);
 
  17 use List::Util qw(first);
 
  25 use SL::Helper::DateTime;
 
  26 use SL::InstanceConfiguration;
 
  27 use SL::Template::Plugin::HTMLFixes;
 
  29 # Trailing new line is added so that Perl will not add the line
 
  30 # number 'die' was called in.
 
  31 use constant END_OF_REQUEST => "END-OF-REQUEST\n";
 
  36   my ($class, $interface) = @_;
 
  38   my $self           = bless {}, $class;
 
  39   $self->{interface} = lc($interface || 'cgi');
 
  46   return $self->{interface} eq 'cgi' ? 'CGI' : 'FastCGI';
 
  49 sub pre_request_checks {
 
  50   _check_for_old_config_files();
 
  52   if (!$::auth->session_tables_present) {
 
  53     if ($::form->{script} eq 'admin.pl') {
 
  57       show_error('login/auth_db_unreachable');
 
  63   $::lxdebug->enter_sub;
 
  65   my $error_type           = shift || '';
 
  67   $::locale                = Locale->new($::lx_office_conf{system}->{language});
 
  68   $::form->{error}         = $::locale->text('The session is invalid or has expired.') if ($error_type eq 'session');
 
  69   $::form->{error}         = $::locale->text('Incorrect password!.')                   if ($error_type eq 'password');
 
  70   $::myconfig{countrycode} = $::lx_office_conf{system}->{language};
 
  71   $::form->{stylesheet}    = 'css/lx-office-erp.css';
 
  74   print $::form->parse_html_template($template);
 
  75   $::lxdebug->leave_sub;
 
  80 sub pre_startup_setup {
 
  83   SL::LxOfficeConf->read;
 
  87     require "bin/mozilla/common.pl";
 
  88     require "bin/mozilla/installationcheck.pl";
 
  91   # canonial globals. if it's not here, chances are it will get refactored someday.
 
  94     $::lxdebug     = LXDebug->new;
 
  95     $::auth        = SL::Auth->new;
 
 101   $SIG{__WARN__} = sub {
 
 102     $::lxdebug->warn(@_);
 
 105   $self->_cache_file_modification_times;
 
 108 sub pre_startup_checks {
 
 109   ::verify_installation();
 
 114   $self->pre_startup_setup;
 
 115   $self->pre_startup_checks;
 
 118 sub require_main_code {
 
 119   $::lxdebug->enter_sub;
 
 120   my ($script, $suffix) = @_;
 
 124     require "bin/mozilla/$script$suffix";
 
 125   } or die $EVAL_ERROR;
 
 127   if (-f "bin/mozilla/custom_$script$suffix") {
 
 130       require "bin/mozilla/custom_$script$suffix";
 
 132     $::form->error($EVAL_ERROR) if ($EVAL_ERROR);
 
 134   if ($::form->{login} && -f "bin/mozilla/$::form->{login}_$script") {
 
 137       require "bin/mozilla/$::form->{login}_$script";
 
 139     $::form->error($EVAL_ERROR) if ($EVAL_ERROR);
 
 141   $::lxdebug->leave_sub;
 
 144 sub _require_controller {
 
 145   my $controller =  shift;
 
 146   $controller    =~ s|[^A-Za-z0-9_]||g;
 
 150     require "SL/Controller/${controller}.pm";
 
 151   } or die $EVAL_ERROR;
 
 154 sub _run_controller {
 
 155   "SL::Controller::$_[0]"->new->_run_action($_[1]);
 
 160   $self->{request} = shift;
 
 162   $::lxdebug->enter_sub;
 
 163   $::lxdebug->begin_request;
 
 165   my ($script, $path, $suffix, $script_name, $action, $routing_type);
 
 167   $script_name = $ENV{SCRIPT_NAME};
 
 169   $self->unrequire_bin_mozilla;
 
 171   $::locale        = Locale->new($::lx_office_conf{system}->{language});
 
 173   $::instance_conf = SL::InstanceConfiguration->new;
 
 174   $::request       = { cgi => CGI->new({}) };
 
 176   my $session_result = $::auth->restore_session;
 
 177   $::auth->create_or_refresh_session;
 
 179   $::form->read_cgi_input;
 
 181   eval { ($routing_type, $script_name, $action) = _route_request($script_name); 1; } or return;
 
 183   if ($routing_type eq 'old') {
 
 184     $::form->{action}  =  lc $::form->{action};
 
 185     $::form->{action}  =~ s/( |-|,|\#)/_/g;
 
 187    ($script, $path, $suffix) = fileparse($script_name, ".pl");
 
 188     require_main_code($script, $suffix);
 
 190     $::form->{script} = $script . $suffix;
 
 193     _require_controller($script_name);
 
 194     $::form->{script} = "controller.pl";
 
 198     pre_request_checks();
 
 200     $::form->error($::locale->text('System currently down for maintenance!')) if -e ($::lx_office_conf{paths}->{userspath} . "/nologin") && $script ne 'admin';
 
 202     if ($script eq 'login' or $script eq 'admin') {
 
 203       $::form->{titlebar} = "Lx-Office " . $::locale->text('Version') . " $::form->{version}";
 
 204       ::run($session_result);
 
 207       show_error('login/password_error', 'session') if SL::Auth::SESSION_EXPIRED == $session_result;
 
 208       %::myconfig = $::auth->read_user($::form->{login});
 
 210       show_error('login/password_error', 'password') unless $::myconfig{login};
 
 212       $::locale = Locale->new($::myconfig{countrycode});
 
 214       show_error('login/password_error', 'password') if SL::Auth::OK != $::auth->authenticate($::form->{login}, $::form->{password});
 
 216       $::auth->store_credentials_in_session(login => $::form->{login}, password => $::form->{password});
 
 217       $::auth->create_or_refresh_session;
 
 218       $::auth->delete_session_value('FLASH');
 
 219       delete $::form->{password};
 
 222         $::instance_conf->init;
 
 224         map { $::form->{$_} = $::myconfig{$_} } qw(stylesheet charset)
 
 225           unless $action eq 'save' && $::form->{type} eq 'preferences';
 
 227         $::form->set_standard_title;
 
 228         if ($routing_type eq 'old') {
 
 229           ::call_sub('::' . $::locale->findsub($action));
 
 231           _run_controller($script_name, $action);
 
 234         $::form->error($::locale->text('action= not defined!'));
 
 240     if ($EVAL_ERROR ne END_OF_REQUEST) {
 
 241       print STDERR $EVAL_ERROR;
 
 242       $::form->{label_error} = $::request->{cgi}->pre($EVAL_ERROR);
 
 243       eval { show_error('generic/error') };
 
 248   $::auth->save_session;
 
 249   $::auth->expire_sessions;
 
 256   Form::disconnect_standard_dbh;
 
 258   $::lxdebug->end_request;
 
 260   $self->_watch_for_changed_files;
 
 262   $::lxdebug->leave_sub;
 
 265 sub unrequire_bin_mozilla {
 
 267   return unless $self->_interface_is_fcgi;
 
 270     next unless m#^bin/mozilla/#;
 
 271     next if /\bcommon.pl$/;
 
 272     next if /\binstallationcheck.pl$/;
 
 277 sub _interface_is_fcgi {
 
 279   return $self->{interface} =~ m/^(?:fastcgi|fcgid|fcgi)$/;
 
 283   my $script_name = shift;
 
 285   return $script_name =~ m/dispatcher\.pl$/ ? ('old',        _route_dispatcher_request())
 
 286        : $script_name =~ m/controller\.pl/  ? ('controller', _route_controller_request())
 
 287        :                                      ('old',        $script_name, $::form->{action});
 
 290 sub _route_dispatcher_request {
 
 291   my $name_re = qr{[a-z]\w*};
 
 292   my ($script_name, $action);
 
 295     die "Unroutable request -- inavlid module name.\n" if !$::form->{M} || ($::form->{M} !~ m/^${name_re}$/);
 
 296     $script_name = $::form->{M} . '.pl';
 
 299       $action = $::form->{A};
 
 302       $action = first { m/^A_${name_re}$/ } keys %{ $::form };
 
 303       die "Unroutable request -- inavlid action name.\n" if !$action;
 
 305       delete $::form->{$action};
 
 306       $action = substr $action, 2;
 
 309     delete @{$::form}{qw(M A)};
 
 313     $::form->{label_error} = $::request->{cgi}->pre($EVAL_ERROR);
 
 314     show_error('generic/error');
 
 317   return ($script_name, $action);
 
 320 sub _route_controller_request {
 
 321   my ($controller, $action);
 
 324     $::form->{action}      =~ m|^ ( [A-Z] [A-Za-z0-9_]* ) / ( [a-z] [a-z0-9_]* ) $|x || die "Unroutable request -- inavlid controller/action.\n";
 
 325     ($controller, $action) =  ($1, $2);
 
 326     delete $::form->{action};
 
 330     $::form->{label_error} = $::request->{cgi}->pre($EVAL_ERROR);
 
 331     show_error('generic/error');
 
 334   return ($controller, $action);
 
 337 sub _cache_file_modification_times {
 
 340   return unless $self->_interface_is_fcgi && $::lx_office_conf{debug}->{restart_fcgi_process_on_changes};
 
 346     return unless $File::Find::name =~ m/\.(?:pm|f?pl|html|conf|conf\.default)$/;
 
 347     $fcgi_file_cache{ $File::Find::name } = (stat $File::Find::name)[9];
 
 350   my $cwd = POSIX::getcwd();
 
 351   File::Find::find($wanted, map { "${cwd}/${_}" } qw(config bin SL templates/webpages));
 
 352   map { my $name = "${cwd}/${_}"; $fcgi_file_cache{$name} = (stat $name)[9] } qw(admin.pl dispatcher.fpl);
 
 355 sub _watch_for_changed_files {
 
 358   return unless $self->_interface_is_fcgi && $::lx_office_conf{debug}->{restart_fcgi_process_on_changes};
 
 360   my $ok = all { (stat($_))[9] == $fcgi_file_cache{$_} } keys %fcgi_file_cache;
 
 362   $::lxdebug->message(LXDebug::DEBUG1(), "Program modifications detected. Restarting.");
 
 366 sub get_standard_filehandles {
 
 369   return $self->{interface} =~ m/f(?:ast)cgi/i ? $self->{request}->GetHandles() : (\*STDIN, \*STDOUT, \*STDERR);
 
 372 sub _check_for_old_config_files {
 
 373   my @old_files = grep { -f "config/${_}" } qw(authentication.pl console.conf lx-erp.conf lx-erp-local.conf);
 
 374   return unless @old_files;
 
 376   $::form->{title}      = $::locale->text('Old configuration files');
 
 377   $::form->{stylesheet} = 'lx-office-erp.css';
 
 379   print $::form->parse_html_template('login/old_configuration_files', { FILES => \@old_files });
 
 389   die SL::Dispatcher->END_OF_REQUEST;