19 declare(strict_types=1);
28 class JobTable implements \ILIAS\UI\Component\Table\DataRetrieval
32 private \Psr\Http\Message\ServerRequestInterface
$request;
43 array $table_action_namespace,
44 string $table_action_param_name,
45 string $table_row_identifier_name,
52 private readonly
bool $mayWrite =
false 58 $form_action = (new \ILIAS\Data\Factory())->uri(
67 ] = (new \ILIAS\UI\URLBuilder($form_action))->acquireParameters(
68 $table_action_namespace,
69 $table_action_param_name,
70 $table_row_identifier_name
76 array $visible_column_ids,
80 ?array $additional_parameters
82 foreach ($this->
getRecords($range, $order) as $item) {
87 'status' => (bool) $item->getJobStatus(),
94 if ($item->getJob()->hasFlexibleSchedule()) {
95 if ($item->getScheduleType() ===
null) {
96 $this->job_repository->updateJobSchedule(
98 $item->getEffectiveScheduleType(),
99 $item->getEffectiveScheduleValue()
102 } elseif ($item->getScheduleType() !==
null) {
103 $this->job_repository->updateJobSchedule($item->getJob(),
null,
null);
106 $actions_executable = $this->mayWrite && !$item->getRunningTimestamp();
107 $is_crashed = \ILIAS\Cron\Job\JobResult::STATUS_CRASHED === $item->getJobResultStatus();
108 $is_acivated = (bool) $item->getJobStatus();
110 $may_reset = $actions_executable && $is_crashed;
111 $may_activate = $actions_executable && !$is_crashed && !$is_acivated;
112 $may_deactivate = $actions_executable && !$is_crashed && $is_acivated;
113 $may_run = $actions_executable && !$is_crashed && $is_acivated && $item->getJob()->isManuallyExecutable();
114 $may_edit = $actions_executable && (
115 $item->getJob()->hasFlexibleSchedule() || $item->getJob()->hasCustomSettings()
119 ->buildDataRow($item->getEffectiveJobId(), $record)
120 ->withDisabledAction(
'run', !$may_run)
121 ->withDisabledAction(
'activate', !$may_activate)
122 ->withDisabledAction(
'deactivate', !$may_deactivate)
123 ->withDisabledAction(
'reset', !$may_reset)
124 ->withDisabledAction(
'edit', !$may_edit);
130 return \count($this->job_collection);
138 [$order_field, $order_direction] = $order->join([],
static function ($ret, $key, $value) {
139 return [$key, $value];
142 $collection =
new OrderedJobEntities(
143 $this->job_collection,
144 match ($order_field) {
148 if ($order_field ===
'component') {
152 if ($order_field ===
'schedule') {
156 if ($order_field ===
'result') {
160 if ($order_field ===
'last_run') {
169 if ($right->getRunningTimestamp()) {
170 $right_last_run = strtotime(
'+1year', $right->getRunningTimestamp());
171 } elseif ($right->getJobResultTimestamp()) {
172 $right_last_run = $right->getJobResultTimestamp();
175 return $left_last_run <=> $right_last_run;
184 $records = \array_slice($collection->toArray(), $range->getStart(), $range->getLength());
191 $title = implode(
'', [
196 if ($entity->
getJob()->getDescription()) {
197 $title .= implode(
'', [
198 '<div class="il_Description_no_margin">',
199 $entity->
getJob()->getDescription(),
210 JobScheduleType::DAILY => $this->
lng->txt(
'cron_schedule_daily'),
211 JobScheduleType::WEEKLY => $this->
lng->txt(
'cron_schedule_weekly'),
212 JobScheduleType::MONTHLY => $this->
lng->txt(
'cron_schedule_monthly'),
213 JobScheduleType::QUARTERLY => $this->
lng->txt(
'cron_schedule_quarterly'),
215 JobScheduleType::IN_MINUTES => \sprintf(
216 $this->
lng->txt(
'cron_schedule_in_minutes'),
219 JobScheduleType::IN_HOURS => \sprintf(
220 $this->
lng->txt(
'cron_schedule_in_hours'),
223 JobScheduleType::IN_DAYS => \sprintf(
224 $this->
lng->txt(
'cron_schedule_in_days'),
236 $component = $this->
lng->txt(
'cmps_plugin') .
'/' . $component;
254 $status_info[] = $this->
lng->txt(
'cron_changed_by_crontab');
257 return implode(
'<br />', $status_info);
265 case \ILIAS\Cron\Job\JobResult::STATUS_INVALID_CONFIGURATION:
266 $result = $this->
lng->txt(
'cron_result_status_invalid_configuration');
269 case \ILIAS\Cron\Job\JobResult::STATUS_NO_ACTION:
270 $result = $this->
lng->txt(
'cron_result_status_no_action');
273 case \ILIAS\Cron\Job\JobResult::STATUS_OK:
274 $result = $this->
lng->txt(
'cron_result_status_ok');
277 case \ILIAS\Cron\Job\JobResult::STATUS_CRASHED:
278 $result = $this->
lng->txt(
'cron_result_status_crashed');
281 case \ILIAS\Cron\Job\JobResult::STATUS_RESET:
282 $result = $this->
lng->txt(
'cron_result_status_reset');
285 case \ILIAS\Cron\Job\JobResult::STATUS_FAIL:
286 $result = $this->
lng->txt(
'cron_result_status_fail');
304 $result_info[] = $this->
lng->txt(
'cro_job_rc_' . $resultCode);
309 if (\defined(
'DEVMODE') && DEVMODE && $resultCode) {
310 $result_info[] = $resultCode;
316 $result_info[] = $this->
lng->txt(
'cron_changed_by_crontab');
319 return implode(
'<br />', $result_info);
331 if ($last_run > time()) {
332 $last_run = $this->
lng->txt(
'cron_running_since') .
' ' .
337 $last_run .=
'<br />(Ping: ' .
340 } elseif ($last_run) {
344 return $last_run ?:
'-';
353 'title' => $this->ui_factory
356 ->text($this->
lng->txt(
'title') .
' / ' . $this->
lng->txt(
'description'))
357 ->withIsSortable(
true),
358 'component' => $this->ui_factory
361 ->text($this->
lng->txt(
'cron_component'))
362 ->withIsSortable(
true)
363 ->withIsOptional(
true,
false),
364 'schedule' => $this->ui_factory
367 ->text($this->
lng->txt(
'cron_schedule'))
368 ->withIsSortable(
true),
369 'status' => $this->ui_factory
373 $this->
lng->txt(
'cron_status'),
374 $this->ui_factory->symbol()->icon()->custom(
375 'assets/images/standard/icon_ok.svg',
376 $this->
lng->txt(
'cron_status_active'),
377 \ILIAS\UI\Component\Symbol\Icon\Icon::SMALL
379 $this->ui_factory->symbol()->icon()->custom(
380 'assets/images/standard/icon_not_ok.svg',
381 $this->
lng->txt(
'cron_status_inactive'),
382 \ILIAS\UI\Component\Symbol\Icon\Icon::SMALL
385 ->withIsSortable(
true),
386 'status_info' => $this->ui_factory
389 ->text($this->
lng->txt(
'cron_status_info'))
390 ->withIsSortable(
false),
391 'result' => $this->ui_factory
394 ->status($this->
lng->txt(
'cron_result'))
395 ->withIsSortable(
true),
396 'result_info' => $this->ui_factory
399 ->text($this->
lng->txt(
'cron_result_info'))
400 ->withIsSortable(
false),
401 'last_run' => $this->ui_factory
404 ->text($this->
lng->txt(
'cron_last_run'))
405 ->withIsSortable(
true)
414 if (!$this->mayWrite) {
419 'run' => $this->ui_factory->table()->action()->single(
420 $this->
lng->txt(
'cron_action_run'),
421 $this->url_builder->withParameter($this->action_parameter_token,
'run'),
424 'activate' => $this->ui_factory->table()->action()->standard(
425 $this->
lng->txt(
'cron_action_activate'),
426 $this->url_builder->withParameter($this->action_parameter_token,
'activate'),
429 'deactivate' => $this->ui_factory->table()->action()->standard(
430 $this->
lng->txt(
'cron_action_deactivate'),
431 $this->url_builder->withParameter($this->action_parameter_token,
'deactivate'),
434 'reset' => $this->ui_factory->table()->action()->standard(
435 $this->
lng->txt(
'cron_action_reset'),
436 $this->url_builder->withParameter($this->action_parameter_token,
'reset'),
439 'edit' => $this->ui_factory->table()->action()->single(
440 $this->
lng->txt(
'cron_action_edit'),
441 $this->url_builder->withParameter($this->action_parameter_token,
'edit'),
449 return $this->ui_factory
451 ->data($this, $this->
lng->txt(
'cron_jobs'), $this->
getColumns())
453 ->withId(self::class)
454 ->withRequest($this->request)
formatComponent(JobEntity $entity)
readonly ILIAS UI URLBuilderToken $row_id_token
ILIAS UI Factory $ui_factory
Interface Observer Contains several chained tasks and infos about them.
readonly ILIAS UI URLBuilder $url_builder
getRecords(\ILIAS\Data\Range $range, \ILIAS\Data\Order $order)
formatStatusInfo(JobEntity $entity)
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
Returns a link target for the given information.
formatResultInfo(JobEntity $entity)
Both the subject and the direction need to be specified when expressing an order. ...
readonly ILIAS UI URLBuilderToken $action_parameter_token
formatSchedule(JobEntity $entity)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
formatResult(JobEntity $entity)
final const int ORDER_BY_STATUS
getEffectiveScheduleType()
getEffectiveScheduleValue()
formatLastRun(JobEntity $entity)
__construct(\ilCronManagerGUI $a_parent_obj, string $a_parent_cmd, array $table_action_namespace, string $table_action_param_name, string $table_row_identifier_name, \ILIAS\UI\Factory $ui_factory, \Psr\Http\Message\ServerRequestInterface $request, \ilCtrlInterface $ctrl, \ilLanguage $lng, private readonly \ILIAS\Cron\Job\JobCollection $job_collection, private readonly JobRepository $job_repository, private readonly bool $mayWrite=false)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
getTotalRowCount(?array $filter_data, ?array $additional_parameters)
Mainly for the purpose of pagination-support, it is important to know about the total number of recor...
ilCronManagerGUI: ilPropertyFormGUI ilCronManagerGUI: ilAdministrationGUI
formatTitle(JobEntity $entity)
A simple class to express a naive range of whole positive numbers.
getRows(\ILIAS\UI\Component\Table\DataRowBuilder $row_builder, array $visible_column_ids, \ILIAS\Data\Range $range, \ILIAS\Data\Order $order, ?array $filter_data, ?array $additional_parameters)
Psr Http Message ServerRequestInterface $request
final const int ORDER_BY_NAME