19 declare(strict_types=1);
42 if (str_starts_with($id,
'pl__')) {
43 $parts = explode(
'__', $id);
47 foreach ($this->component_repository->getPlugins() as $pl) {
48 if ($pl->getName() !== $pl_name || !$pl->isActive()) {
52 $plugin = $this->component_factory->getPlugin($pl->getId());
58 $job =
$plugin->getCronJobInstance($job_id);
62 if ($jobs_data === []) {
75 if ($jobs_data !== [] && $jobs_data[0][
'job_id'] === $id) {
77 $jobs_data[0][
'job_id'],
78 $jobs_data[0][
'component'],
79 $jobs_data[0][
'class']
84 $this->
logger->info(
'CRON - job ' . $id .
' seems invalid or is inactive');
93 bool $isCreationContext =
false 95 if (class_exists($a_class)) {
96 if ($isCreationContext) {
97 $refl = new \ReflectionClass($a_class);
98 $job = $refl->newInstanceWithoutConstructor();
100 $job =
new $a_class();
103 if ($job instanceof \
ILIAS\
Cron\CronJob && $job->getId() === $a_id) {
115 if (
$id && !\is_array(
$id)) {
119 $query =
'SELECT * FROM cron_job';
126 if (!$withInactiveJobsIncluded) {
130 $query .=
' WHERE ' . implode(
' AND ', $where);
133 $query .=
' ORDER BY job_id';
135 $res = $this->db->query($query);
136 while ($row = $this->db->fetchAssoc(
$res)) {
149 if (!$this->db->tableExists(
'cron_job')) {
153 $job = $this->
getJobInstance($a_id, $a_component, $a_class,
true);
159 public function unregisterJob(
string $a_component, array $a_xml_job_ids): void
161 if (!$this->db->tableExists(
'cron_job')) {
166 $query =
'SELECT job_id FROM cron_job WHERE component = ' . $this->db->quote($a_component,
'text');
167 $res = $this->db->query($query);
168 while ($row = $this->db->fetchAssoc(
$res)) {
169 $jobs[] = $row[
'job_id'];
173 if ($a_xml_job_ids !== []) {
174 foreach ($jobs as $job_id) {
175 if (!\in_array($job_id, $a_xml_job_ids,
true)) {
176 $this->db->manipulate(
177 'DELETE FROM cron_job' .
178 ' WHERE component = ' . $this->db->quote($a_component,
'text') .
179 ' AND job_id = ' . $this->db->quote($job_id,
'text')
184 $this->db->manipulate(
185 'DELETE FROM cron_job WHERE component = ' . $this->db->quote($a_component,
'text')
197 $query =
'SELECT job_id, schedule_type, component, class, path FROM cron_job' .
198 ' WHERE job_id = ' . $this->db->quote($job->getId(),
'text');
199 $res = $this->db->query($query);
200 $row = $this->db->fetchAssoc(
$res);
201 $job_id = $row[
'job_id'] ??
null;
202 $job_exists = ($job_id === $job->getId());
203 $schedule_type_value = $row[
'schedule_type'] ??
null;
204 $schedule_type = is_numeric($schedule_type_value) ? JobScheduleType::tryFrom(
205 (
int) $schedule_type_value
210 $row[
'component'] !== $component ||
211 $row[
'class'] !== $class ||
212 $row[
'path'] !== $path
215 $this->db->manipulateF(
216 'UPDATE cron_job SET component = %s, class = %s, path = %s WHERE job_id = %s',
217 [
'text',
'text',
'text',
'text'],
218 [$component, $class, $path, $job->getId()]
224 $query =
'INSERT INTO cron_job (job_id, component, class, path)' .
225 ' VALUES (' . $this->db->quote($job->getId(),
'text') .
', ' .
226 $this->db->quote($component,
'text') .
', ' .
227 $this->db->quote($class,
'text') .
', ' .
228 $this->db->quote($path,
'text') .
')';
229 $this->db->manipulate($query);
231 $this->
logger->info(
'Cron XML - Job ' . $job->getId() .
' in class ' . $class .
' added.');
236 $job->getDefaultScheduleType(),
237 $job->getDefaultScheduleValue()
240 if ($job->hasAutoActivation()) {
242 $job->activationWasToggled($this->db, $this->setting,
true);
245 $job->activationWasToggled($this->db, $this->setting,
false);
247 } elseif ($schedule_type === null && $job->hasFlexibleSchedule()) {
251 $job->getDefaultScheduleType(),
252 $job->getDefaultScheduleValue()
254 } elseif ($schedule_type !== null && !$job->hasFlexibleSchedule()) {
263 foreach ($this->component_repository->getPlugins() as $pl) {
264 if (!$pl->isActive()) {
268 $plugin = $this->component_factory->getPlugin($pl->getId());
274 foreach (
$plugin->getCronJobInstances() as $job) {
276 $job_data = $jobs_data[0] ??
null;
277 if (!\is_array($job_data) || $job_data === []) {
283 $job_data = $jobs_data[0];
286 if (!$withOnlyActive || (
int) $job_data[
'job_status'] === 1) {
287 $res[$job->getId()] = [$job, $job_data];
297 $this->db->manipulate(
299 ' SET running_ts = ' . $this->db->quote(0,
'integer') .
300 ' , alive_ts = ' . $this->db->quote(0,
'integer') .
301 ' , job_result_ts = ' . $this->db->quote(0,
'integer') .
302 ' WHERE job_id = ' . $this->db->quote($job->getId(),
'text')
311 bool $wasManualExecution =
false 315 $query =
'UPDATE cron_job SET ' .
316 ' job_result_status = ' . $this->db->quote($result->getStatus(),
'integer') .
317 ' , job_result_user_id = ' . $this->db->quote(
$user_id,
'integer') .
318 ' , job_result_code = ' . $this->db->quote($result->getCode(),
'text') .
319 ' , job_result_message = ' . $this->db->quote($result->getMessage(),
'text') .
320 ' , job_result_type = ' . $this->db->quote((
int) $wasManualExecution,
'integer') .
321 ' , job_result_ts = ' . $this->db->quote($when->getTimestamp(),
'integer') .
322 ' , job_result_dur = ' . $this->db->quote($result->getDuration() * 1000,
'integer') .
323 ' WHERE job_id = ' . $this->db->quote($job->getId(),
'text');
324 $this->db->manipulate($query);
329 $this->db->manipulate(
330 'UPDATE cron_job SET' .
331 ' running_ts = ' . $this->db->quote($runningTimestamp,
'integer') .
332 ' , alive_ts = ' . $this->db->quote($aliveTimestamp,
'integer') .
333 ' WHERE job_id = ' . $this->db->quote($jobId,
'text')
340 $scheduleType ===
null ||
341 ($job->hasFlexibleSchedule() && \in_array($scheduleType, $job->getValidScheduleTypes(),
true))
343 $query =
'UPDATE cron_job SET ' .
344 ' schedule_type = ' . $this->db->quote($scheduleType?->value,
'integer') .
345 ' , schedule_value = ' . $this->db->quote($scheduleValue,
'integer') .
346 ' WHERE job_id = ' . $this->db->quote($job->getId(),
'text');
347 $this->db->manipulate($query);
355 bool $wasManuallyExecuted =
false 358 if ($wasManuallyExecuted && $actor instanceof \
ilObjUser) {
359 $usrId = $actor->getId();
362 $query =
'UPDATE cron_job SET ' .
363 ' job_status = ' . $this->db->quote(1,
'integer') .
364 ' , job_status_user_id = ' . $this->db->quote($usrId,
'integer') .
365 ' , job_status_type = ' . $this->db->quote($wasManuallyExecuted,
'integer') .
366 ' , job_status_ts = ' . $this->db->quote($when->getTimestamp(),
'integer') .
367 ' WHERE job_id = ' . $this->db->quote($job->getId(),
'text');
368 $this->db->manipulate($query);
375 bool $wasManuallyExecuted =
false 377 $usrId = $wasManuallyExecuted ? $actor->
getId() : 0;
379 $query =
'UPDATE cron_job SET ' .
380 ' job_status = ' . $this->db->quote(0,
'integer') .
381 ' , job_result_status = ' . $this->db->quote(
null,
'text') .
382 ' , job_result_message = ' . $this->db->quote(
null,
'text') .
383 ' , job_result_type = ' . $this->db->quote(
null,
'text') .
384 ' , job_result_code = ' . $this->db->quote(
null,
'text') .
385 ' , job_status_user_id = ' . $this->db->quote($usrId,
'integer') .
386 ' , job_status_type = ' . $this->db->quote($wasManuallyExecuted,
'integer') .
387 ' , job_status_ts = ' . $this->db->quote($when->getTimestamp(),
'integer') .
388 ' WHERE job_id = ' . $this->db->quote($job->getId(),
'text');
389 $this->db->manipulate($query);
394 $collection = new \ILIAS\Cron\Job\Collection\JobEntities();
getJobInstanceById(string $id)
Readable part of repository interface to ilComponentDataDB.
updateJobResult(\ILIAS\Cron\CronJob $job, \DateTimeImmutable $when, \ilObjUser $actor, \ILIAS\Cron\Job\JobResult $result, bool $wasManualExecution=false)
unregisterJob(string $a_component, array $a_xml_job_ids)
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
deactivateJob(\ILIAS\Cron\CronJob $job, \DateTimeImmutable $when, \ilObjUser $actor, bool $wasManuallyExecuted=false)
getPluginJobs(bool $withOnlyActive=false)
Interface Observer Contains several chained tasks and infos about them.
const string TYPE_PLUGINS
registerJob(string $a_component, string $a_id, string $a_class, ?string $a_path)
getJobInstance(string $a_id, string $a_component, string $a_class, bool $isCreationContext=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(private \ilDBInterface $db, private \ilSetting $setting, private \ilLogger $logger, private \ilComponentRepository $component_repository, private \ilComponentFactory $component_factory)
updateJobSchedule(\ILIAS\Cron\CronJob $job, ?JobScheduleType $scheduleType, ?int $scheduleValue)
activateJob(\ILIAS\Cron\CronJob $job, \DateTimeImmutable $when, ?\ilObjUser $actor=null, bool $wasManuallyExecuted=false)
updateRunInformation(string $jobId, int $runningTimestamp, int $aliveTimestamp)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
getCronJobData($id=null, bool $withInactiveJobsIncluded=true)
Get cron job configuration/execution data.
createDefaultEntry(\ILIAS\Cron\CronJob $job, string $component, string $class, ?string $path)
resetJob(\ILIAS\Cron\CronJob $job)