19 declare(strict_types=1);
34 $last_year = (
int) $last_run->format(
'Y');
35 $now_year = (
int) $now->format(
'Y');
37 if ($last_year > $now_year) {
42 $last_week = $last_run->format(
'W');
43 $now_week = $now->format(
'W');
45 if ($last_week !== $now_week) {
52 $last_month = (
int) $last_run->format(
'm');
53 $now_month = (
int) $now->format(
'm');
55 $is_within_same_week_in_same_year = ($last_year .
'-' . $last_week) === ($now_year .
'-' . $now_week);
56 if ($is_within_same_week_in_same_year) {
58 return $last_month !== $now_month && $now->diff($last_run)->d > 7;
61 if ($now_year - $last_year > 1) {
67 return $last_month === $now_month;
75 if (
null === $schedule_type) {
79 if (
null === $last_run) {
83 if ($this->date_time_provider ===
null) {
84 $now = new \DateTimeImmutable(
'@' . time(),
new \
DateTimeZone(date_default_timezone_get()));
89 switch ($schedule_type) {
90 case JobScheduleType::DAILY:
91 $last = $last_run->format(
'Y-m-d');
92 $ref = $now->format(
'Y-m-d');
93 return ($last !== $ref);
95 case JobScheduleType::WEEKLY:
98 case JobScheduleType::MONTHLY:
99 $last = $last_run->format(
'Y-n');
100 $ref = $now->format(
'Y-n');
101 return ($last !== $ref);
103 case JobScheduleType::QUARTERLY:
104 $last = $last_run->format(
'Y') .
'-' . ceil(((
int) $last_run->format(
'n')) / 3);
105 $ref = $now->format(
'Y') .
'-' . ceil(((
int) $now->format(
'n')) / 3);
106 return ($last !== $ref);
109 $last = $last_run->format(
'Y');
110 $ref = $now->format(
'Y');
111 return ($last !== $ref);
113 case JobScheduleType::IN_MINUTES:
114 $diff = floor(($now->getTimestamp() - $last_run->getTimestamp()) / 60);
115 return ($diff >= $schedule_value);
117 case JobScheduleType::IN_HOURS:
118 $diff = floor(($now->getTimestamp() - $last_run->getTimestamp()) / (60 * 60));
119 return ($diff >= $schedule_value);
121 case JobScheduleType::IN_DAYS:
122 $diff = floor(($now->getTimestamp() - $last_run->getTimestamp()) / (60 * 60 * 24));
123 return ($diff >= $schedule_value);
134 if ($date_time_provider !==
null) {
135 $r = new \ReflectionFunction($date_time_provider);
136 $return_type =
$r->getReturnType();
137 if ($return_type instanceof \ReflectionNamedType) {
138 $return_type = $return_type->getName();
140 $expected_type = \DateTimeInterface::class;
141 if (!is_subclass_of($return_type, $expected_type)) {
142 throw new \InvalidArgumentException(
144 'The return type of the datetime provider must be of type %s',
150 $r = new \ReflectionFunction($date_time_provider);
151 $parameters =
$r->getParameters();
152 if ($parameters !== []) {
153 throw new \InvalidArgumentException(
154 'The datetime provider must not define any parameters',
165 ?
int $schedule_value,
166 bool $is_manually_executed =
false 168 if ($is_manually_executed) {
177 return $this->
checkSchedule($last_run, $schedule_type, $schedule_value);
214 $this->schedule_type = $a_type;
215 $this->schedule_value = $a_value;
225 return JobScheduleType::cases();
234 JobScheduleType::IN_MINUTES,
235 JobScheduleType::IN_HOURS,
236 JobScheduleType::IN_DAYS,
262 #[\Deprecated('Will be removed without any alternative, KS/UI forms will be expected', since: '13.0')] 273 throw new \RuntimeException(
'Not implemented');
279 #[\Deprecated('Will be removed without any alternative, KS/UI forms will be expected', since: '13.0')] 291 throw new \RuntimeException(
'Not implemented');
297 #[\Deprecated('Will be removed without any alternative, KS/UI forms will be expected', since: '13.0')] 318 abstract public function getId(): string;
320 abstract public function getTitle(): string;
335 abstract public function run(): JobResult;
JobScheduleType $schedule_type
activationWasToggled(\ilDBInterface $db, \ilSetting $setting, bool $a_currently_active)
Important: This method is (also) called from the setup process, where the constructor of an ilCronJob...
getScheduleType()
Get current schedule type (if flexible)
checkWeeklySchedule(\DateTimeImmutable $last_run, \DateTimeImmutable $now)
Interface Observer Contains several chained tasks and infos about them.
isDue(?\DateTimeImmutable $last_run, ?JobScheduleType $schedule_type, ?int $schedule_value, bool $is_manually_executed=false)
hasAutoActivation()
Is to be activated on "installation", does only work for ILIAS core cron jobs.
saveCustomConfiguration(mixed $form_data)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addToExternalSettingsForm(int $a_form_id, array &$a_fields, bool $a_is_active)
getCustomConfigurationInput(\ILIAS\UI\Factory $ui_factory, \ILIAS\Refinery\Factory $factory, \ilLanguage $lng)
setSchedule(?JobScheduleType $a_type, ?int $a_value)
Update current schedule (if flexible)
addCustomSettingsToForm(\ilPropertyFormGUI $a_form)
getDefaultScheduleValue()
getScheduleValue()
Get current schedule value (if flexible)
saveCustomSettings(\ilPropertyFormGUI $a_form)
getValidScheduleTypes()
Returns a collection of all valid schedule types for a specific job.
setDateTimeProvider(?\Closure $date_time_provider)
Closure $date_time_provider
getScheduleTypesWithValues()
getAllScheduleTypes()
Get all available schedule types.
checkSchedule(?\DateTimeImmutable $last_run, ?JobScheduleType $schedule_type, ?int $schedule_value)