38 $ui_factory = $this->dic->ui()->factory();
40 $title = $ui_factory->link()->standard($this->
txt(
'background_tasks'),
'#');
41 $icon = $ui_factory->symbol()->icon()->standard(
'bgtk', $this->
txt(
'background_tasks'));
43 return $this->dic->ui()->factory()
45 ->notification($title, $icon)
46 ->withDescription(
"$nr_buckets {$this->txt('background_tasks')}")
56 $persistence = $this->dic->backgroundTasks()->persistence();
58 $observer_ids = $persistence->getBucketIdsOfUser($this->dic->user()->getId(),
'id',
'DESC');
59 foreach ($persistence->loadBuckets($observer_ids) as $observer) {
69 $redirect_uri =
"//{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
71 $f = $this->dic->ui()->factory();
73 $state = (int) $observer->
getState();
76 $icon =
$f->symbol()->icon()->standard(
"bgtk", $this->
txt(
"bg_task"));
77 $title = $observer->
getTitle() . ($state === State::SCHEDULED ?
" ({$this->txt('scheduled')})" :
"");
79 if ($state === State::USER_INTERACTION) {
80 $actions = $this->getUserInteractionContent($observer, $redirect_uri);
81 $primary_action = array_pop($actions);
82 if ($primary_action instanceof
Button) {
83 $title = $primary_action->withLabel($title);
85 $item =
$f->item()->notification($title, $icon);
93 $item = $item->withActions(
$f->dropdown()->standard($actions));
94 $input = $current_task->getInput();
95 $message = $current_task->getMessage($input);
98 $item = $item->withDescription(
$message);
100 $item = $item->withAdditionalContent($this->
getProgressbar($observer));
103 return $item->withCloseAction(
108 $item =
$f->item()->notification($title, $icon);
110 if ($state === State::RUNNING) {
113 $item = $item->withAdditionalOnLoadCode(
function ($id) use (
$url) {
115 return "var notification_item = il.UI.item.notification.getNotificationItemObject($('#$id')); 116 il.BGTask.refreshItem(notification_item,'$url');";
119 $expected = $current_task->getExpectedTimeOfTaskInSeconds();
121 if ($possibly_failed ===
true) {
122 $item = $item->withDescription($this->
txt(
'task_might_be_failed'));
123 $item = $item->withCloseAction(
142 public function getUserInteractionContent(
Bucket $observer,
string $redirect_uri) : array
144 $factory = $this->dic->ui()->factory();
145 $language = $this->dic->language();
146 $persistence = $this->dic->backgroundTasks()->persistence();
147 $ctrl = $this->dic->ctrl();
154 $options = $userInteraction->getOptions($userInteraction->getInput());
156 $shy_buttons = array_map(
158 $ctrl->setParameterByClass(
159 ilBTControllerGUI::class,
163 $ctrl->setParameterByClass(
164 ilBTControllerGUI::class,
168 $ctrl->setParameterByClass(
169 ilBTControllerGUI::class,
171 $persistence->getBucketContainerId($observer)
177 $language->txt($option->getLangVar()),
193 case ((
int) $percentage === 100):
195 $content = $this->dic->language()->txt(
"completed");
197 case ((
int) $observer->
getState() === State::USER_INTERACTION):
199 $content = $this->dic->language()->txt(
"waiting");
203 $content =
"{$percentage}%";
207 return $this->dic->ui()->factory()->legacy(
" <div class='progress'> 208 <div class='progress-bar progress-bar-striped {$running}' role='progressbar' aria-valuenow='{$percentage}' 209 aria-valuemin='0' aria-valuemax='100' style='width:{$percentage}%'> 218 $ctrl = $this->dic->ctrl();
219 $persistence = $this->dic->backgroundTasks()->persistence();
224 switch ($option->getValue()) {
225 case AbstractTask::MAIN_ABORT:
228 case AbstractTask::MAIN_REMOVE:
243 $ctrl = $this->dic->ctrl();
244 $persistence = $this->dic->backgroundTasks()->persistence();
257 private function txt(
string $id) : string
259 return $this->dic->language()->txt($id);
__construct(\ILIAS\DI\Container $dic)
Class ChatMainBarProvider .
getItemForObserver(Bucket $observer)
getDefaultCardContent(Bucket $observer)
const CMD_GET_REPLACEMENT_ITEM
getLastHeartbeat()
When was the last time that something happened on this bucket?
getProgressbar(Bucket $observer)
getRefreshUrl(Bucket $observer)
addFromUrlToNextRequest(string $redirect_uri)
getCloseButtonAction(UserInteraction\Option $option, $redirect_uri, Bucket $observer)
const CMD_USER_INTERACTION
getNotificationItem(int $nr_buckets)
Get the Notification Items.