Validierungsfunktion für BackgroundJobs
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Aug 2012 12:08:53 +0000 (14:08 +0200)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 28 Aug 2012 14:33:38 +0000 (16:33 +0200)
SL/DB/BackgroundJob.pm

index 743a6b5..18f8e42 100644 (file)
@@ -11,6 +11,7 @@ use SL::DB::Manager::BackgroundJob;
 use SL::DB::BackgroundJobHistory;
 
 use SL::BackgroundJob::Test;
+use SL::System::Process;
 
 sub update_next_run_at {
   my $self = shift;
@@ -67,4 +68,24 @@ sub data_as_hash {
   return {};
 }
 
+sub validate {
+  my ($self) = @_;
+
+  my @errors;
+
+  push @errors, $::locale->text('The execution type is invalid.') if ($self->type         || '') !~ m/^(?: once | interval )$/x;
+
+  if (   (($self->package_name || '') !~ m/^ [A-Z][A-Za-z0-9]+ $/x)
+      || ! -f (SL::System::Process::exe_dir() . "/SL/BackgroundJob/" . $self->package_name . ".pm")) {
+    push @errors, $::locale->text('The package name is invalid.');
+  }
+
+  eval {
+    DateTime::Event::Cron->new_from_cron($self->cron_spec)->next(DateTime->now_local);
+    1;
+  } or push @errors, $::locale->text('The execution schedule is invalid.');
+
+  return @errors;
+}
+
 1;