4 use List::MoreUtils qw(any);
 
  12   use lib "$FindBin::Bin/..";
 
  14   use SL::System::Process;
 
  15   $exe_dir = SL::System::Process::exe_dir;
 
  17   unshift @INC, "${exe_dir}/modules/override"; # Use our own versions of various modules (e.g. YAML).
 
  18   push    @INC, "${exe_dir}/modules/fallback"; # Only use our own versions of modules if there's no system version.
 
  19   unshift @INC, $exe_dir;
 
  21   chdir($exe_dir) || die "Cannot change directory to ${exe_dir}\n";
 
  24 use CGI qw( -no_xhtml);
 
  30 use English qw(-no_match_vars);
 
  32 use List::Util qw(first);
 
  33 use POSIX qw(setuid setgid);
 
  35 use SL::DB::BackgroundJob;
 
  36 use SL::BackgroundJob::ALL;
 
  38 use SL::Helper::DateTime;
 
  39 use SL::InstanceConfiguration;
 
  44 use SL::System::TaskServer;
 
  50   return if !$lx_office_conf{task_server}->{debug};
 
  51   $::lxdebug->message(0, @_);
 
  54 sub initialize_kivitendo {
 
  57   my $login  = $lx_office_conf{task_server}->{login};
 
  58   my $client = $lx_office_conf{task_server}->{client};
 
  62   Form::disconnect_standard_dbh;
 
  63   $::lxdebug       = LXDebug->new;
 
  64   $::locale        = Locale->new($::lx_office_conf{system}->{language});
 
  66   $::auth          = SL::Auth->new;
 
  67   die "No client configured or no client found with the name/ID '$client'" unless $::auth->set_client($client);
 
  68   $::instance_conf = SL::InstanceConfiguration->new;
 
  69   $::request       = SL::Request->new(
 
  71     layout         => SL::Layout::None->new,
 
  74   die 'cannot reach auth db'               unless $::auth->session_tables_present;
 
  76   $::auth->restore_session;
 
  77   $::auth->create_or_refresh_session;
 
  79   die "cannot find user $login"            unless %::myconfig = $::auth->read_user(login => $login);
 
  80   die "cannot find locale for user $login" unless $::locale   = Locale->new($::myconfig{countrycode} || $::lx_office_conf{system}->{language});
 
  82   $::form->{__ERROR_HANDLER} = sub { die @_ };
 
  85 sub cleanup_kivitendo {
 
  86   eval { SL::DB::Auth->new->db->dbh->rollback; };
 
  87   eval { SL::DB::BackgroundJob->new->db->dbh->rollback; };
 
  89   $::auth->save_session;
 
  90   $::auth->expire_sessions;
 
  96   Form::disconnect_standard_dbh;
 
 100   my $user = $lx_office_conf{task_server}->{run_as};
 
 104   while (my @details = getpwent()) {
 
 105     next unless $details[0] eq $user;
 
 106     ($uid, $gid) = @details[2, 3];
 
 112     print "Error: Cannot drop privileges to ${user}: user does not exist\n";
 
 117     print "Error: Cannot drop group privileges to ${user} (group ID $gid): $!\n";
 
 122     print "Error: Cannot drop user privileges to ${user} (user ID $uid): $!\n";
 
 127 sub notify_on_failure {
 
 130   my $cfg = $lx_office_conf{'task_server/notify_on_failure'} || {};
 
 132   return if any { !$cfg->{$_} } qw(send_email_to email_from email_subject email_template);
 
 136   return debug("Template " . $cfg->{email_template} . " missing!") unless -f $cfg->{email_template};
 
 138   my $email_to = $cfg->{send_email_to};
 
 139   if ($email_to !~ m{\@}) {
 
 140     my %user = $::auth->read_user(login => $email_to);
 
 141     return debug("cannot find user for notification $email_to") unless %user;
 
 143     $email_to = $user{email};
 
 144     return debug("user for notification " . $user{login} . " doesn't have a valid email address") unless $email_to =~ m{\@};
 
 147   my $template  = Template->new({
 
 154   return debug("Could not create Template instance") unless $template;
 
 156   $params{client} = $::auth->client;
 
 159   $template->process($cfg->{email_template}, \%params, \$body);
 
 162     from         => $cfg->{email_from},
 
 164     subject      => $cfg->{email_subject},
 
 165     content_type => 'text/plain',
 
 167     message      => Encode::decode('utf-8', $body),
 
 174   SL::LxOfficeConf->read($self->{configfile});
 
 176   die "Missing section [task_server] in config file"                 unless $lx_office_conf{task_server};
 
 177   die "Missing key 'login' in section [task_server] in config file"  unless $lx_office_conf{task_server}->{login};
 
 178   die "Missing key 'client' in section [task_server] in config file" unless $lx_office_conf{task_server}->{client};
 
 181   initialize_kivitendo();
 
 189       initialize_kivitendo();
 
 191       debug("Retrieving jobs");
 
 193       my $jobs = SL::DB::Manager::BackgroundJob->get_all_need_to_run;
 
 195       debug("  Found: " . join(' ', map { $_->package_name } @{ $jobs })) if @{ $jobs };
 
 197       foreach my $job (@{ $jobs }) {
 
 198         # Provide fresh global variables in case legacy code modifies
 
 200         initialize_kivitendo();
 
 202         my $history = $job->run;
 
 204         notify_on_failure(history => $history) if $history && $history->has_failed;
 
 211       my $error = $EVAL_ERROR;
 
 212       debug("Exception during execution: ${error}");
 
 213       notify_on_failure(exception => $error);
 
 220     my $seconds = 60 - (localtime)[0];
 
 222       local $SIG{'ALRM'} = sub {
 
 223         debug("Got woken up by SIGALRM");
 
 226       sleep($seconds < 30 ? $seconds + 60 : $seconds);
 
 229       die $@ unless $@ eq "Alarm!\n";
 
 235   $main::lxdebug->show_backtrace();
 
 237 Job called ::end_of_request()!
 
 239 This usually indicates success but should not be used by background jobs. A
 
 240 backtrace has been logged. Please tell the job author to have a look at it.
 
 247 mkdir SL::System::TaskServer::PID_BASE() if !-d SL::System::TaskServer::PID_BASE();
 
 249 my $file = first { -f } ("${exe_dir}/config/kivitendo.conf", "${exe_dir}/config/lx_office.conf", "${exe_dir}/config/kivitendo.conf.default");
 
 251 die "No configuration file found." unless $file;
 
 253 $file = File::Spec->abs2rel(Cwd::abs_path($file), Cwd::abs_path($exe_dir));
 
 255 newdaemon(configfile => $file,
 
 256           progname   => 'kivitendo-background-jobs',
 
 257           pidbase    => SL::System::TaskServer::PID_BASE() . '/',