}
use CGI qw( -no_xhtml);
+use Config::Std;
+use DateTime;
+use Encode;
use English qw(-no_match_vars);
use SL::Auth;
use SL::LXDebug;
use SL::Locale;
use SL::Common;
+use SL::Helper::DateTime;
use Form;
use List::Util qw(first);
use File::Basename;
# number 'die' was called in.
use constant END_OF_REQUEST => "END-OF-REQUEST\n";
+sub new {
+ my ($class, $interface) = @_;
+
+ my $self = bless {}, $class;
+ $self->{interface} = lc($interface || 'cgi');
+
+ return $self;
+}
+
sub pre_request_checks {
if (!$::auth->session_tables_present) {
if ($::form->{script} eq 'admin.pl') {
require "config/lx-erp-local.conf";
} if -f "config/lx-erp-local.conf";
+ read_config 'config/lx_office.conf' => %::lx_office_conf;
+ _decode_recursively(\%::lx_office_conf);
+
eval {
package main;
require "bin/mozilla/common.pl";
# canonial globals. if it's not here, chances are it will get refactored someday.
{
no warnings 'once';
- $::userspath = "users";
- $::templates = "templates";
- $::memberfile = "users/members";
$::menufile = "menu.ini";
$::sendmail = "| /usr/sbin/sendmail -t";
$::lxdebug = LXDebug->new;
}
sub handle_request {
+ my $self = shift;
+ $self->{request} = shift;
+
$::lxdebug->enter_sub;
$::lxdebug->begin_request;
- my $interface = lc(shift || 'cgi');
my ($script, $path, $suffix, $script_name, $action, $routing_type);
$script_name = $ENV{SCRIPT_NAME};
- unrequire_bin_mozilla($interface);
+ $self->unrequire_bin_mozilla;
$::cgi = CGI->new('');
$::locale = Locale->new($::language);
my $session_result = $::auth->restore_session;
$::auth->create_or_refresh_session;
- $::form->error($::locale->text('System currently down for maintenance!')) if -e "$::userspath/nologin" && $script ne 'admin';
+ $::form->error($::locale->text('System currently down for maintenance!')) if -e ($::lx_office_conf{paths}->{userspath} . "/nologin") && $script ne 'admin';
if ($script eq 'login' or $script eq 'admin' or $script eq 'kopf') {
$::form->{titlebar} = "Lx-Office " . $::locale->text('Version') . " $::form->{version}";
$::locale = undef;
$::form = undef;
$::myconfig = ();
- Form::disconnect_standard_dbh();
+ Form::disconnect_standard_dbh unless $self->_interface_is_fcgi;
$::lxdebug->end_request;
$::lxdebug->leave_sub;
}
sub unrequire_bin_mozilla {
- return unless $_[0] =~ m/^(?:fastcgi|fcgid|fcgi)$/;
+ my $self = shift;
+ return unless $self->_interface_is_fcgi;
for (keys %INC) {
next unless m#^bin/mozilla/#;
}
}
+sub _interface_is_fcgi {
+ my $self = shift;
+ return $self->{interface} =~ m/^(?:fastcgi|fcgid|fcgi)$/;
+}
+
sub _route_request {
my $script_name = shift;
return ($controller, $action);
}
+sub get_standard_filehandles {
+ my $self = shift;
+
+ return $self->{interface} =~ m/f(?:ast)cgi/i ? $self->{request}->GetHandles() : (\*STDIN, \*STDOUT, \*STDERR);
+}
+
+sub _decode_recursively {
+ my ($obj) = @_;
+
+ while (my ($key, $value) = each %{ $obj }) {
+ if (ref($value) eq 'HASH') {
+ _decode_recursively($value);
+ } else {
+ $obj->{$key} = decode('UTF-8', $value);
+ }
+ }
+}
+
package main;
use strict;