summaryrefslogtreecommitdiff
path: root/old-handler.pl
blob: 886882ed8b4fcd482b75baf5c4b5d1c497ae9ecb (plain)
  1. #!/usr/bin/perl
  2. #
  3. ######################################################################
  4. # LedgerSMB Accounting and ERP
  5. # http://www.ledgersmb.org/
  6. #
  7. # Copyright (C) 2006
  8. # This work contains copyrighted information from a number of sources all used
  9. # with permission.
  10. #
  11. # This file contains source code included with or based on SQL-Ledger which
  12. # is Copyright Dieter Simader and DWS Systems Inc. 2000-2005 and licensed
  13. # under the GNU General Public License version 2 or, at your option, any later
  14. # version. For a full list including contact information of contributors,
  15. # maintainers, and copyright holders, see the CONTRIBUTORS file.
  16. #
  17. # Original Copyright Notice from SQL-Ledger 2.6.17 (before the fork):
  18. # Copyright (C) 2001
  19. #
  20. # Author: Dieter Simader
  21. # Email: dsimader@sql-ledger.org
  22. # Web: http://www.sql-ledger.org
  23. #
  24. # Contributors:
  25. #
  26. #
  27. #
  28. # This program is free software; you can redistribute it and/or modify
  29. # it under the terms of the GNU General Public License as published by
  30. # the Free Software Foundation; either version 2 of the License, or
  31. # (at your option) any later version.
  32. #
  33. # This program is distributed in the hope that it will be useful,
  34. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  35. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  36. # GNU General Public License for more details.
  37. # You should have received a copy of the GNU General Public License
  38. # along with this program; if not, write to the Free Software
  39. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  40. #######################################################################
  41. #
  42. # this script is the frontend called from bin/$terminal/$script
  43. # all the accounting modules are linked to this script which in
  44. # turn execute the same script in bin/$terminal/
  45. #
  46. #######################################################################
  47. use LedgerSMB::Sysconfig;
  48. use Digest::MD5;
  49. use Error qw(:try);
  50. $| = 1;
  51. use LedgerSMB::User;
  52. use LedgerSMB::Form;
  53. use LedgerSMB::Locale;
  54. use LedgerSMB::Auth;
  55. use Data::Dumper;
  56. require "common.pl";
  57. # for custom preprocessing logic
  58. eval { require "custom.pl"; };
  59. $form = new Form;
  60. # name of this script
  61. $0 =~ tr/\\/\//;
  62. $pos = rindex $0, '/';
  63. $script = substr( $0, $pos + 1 );
  64. $locale = LedgerSMB::Locale->get_handle( ${LedgerSMB::Sysconfig::language} )
  65. or $form->error( __FILE__ . ':' . __LINE__ . ": Locale not loaded: $!\n" );
  66. # we use $script for the language module
  67. $form->{script} = $script;
  68. # strip .pl for translation files
  69. $script =~ s/\.pl//;
  70. # pull in DBI
  71. use DBI qw(:sql_types);
  72. # send warnings to browser
  73. $SIG{__WARN__} = sub { $form->info( $_[0] ) };
  74. # send errors to browser
  75. #$SIG{__DIE__} =
  76. # sub { print STDERR __FILE__ . ':' . __LINE__ . ': ' . $_[0]; };
  77. ## did sysadmin lock us out
  78. #if (-f "${LedgerSMB::Sysconfig::userspath}/nologin") {
  79. # $locale = LedgerSMB::Locale->get_handle(${LedgerSMB::Sysconfig::language}) or
  80. # $form->error(__FILE__.':'.__LINE__.": Locale not loaded: $!\n");
  81. # $form->{charset} = 'UTF-8';
  82. # $locale->encoding('UTF-8');
  83. #
  84. # $form->{callback} = "";
  85. # $form->error(__FILE__.':'.__LINE__.': '.$locale->text('System currently down for maintenance!'));
  86. #}
  87. # grab user config. This is ugly and unecessary if/when
  88. # locale messages
  89. #$form->{charset} = $locale->encoding;
  90. $form->{charset} = 'UTF-8';
  91. $locale->encoding('UTF-8');
  92. if ($@) {
  93. $form->{callback} = "";
  94. $msg1 = $locale->text('You are logged out!');
  95. $msg2 = $locale->text('Login');
  96. $form->redirect(
  97. "$msg1 <p><a href=\"login.pl\" target=\"_top\">$msg2</a></p>");
  98. }
  99. $form->db_init( \%myconfig );
  100. &check_password;
  101. # we get rid of myconfig and use User as a real object
  102. %myconfig = %{ LedgerSMB::User->fetch_config( $form ) };
  103. map { $form->{$_} = $myconfig{$_} } qw(stylesheet timeout)
  104. unless ( $form->{type} eq 'preferences' );
  105. $locale = LedgerSMB::Locale->get_handle( $myconfig{countrycode} )
  106. or $form->error( __FILE__ . ':' . __LINE__ . ": Locale not loaded: $!\n" );
  107. # pull in the main code
  108. require "bin/$form->{script}";
  109. # customized scripts
  110. if ( -f "bin/custom/$form->{script}" ) {
  111. eval { require "bin/custom/$form->{script}"; };
  112. }
  113. # customized scripts for login
  114. if ( -f "bin/custom/$form->{login}_$form->{script}" ) {
  115. eval { require "bin/custom/$form->{login}_$form->{script}"; };
  116. }
  117. if ( $form->{action} ) {
  118. # window title bar, user info
  119. $form->{titlebar} =
  120. "LedgerSMB "
  121. . $locale->text('Version')
  122. . " $form->{version} - $myconfig{name} - $myconfig{dbname}";
  123. &{ $form->{action} };
  124. }
  125. else {
  126. $form->error( __FILE__ . ':' . __LINE__ . ': '
  127. . $locale->text('action= not defined!') );
  128. }
  129. 1;
  130. # end
  131. sub check_password {
  132. require "bin/pw.pl";
  133. if ( $ENV{GATEWAY_INTERFACE} ) {
  134. $ENV{HTTP_COOKIE} =~ s/;\s*/;/g;
  135. @cookies = split /;/, $ENV{HTTP_COOKIE};
  136. foreach (@cookies) {
  137. ( $name, $value ) = split /=/, $_, 2;
  138. $cookie{$name} = $value;
  139. }
  140. #check for valid session
  141. if ( !LedgerSMB::Auth::session_check( $cookie{${LedgerSMB::Sysconfig::cookie_name}}, $form ) ) {
  142. &getpassword(1);
  143. exit;
  144. }
  145. }
  146. else {
  147. exit;
  148. }
  149. }