ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAppointmentPresentationGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
33 {
34  protected static self $instance;
35 
36  protected array $appointment;
37 
38  protected ?ilToolbarGUI $toolbar;
40  protected ilLanguage $lng;
41  protected ilTree $tree;
42  protected UIServices $ui;
46  protected ilObjUser $user;
48  protected HttpServices $http;
49 
50 
51  protected ?Item $list_item = null;
52 
53  protected array $info_items = [];
54  protected array $list_properties = [];
55  protected array $actions = [];
56 
60  protected array $readable_ref_ids;
61 
62  protected bool $has_files = false;
63  protected int $obj_id = 0;
64  private \ilGlobalTemplateInterface $main_tpl;
65 
66  public function __construct(
67  array $a_appointment,
68  ?ilInfoScreenGUI $a_info_screen,
69  ?ilToolbarGUI $a_toolbar,
70  ?Item $a_list_item
71  ) {
72  global $DIC;
73  $this->main_tpl = $DIC->ui()->mainTemplate();
74 
75  $this->http = $DIC->http();
76  $this->refinery = $DIC->refinery();
77  $this->appointment = $a_appointment;
78  $this->infoscreen = $a_info_screen;
79  $this->info_items = [];
80  $this->toolbar = $a_toolbar;
81  $this->lng = $DIC->language();
82  $this->lng->loadLanguageModule("dateplaner");
83  $this->tree = $DIC->repositoryTree();
84  $this->ui = $DIC->ui();
85  $this->list_item = $a_list_item;
86  $this->ctrl = $DIC->ctrl();
87  $this->access = $DIC->access();
88  $this->rbacsystem = $DIC->rbac()->system();
89  $this->user = $DIC->user();
90  $this->readObjIdForAppointment();
91  }
92 
93  public function getObjIdForAppointment(): int
94  {
95  return $this->obj_id;
96  }
97 
101  protected function readObjIdForAppointment(): void
102  {
103  $cat_id = $this->getCatId($this->appointment['event']->getEntryId());
104  $category = ilCalendarCategory::getInstanceByCategoryId($cat_id);
105  $this->obj_id = $category->getObjId();
106  }
107 
108  public static function getInstance(
109  array $a_appointment,
110  ?ilInfoScreenGUI $a_info_screen,
111  ?ilToolbarGUI $a_toolbar,
112  ?Item $a_list_item
114  return new static($a_appointment, $a_info_screen, $a_toolbar, $a_list_item);
115  }
116 
117  public function getToolbar(): ?ilToolbarGUI
118  {
119  return $this->toolbar;
120  }
121 
126  public function getListItem(): ?Item
127  {
128  return $this->list_item;
129  }
130 
134  public function getInfoScreen(): ?ilInfoScreenGUI
135  {
136  return $this->infoscreen;
137  }
138 
139  public function getCatId(int $a_entry_id): int
140  {
142  }
143 
144  public function getCatInfo(): array
145  {
146  $cat_id = $this->getCatId($this->appointment['event']->getEntryId());
147  return ilCalendarCategories::_getInstance()->getCategoryInfo($cat_id);
148  }
149 
150  public function executeCommand(): void
151  {
152  $next_class = $this->ctrl->getNextClass();
153  $cmd = $this->ctrl->getCmd("getHTML");
154  switch ($next_class) {
155  default:
156  $this->$cmd();
157  }
158  }
159 
160  public function getHTML(): string
161  {
164  $ui = $this->ui;
165 
166  $infoscreen = $this->getInfoScreen();
167  if ($infoscreen instanceof ilInfoScreenGUI) {
168  foreach ($this->info_items as $i) {
169  switch ($i["type"]) {
170  case "section":
171  $infoscreen->addSection($i["txt"]);
172  break;
173  case "property":
174  $infoscreen->addProperty($i["txt"], $i["val"]);
175  break;
176  }
177  }
178  }
179 
180  $toolbar = $this->getToolbar();
181  if ($toolbar instanceof ilToolbarGUI) {
182  //todo: duplicated from ilcalendarviewgui.
183  $settings = ilCalendarSettings::_getInstance();
184  if ($settings->isBatchFileDownloadsEnabled() && $this->has_files) {
185  // file download
186  $this->ctrl->setParameter($this, "app_id", $this->appointment['event']->getEntryId());
187  $download_btn = $ui->factory()->button()->standard(
188  $this->lng->txt("cal_download_files"),
189  $this->ctrl->getLinkTarget($this, 'downloadFiles')
190  );
191  $this->ctrl->setParameter($this, "app_id", '');
192  $toolbar->addComponent($download_btn);
193  $toolbar->addSeparator();
194  }
195 
196  foreach ($this->actions as $a) {
197  $btn = $this->ui->factory()->button()->standard(
198  $a["txt"],
199  $a["link"]
200  );
201  // all buttons are sticky
202  $toolbar->addStickyItem($btn);
203  }
204  }
205 
206  $list_item = $this->getListItem();
207  if ($list_item instanceof \ILIAS\UI\Component\Item\Standard) {
208  $dd = $list_item->getActions();
209  if ($dd === null) {
210  $actions = array();
211  $label = "";
212  } else {
213  $actions = $dd->getItems();
214  $label = $dd->getLabel();
215  }
216  $properties = $list_item->getProperties();
217 
218  foreach ($this->actions as $a) {
219  $actions[] = $ui->factory()->button()->shy($a["txt"], $a["link"]);
220  }
221  foreach ($this->list_properties as $lp) {
222  $properties[$lp["txt"]] = $lp["val"];
223  }
224 
225  $new_dd = $ui->factory()->dropdown()
226  ->standard($actions)
227  ->withLabel($label);
228  $this->list_item = $list_item
229  ->withActions($new_dd)
230  ->withProperties($properties);
231  }
232  return '';
233  }
234 
238  public function addContainerInfo(int $a_obj_id): void
239  {
240  $refs = $this->getReadableRefIds($a_obj_id);
241  $ref_id = current($refs);
242  if (count($refs) == 1 && $ref_id > 0) {
243  $tree = $this->tree;
244  $f = $this->ui->factory();
245  $r = $this->ui->renderer();
246 
247  //parent course or group title
248  $cont_ref_id = $tree->checkForParentType($ref_id, 'grp');
249  if ($cont_ref_id == 0) {
250  $cont_ref_id = $tree->checkForParentType($ref_id, 'crs');
251  }
252 
253  if ($cont_ref_id > 0) {
254  $type = ilObject::_lookupType($cont_ref_id, true);
255  $href = ilLink::_getStaticLink($cont_ref_id);
256  $parent_title = ilObject::_lookupTitle(ilObject::_lookupObjectId($cont_ref_id));
257  $this->addInfoProperty(
258  $this->lng->txt("obj_" . $type),
259  $r->render($f->button()->shy($parent_title, $href))
260  );
261  $this->addListItemProperty(
262  $this->lng->txt("obj_" . $type),
263  $r->render($f->button()->shy($parent_title, $href))
264  );
265  }
266  }
267  }
268 
272  public function addInfoSection(string $a_txt): void
273  {
274  $this->info_items[] = array("type" => "section", "txt" => $a_txt);
275  }
276 
280  public function addInfoProperty(string $a_txt, string $a_val): void
281  {
282  $this->info_items[] = array("type" => "property", "txt" => $a_txt, "val" => $a_val);
283  }
284 
288  public function addListItemProperty(string $a_txt, string $a_val): void
289  {
290  #22638
291  $this->list_properties[] = array("txt" => $a_txt, "val" => $a_val);
292  }
293 
297  public function addAction(string $a_txt, string $a_link): void
298  {
299  $this->actions[] = array("txt" => $a_txt, "link" => $a_link);
300  }
301 
305  public function collectPropertiesAndActions(): void
306  {
307  }
308 
312  public function collectStandardPropertiesAndActions(): void
313  {
314  $cat_info = $this->getCatInfo();
315 
316  //we can move this to the factory.
317  if ($cat_info['editable'] && !$this->appointment['event']->isAutoGenerated()) {
318  $this->ctrl->clearParametersByClass('ilcalendarappointmentgui');
319  // $this->ctrl->setParameterByClass('ilcalendarappointmentgui','seed', $this->getSeed()->get(IL_CAL_DATE));
320  $this->ctrl->setParameterByClass(
321  'ilcalendarappointmentgui',
322  'app_id',
323  $this->appointment['event']->getEntryId()
324  );
325  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'dt', $this->appointment['dstart']);
326 
327  $this->addAction(
328  $this->lng->txt("edit"),
329  $this->ctrl->getLinkTargetByClass(array('ilcalendarappointmentgui'), 'askEdit')
330  );
331 
332  $this->ctrl->clearParametersByClass('ilcalendarappointmentgui');
333  // $this->ctrl->setParameterByClass('ilcalendarappointmentgui','seed',$this->getSeed()->get(IL_CAL_DATE));
334  $this->ctrl->setParameterByClass(
335  'ilcalendarappointmentgui',
336  'app_id',
337  $this->appointment['event']->getEntryId()
338  );
339  $this->ctrl->setParameterByClass('ilcalendarappointmentgui', 'dt', $this->appointment['dstart']);
340 
341  $this->addAction(
342  $this->lng->txt("delete"),
343  $this->ctrl->getLinkTargetByClass(array('ilcalendarappointmentgui'), 'askDelete')
344  );
345  }
346  }
347 
351  public function addObjectLinks(int $obj_id, ?array $a_appointment = null): void
352  {
353  $refs = $this->getReadableRefIds($obj_id);
354  reset($refs);
355  $title = ilObject::_lookupTitle($obj_id);
356  $buttons = array();
357  foreach ($refs as $ref_id) {
358  $link_title = $title;
359  if (count($refs) > 1) {
360  $par_ref = $this->tree->getParentId($ref_id);
361  $link_title .= " (" . ilObject::_lookupTitle(ilObject::_lookupObjId($par_ref)) . ")";
362  }
363 
364  $link = $this->buildDirectLinkForAppointment($ref_id, $a_appointment);
365 
366  $buttons[] = $this->ui->renderer()->render(
367  $this->ui->factory()->button()->shy($link_title, $link)
368  );
369  }
370  if ($refs == 0) {
371  $prop_value = $title;
372  } else {
373  $prop_value = implode("<br>", $buttons);
374  }
375  if ($prop_value != '') {
376  $this->addInfoProperty($this->lng->txt("obj_" . ilObject::_lookupType($obj_id)), $prop_value);
377  $this->addListItemProperty($this->lng->txt("obj_" . ilObject::_lookupType($obj_id)), $prop_value);
378  }
379  }
380 
384  protected function buildDirectLinkForAppointment(int $a_ref_id, ?array $a_appointment = null): string
385  {
386  return ilLink::_getStaticLink($a_ref_id);
387  }
388 
393  public function getReadableRefIds(int $a_obj_id): array
394  {
395  if (!isset($this->readable_ref_ids[$a_obj_id])) {
396  $ref_ids = array();
397  foreach (ilObject::_getAllReferences($a_obj_id) as $ref_id) {
398  if ($this->access->checkAccess("read", "", $ref_id)) {
399  $ref_ids[] = $ref_id;
400  }
401  }
402  $this->readable_ref_ids[$a_obj_id] = $ref_ids;
403  }
404  return $this->readable_ref_ids[$a_obj_id];
405  }
406 
410  public function addEventDescription(array $a_app): void
411  {
412  if ($a_app['event']->getDescription()) {
413  $this->addInfoProperty(
414  $this->lng->txt("description"),
415  ilUtil::makeClickable(nl2br($a_app['event']->getDescription()))
416  );
417  }
418  }
419 
423  public function addEventLocation(array $a_app): void
424  {
425  if ($a_app['event']->getLocation()) {
426  $this->addInfoProperty($this->lng->txt("cal_where"), $a_app['event']->getLocation());
427  $this->addListItemProperty($this->lng->txt("location"), $a_app['event']->getLocation());
428  }
429  }
430 
434  public function addLastUpdate(array $a_app): void
435  {
436  $update = new ilDateTime(
437  $a_app["event"]->getLastUpdate()->get(IL_CAL_UNIX),
438  IL_CAL_UNIX,
439  $this->user->getTimeZone()
440  );
441  $this->addListItemProperty($this->lng->txt('last_update'), ilDatePresentation::formatDate($update));
442  }
443 
444  public function addCalendarInfo(array $cat_info): void
445  {
446  $this->ctrl->setParameterByClass("ilCalendarPresentationGUI", "category_id", $cat_info["cat_id"]);
447 
448  $link = $this->ui->renderer()->render(
449  $this->ui->factory()->button()->shy(
450  $cat_info["title"],
451  $this->ctrl->getLinkTargetByClass(array("ilDashboardGUI", "ilCalendarPresentationGUI"), "")
452  )
453  );
454 
455  $this->ctrl->setParameterByClass("ilCalendarPresentationGUI", "category_id", '');
456  $this->addInfoProperty($this->lng->txt("calendar"), $link);
457  $this->addListItemProperty($this->lng->txt("calendar"), $link);
458  }
459 
460  public function addCommonSection(
461  array $a_app,
462  int $a_obj_id = 0,
463  ?array $cat_info = null,
464  bool $a_container_info = false
465  ): void {
466  // event title
467  $this->addInfoSection($a_app["event"]->getPresentationTitle(false));
468 
469  // event description
470  $this->addEventDescription($a_app);
471 
472  // course title (linked of accessible)
473  if ($a_obj_id > 0) {
474  $this->addObjectLinks($a_obj_id, $a_app);
475  }
476 
477  // container info (course groups)
478  if ($a_container_info) {
479  $this->addContainerInfo($a_obj_id);
480  }
481 
482  // event location
483  $this->addEventLocation($a_app);
484 
485  // calendar info
486  if ($cat_info != null) {
487  $this->addCalendarInfo($cat_info);
488  }
489  }
490 
491  public function addMetaData(
492  string $a_obj_type,
493  int $a_obj_id,
494  ?string $a_sub_obj_type = null,
495  ?int $a_sub_obj_id = null
496  ): void {
497  //TODO: Remove the hack in ilADTActiveRecordByType.php.
498  $record_gui = new ilAdvancedMDRecordGUI(
500  $a_obj_type,
501  $a_obj_id,
502  (string) $a_sub_obj_type,
503  (int) $a_sub_obj_id
504  );
505  $md_items = $record_gui->parse();
506  if (count($md_items)) {
507  foreach ($md_items as $md_item) {
508  $this->addInfoProperty($md_item['title'], $md_item['value']);
509  $this->addListItemProperty($md_item['title'], $md_item['value']);
510  }
511  }
512  }
513 
517  public function getUserName(int $a_user_id, bool $a_force_name = false): string
518  {
519  $ref_id = 0;
520  if ($this->http->wrapper()->query()->has('ref_id')) {
521  $ref_id = $this->http->wrapper()->query()->retrieve(
522  'ref_id',
523  $this->refinery->kindlyTo()->int()
524  );
525  }
526  $type = ilObject::_lookupType($ref_id, true);
527  $ctrl_path = array();
528  if ($type == "crs") {
529  $ctrl_path[] = "ilobjcoursegui";
530  }
531  if ($type == "grp") {
532  $ctrl_path[] = "ilobjgroupgui";
533  }
534  $baseClass = '';
535  if ($this->http->wrapper()->query()->has('baseClass')) {
536  $baseClass = $this->http->wrapper()->query()->retrieve(
537  'baseClass',
538  $this->refinery->kindlyTo()->string()
539  );
540  }
541  if (strtolower($baseClass) == "ildashboardgui") {
542  $ctrl_path[] = "ildashboardgui";
543  }
544  $ctrl_path[] = "ilCalendarPresentationGUI";
545  $ctrl_path[] = "ilpublicuserprofilegui";
546 
548  $a_user_id,
549  false,
550  true,
551  $this->ctrl->getParentReturn($this),
552  $a_force_name,
553  false,
554  true,
555  false,
556  $ctrl_path
557  );
558  }
559 
563  public function downloadFiles(): void
564  {
565  //calendar in the sidebar (marginal calendar)
566  if (empty($this->appointment)) {
567  $entry_id = 0;
568  if ($this->http->wrapper()->query()->has('app_id')) {
569  $entry_id = $this->http->wrapper()->query()->retrieve(
570  'app_id',
571  $this->refinery->kindlyTo()->int()
572  );
573  }
574  $entry = new ilCalendarEntry($entry_id);
575  //if the entry exists
576  if ($entry->getStart()) {
577  $this->appointment = array(
578  "event" => $entry,
579  "dstart" => $entry->getStart(),
580  "dend" => $entry->getEnd(),
581  "fullday" => $entry->isFullday()
582  );
583  } else {
584  $this->main_tpl->setOnScreenMessage('failure', $this->lng->txt("obj_not_found"), true);
585  $this->ctrl->returnToParent($this);
586  }
587  }
588  $download_job = new ilDownloadFilesBackgroundTask($this->user->getId());
589 
590  $download_job->setBucketTitle($this->lng->txt("cal_calendar_download") . " " . $this->appointment['event']->getTitle());
591  $download_job->setEvents(array($this->appointment));
592  if ($download_job->run()) {
593  $this->main_tpl->setOnScreenMessage('success', $this->lng->txt('cal_download_files_started'), true);
594  }
595  $this->ctrl->returnToParent($this);
596  }
597 }
readObjIdForAppointment()
read obj_id for appointment
static getInstance(array $a_appointment, ?ilInfoScreenGUI $a_info_screen, ?ilToolbarGUI $a_toolbar, ?Item $a_list_item)
collectPropertiesAndActions()
Collect properties and actions.
addObjectLinks(int $obj_id, ?array $a_appointment=null)
Add object link.
__construct(array $a_appointment, ?ilInfoScreenGUI $a_info_screen, ?ilToolbarGUI $a_toolbar, ?Item $a_list_item)
addListItemProperty(string $a_txt, string $a_val)
Add list item property.
Interface Observer Contains several chained tasks and infos about them.
static _getAllReferences(int $id)
get all reference ids for object ID
addComponent(\ILIAS\UI\Component\Component $a_comp)
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addEventDescription(array $a_app)
Add event description.
const IL_CAL_UNIX
addInfoSection(string $a_txt)
Add info section.
addInfoProperty(string $a_txt, string $a_val)
Add info property.
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
addLastUpdate(array $a_app)
Add last update.
Provides fluid interface to RBAC services.
Definition: UIServices.php:24
checkForParentType(int $a_ref_id, string $a_type, bool $a_exclude_source_check=false)
Check for parent type e.g check if a folder (ref_id 3) is in a parent course obj => checkForParentTyp...
$ref_id
Definition: ltiauth.php:65
static http()
Fetches the global http state from ILIAS.
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:
static _lookupTitle(int $obj_id)
downloadFiles()
Download files from an appointment ( Modals )
Common interface to all items.
Definition: Item.php:31
addEventLocation(array $a_app)
Add event location.
global $DIC
Definition: shib_login.php:22
static _lookupObjectId(int $ref_id)
addSection(string $a_title)
getUserName(int $a_user_id, bool $a_force_name=false)
Get (linked if possible) user name.
static _getInstance($a_usr_id=0)
get singleton instance
getProperties()
Get the properties of the appointment.
addCommonSection(array $a_app, int $a_obj_id=0, ?array $cat_info=null, bool $a_container_info=false)
static getInstanceByCategoryId(int $a_cat_id)
withProperties(array $properties)
Get a new item with the given properties as key-value pairs.
addAction(string $a_txt, string $a_link)
Add action.
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
buildDirectLinkForAppointment(int $a_ref_id, ?array $a_appointment=null)
Build direct link for appointment.
factory()
Get the factory that crafts UI components.
Definition: UIServices.php:36
addStickyItem( $a_item, bool $a_output_label=false)
Add a sticky item.
static _lookupType(int $id, bool $reference=false)
addMetaData(string $a_obj_type, int $a_obj_id, ?string $a_sub_obj_type=null, ?int $a_sub_obj_id=null)
static makeClickable(string $a_text, bool $detectGotoLinks=false)
collectStandardPropertiesAndActions()
Collect standard properties and actions.
addContainerInfo(int $a_obj_id)
Add course/group container info.
$r