3 ######################################################################
 
   4 # SQL-Ledger Accounting
 
   7 #  Author: Dieter Simader
 
   8 #   Email: dsimader@sql-ledger.org
 
   9 #     Web: http://www.sql-ledger.org
 
  13 # This program is free software; you can redistribute it and/or modify
 
  14 # it under the terms of the GNU General Public License as published by
 
  15 # the Free Software Foundation; either version 2 of the License, or
 
  16 # (at your option) any later version.
 
  18 # This program is distributed in the hope that it will be useful,
 
  19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  21 # GNU General Public License for more details.
 
  22 # You should have received a copy of the GNU General Public License
 
  23 # along with this program; if not, write to the Free Software
 
  24 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  25 #######################################################################
 
  27 # this script is the frontend called from bin/$terminal/$script
 
  28 # all the accounting modules are linked to this script which in
 
  29 # turn execute the same script in bin/$terminal/
 
  31 #######################################################################
 
  34   push(@INC, "modules");
 
  37 # setup defaults, DO NOT CHANGE
 
  39 $templates  = "templates";
 
  40 $memberfile = "users/members";
 
  41 $sendmail   = "| /usr/sbin/sendmail -t";
 
  42 ########## end ###########################################
 
  47 $lxdebug = LXDebug->new();
 
  53 eval { require "lx-erp.conf"; };
 
  55 require "bin/mozilla/common.pl";
 
  57 if (defined($latex) && !defined($latex_templates)) {
 
  58   $latex_templates = $latex;
 
  67 $pos = rindex $0, '/';
 
  68 $script = substr($0, $pos + 1);
 
  70 # we use $script for the language module
 
  71 $form->{script} = $script;
 
  73 # strip .pl for translation files
 
  79 # check for user config file, could be missing or ???
 
  80 eval { require("$userspath/$form->{login}.conf"); };
 
  82   $locale = new Locale "$language", "$script";
 
  84   $form->{callback} = "";
 
  85   $msg1             = $locale->text('You are logged out!');
 
  86   $msg2             = $locale->text('Login');
 
  87   $form->redirect("$msg1 <p><a href=login.pl target=_top>$msg2</a>");
 
  90 $myconfig{dbpasswd} = unpack 'u', $myconfig{dbpasswd};
 
  91 map { $form->{$_} = $myconfig{$_} } qw(stylesheet charset)
 
  92   unless (($form->{action} eq 'save') && ($form->{type} eq 'preferences'));
 
  95 $locale = new Locale "$myconfig{countrycode}", "$script";
 
  98 $form->error($locale->text('Incorrect Password!'))
 
  99   if ($form->{password} ne $myconfig{password});
 
 101 $form->{path} =~ s/\.\.\///g;
 
 102 if ($form->{path} !~ /^bin\//) {
 
 103   $form->error($locale->text('Invalid path!') . "\n");
 
 106 # did sysadmin lock us out
 
 107 if (-e "$userspath/nologin") {
 
 108   $form->error($locale->text('System currently down for maintenance!'));
 
 111 # pull in the main code
 
 112 require "$form->{path}/$form->{script}";
 
 115 if (-f "$form->{path}/custom_$form->{script}") {
 
 116   eval { require "$form->{path}/custom_$form->{script}"; };
 
 117   $form->error($@) if ($@);
 
 120 # customized scripts for login
 
 121 if (-f "$form->{path}/$form->{login}_$form->{script}") {
 
 122   eval { require "$form->{path}/$form->{login}_$form->{script}"; };
 
 123   $form->error($@) if ($@);
 
 126 if ($form->{action}) {
 
 128   # window title bar, user info
 
 131     . $locale->text('Version')
 
 132     . " $form->{version} - $myconfig{name} - $myconfig{dbname}";
 
 134   call_sub($locale->findsub($form->{action}));
 
 136   $form->error($locale->text('action= not defined!'));