Wenn eine Datei namens lx-erp-local.conf exisitert, dann die direkt nach der lx-erp...
[kivitendo-erp.git] / am.pl
1 #!/usr/bin/perl
2 #
3 ######################################################################
4 # SQL-Ledger Accounting
5 # Copyright (C) 2001
6 #
7 #  Author: Dieter Simader
8 #   Email: dsimader@sql-ledger.org
9 #     Web: http://www.sql-ledger.org
10 #
11 #  Contributors:
12 #
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.
17 #
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 #######################################################################
26 #
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/
30 #
31 #######################################################################
32
33 BEGIN {
34   push(@INC, "modules");
35 }
36
37 # setup defaults, DO NOT CHANGE
38 $userspath  = "users";
39 $templates  = "templates";
40 $memberfile = "users/members";
41 $sendmail   = "| /usr/sbin/sendmail -t";
42 ########## end ###########################################
43
44 $| = 1;
45
46 use SL::LXDebug;
47 $lxdebug = LXDebug->new();
48
49 use CGI;
50 use SL::Form;
51 use SL::Locale;
52
53 eval { require "lx-erp.conf"; };
54 eval { require "lx-erp-local.conf"; } if -f "lx-erp-local.conf";
55
56 require "bin/mozilla/common.pl";
57
58 if (defined($latex) && !defined($latex_templates)) {
59   $latex_templates = $latex;
60   undef($latex);
61 }
62
63 $form = new Form;
64 $cgi = new CGI('');
65
66 # name of this script
67 $0 =~ tr/\\/\//;
68 $pos = rindex $0, '/';
69 $script = substr($0, $pos + 1);
70
71 # we use $script for the language module
72 $form->{script} = $script;
73
74 # strip .pl for translation files
75 $script =~ s/\.pl//;
76
77 # pull in DBI
78 use DBI;
79
80 # check for user config file, could be missing or ???
81 eval { require("$userspath/$form->{login}.conf"); };
82 if ($@) {
83   $locale = new Locale "$language", "$script";
84
85   $form->{callback} = "";
86   $msg1             = $locale->text('You are logged out!');
87   $msg2             = $locale->text('Login');
88   $form->redirect("$msg1 <p><a href=login.pl target=_top>$msg2</a>");
89 }
90
91 $myconfig{dbpasswd} = unpack 'u', $myconfig{dbpasswd};
92 map { $form->{$_} = $myconfig{$_} } qw(stylesheet charset)
93   unless (($form->{action} eq 'save') && ($form->{type} eq 'preferences'));
94
95 # locale messages
96 $locale = new Locale "$myconfig{countrycode}", "$script";
97
98 # check password
99 $form->error($locale->text('Incorrect Password!'))
100   if ($form->{password} ne $myconfig{password});
101
102 # did sysadmin lock us out
103 if (-e "$userspath/nologin") {
104   $form->error($locale->text('System currently down for maintenance!'));
105 }
106
107 # pull in the main code
108 require "bin/mozilla/$form->{script}";
109
110 # customized scripts
111 if (-f "bin/mozilla/custom_$form->{script}") {
112   eval { require "bin/mozilla/custom_$form->{script}"; };
113   $form->error($@) if ($@);
114 }
115
116 # customized scripts for login
117 if (-f "bin/mozilla/$form->{login}_$form->{script}") {
118   eval { require "bin/mozilla/$form->{login}_$form->{script}"; };
119   $form->error($@) if ($@);
120 }
121
122 if ($form->{action}) {
123
124   # window title bar, user info
125   $form->{titlebar} =
126       "Lx-Office "
127     . $locale->text('Version')
128     . " $form->{version} - $myconfig{name} - $myconfig{dbname}";
129
130   call_sub($locale->findsub($form->{action}));
131 } else {
132   $form->error($locale->text('action= not defined!'));
133 }
134
135 # end
136