1 package SL::DB::BackgroundJob;
5 use DateTime::Event::Cron;
6 use English qw(-no_match_vars);
8 use Rose::DB::Object::Helpers qw(as_tree);
10 use SL::DB::MetaSetup::BackgroundJob;
11 use SL::DB::Manager::BackgroundJob;
13 use SL::System::Process;
15 __PACKAGE__->meta->initialize;
17 __PACKAGE__->before_save('_before_save_set_next_run_at');
19 sub _before_save_set_next_run_at {
22 $self->update_next_run_at if !$self->next_run_at;
26 sub update_next_run_at {
29 my $cron = DateTime::Event::Cron->new_from_cron($self->cron_spec || '* * * * *');
30 $self->update_attributes(next_run_at => $cron->next(DateTime->now_local));
37 my $package = "SL::BackgroundJob::" . $self->package_name;
38 my $run_at = DateTime->now_local;
41 require SL::DB::BackgroundJobHistory;
44 eval "require $package" or die $@;
45 my $result = $package->new->run($self);
47 $history = SL::DB::BackgroundJobHistory
48 ->new(package_name => $self->package_name,
50 status => SL::DB::BackgroundJobHistory::SUCCESS(),
59 my $error = $EVAL_ERROR;
60 $history = SL::DB::BackgroundJobHistory
61 ->new(package_name => $self->package_name,
63 status => SL::DB::BackgroundJobHistory::FAILURE(),
68 $::lxdebug->message(LXDebug->WARN(), "BackgroundJob ID " . $self->id . " execution error (first three lines): " . join("\n", (split(m/\n/, $error))[0..2]));
71 $self->assign_attributes(last_run_at => $run_at)->update_next_run_at;
79 $self->data(YAML::Dump($_[0])) if @_;
81 return {} if !$self->data;
82 return $self->data if ref($self->{data}) eq 'HASH';
83 return YAML::Load($self->{data}) if !ref($self->{data});
88 my ($self, %data) = @_;
90 $self->data(YAML::Dump({
91 %{ $self->data_as_hash },
103 push @errors, $::locale->text('The execution type is invalid.') if ($self->type || '') !~ m/^(?: once | interval )$/x;
105 if ( (($self->package_name || '') !~ m/^ [A-Z][A-Za-z0-9]+ $/x)
106 || ! -f (SL::System::Process::exe_dir() . "/SL/BackgroundJob/" . $self->package_name . ".pm")) {
107 push @errors, $::locale->text('The package name is invalid.');
111 DateTime::Event::Cron->new_from_cron($self->cron_spec || '* * * * *')->next(DateTime->now_local);
113 } or push @errors, $::locale->text('The execution schedule is invalid.');