ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjMediaCastGUI.php
Go to the documentation of this file.
1 <?php
2 
26 
37 {
38  protected \ILIAS\MediaObjects\Player\GUIService $mob_player_gui;
39  protected \ILIAS\MediaObjects\MediaType\MediaTypeManager $media_type;
40  protected \ILIAS\MediaCast\InternalGUIService $gui;
41  protected $video_gui;
42  protected \ILIAS\MediaCast\MediaCastManager $mc_manager;
46  protected ilTabsGUI $tabs;
47  protected ilLogger $log;
48  protected ilHelpGUI $help;
49  private array $additionalPurposes = [];
50  protected FileSystem $filesystem;
51 
55  public function __construct(
56  $a_data,
57  int $a_id,
58  bool $a_call_by_reference,
59  bool $a_prepare_output = true
60  ) {
61  global $DIC;
62 
63  $this->ctrl = $DIC->ctrl();
64  $this->lng = $DIC->language();
65  $this->user = $DIC->user();
66  $this->tabs = $DIC->tabs();
67  $this->tpl = $DIC["tpl"];
68  $this->access = $DIC->access();
69  $this->toolbar = $DIC->toolbar();
70  $this->filesystem = $DIC->filesystem()->web();
71  $this->log = $DIC["ilLog"];
72  $this->help = $DIC["ilHelp"];
73  $this->locator = $DIC["ilLocator"];
74  $ilCtrl = $DIC->ctrl();
75  $lng = $DIC->language();
76  $this->mc_request = $DIC->mediaCast()
77  ->internal()
78  ->gui()
79  ->standardRequest();
80 
81  $this->type = "mcst";
82  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
83  $lng->loadLanguageModule("mcst");
84  $lng->loadLanguageModule("news");
85  $lng->loadLanguageModule("rep");
86 
87  $ilCtrl->saveParameter($this, "item_id");
88 
90 
91  if ($this->object) {
92  $this->mc_manager = $DIC->mediaCast()->internal()
93  ->domain()->mediaCast($this->object);
94  }
95  $this->gui = $DIC->mediaCast()->internal()->gui();
96  $this->media_type = $DIC->mediaObjects()->internal()->domain()->mediaType();
97  $this->video_gui = $DIC->mediaObjects()->internal()->gui()->video();
98  $this->mob_player_gui = $DIC->mediaObjects()->internal()->gui()->player();
99  }
100 
101  public function executeCommand(): void
102  {
103  $ilUser = $this->user;
104  $ilTabs = $this->tabs;
105 
106  $next_class = $this->ctrl->getNextClass($this);
107  $cmd = $this->ctrl->getCmd();
108  $this->prepareOutput();
109 
110  switch ($next_class) {
111  case "ilmediacreationgui":
112  $this->ctrl->setReturn($this, "listItems");
113  $ilTabs->activateTab("content");
114  $this->addContentSubTabs("manage");
115  $med_type = [];
116  switch ($this->object->getViewMode()) {
118  $med_type = [ilMediaCreationGUI::TYPE_VIDEO];
119  break;
121  $med_type = [ilMediaCreationGUI::TYPE_IMAGE];
122  break;
124  $med_type = [ilMediaCreationGUI::TYPE_AUDIO];
125  break;
126  }
127  $creation = new ilMediaCreationGUI($med_type, function ($mob_id) {
128  $this->afterUpload($mob_id);
129  }, function ($mob_id, $long_desc) {
130  $this->afterUrlSaving($mob_id, $long_desc);
131  }, function ($mob_ids) {
132  $this->afterPoolInsert($mob_ids);
133  }, function ($mob_id) {
134  $this->finishSingleUpload($mob_id);
135  }, function ($mob_id) {
136  $this->onMobUpdate($mob_id);
137  });
138  $this->ctrl->forwardCommand($creation);
139  break;
140 
141  case "ilinfoscreengui":
142  if (!$this->checkPermissionBool("read")) {
143  $this->checkPermission("visible");
144  }
145  $this->infoScreen(); // forwards command
146  break;
147 
148  case "ilexportgui":
149  // $this->prepareOutput();
150  $ilTabs->activateTab("export");
151  $exp_gui = new ilExportGUI($this);
152  $exp_gui->addFormat("xml");
153  $ret = $this->ctrl->forwardCommand($exp_gui);
154  // $this->tpl->show();
155  break;
156 
157  case 'ilpermissiongui':
158  $ilTabs->activateTab("id_permissions");
159  $perm_gui = new ilPermissionGUI($this);
160  $ret = $this->ctrl->forwardCommand($perm_gui);
161  break;
162 
163  case 'ilobjectcopygui':
164  $cp = new ilObjectCopyGUI($this);
165  $cp->setType('mcst');
166  $this->ctrl->forwardCommand($cp);
167  break;
168 
169  case "ilcommonactiondispatchergui":
171  $this->ctrl->forwardCommand($gui);
172  break;
173 
174  case "illearningprogressgui":
175  $ilTabs->activateTab('learning_progress');
176  $new_gui = new ilLearningProgressGUI(
178  $this->object->getRefId(),
179  $this->mc_request->getUserId() ?: $ilUser->getId()
180  );
181  $this->ctrl->forwardCommand($new_gui);
182  $this->tabs_gui->setTabActive('learning_progress');
183  break;
184 
185  case "mcstimagegallerygui":
186  $view = new \McstImageGalleryGUI($this->object, $this->tpl, $this->getFeedLink());
187  $this->ctrl->forwardCommand($view);
188  break;
189 
190  case "mcstpodcastgui":
191  $view = new \McstPodcastGUI($this->object, $this->tpl, $this->getFeedLink());
192  $this->ctrl->forwardCommand($view);
193  break;
194 
195  case strtolower(ilCommentGUI::class):
196  $this->ctrl->forwardCommand($this->getCommentGUI());
197  break;
198 
199  case strtolower(ilObjectMetaDataGUI::class):
200  $this->checkPermission("write");
201  $ilTabs->activateTab("meta_data");
202  $gui = new ilObjectMetaDataGUI($this->object);
203  $this->ctrl->forwardCommand($gui);
204  break;
205 
206  case strtolower(SettingsGUI::class):
207  $this->checkPermission("write");
208  $ilTabs->activateTab("id_settings");
209  $gui = $this->gui->settings()->settingsGUI(
210  $this->object->getId(),
211  $this->object->getRefId()
212  );
213  $this->ctrl->forwardCommand($gui);
214  break;
215 
216  default:
217  if (!$cmd) {
218  $cmd = "infoScreen";
219  }
220  $cmd .= "Object";
221  if ($cmd != "infoScreenObject") {
222  $this->checkPermission("read");
223  } else {
224  $this->checkPermission("visible");
225  }
226  $this->$cmd();
227 
228  break;
229  }
230  $this->addHeaderAction();
231  }
232 
233  public function editObject(): void
234  {
235  if (!$this->checkPermissionBool("write")) {
236  $this->error->raiseError($this->lng->txt("msg_no_perm_write"), $this->error->MESSAGE);
237  }
238 
239  $this->ctrl->redirectByClass(SettingsGUI::class, "");
240  }
241 
242 
243  protected function afterSave(ilObject $new_object): void
244  {
245  // always send a message
246  $this->tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
247  ilUtil::redirect("ilias.php?baseClass=ilMediaCastHandlerGUI&ref_id=" . $new_object->getRefId() . "&cmd=editSettings");
248  }
249 
250  public function listItemsObject(bool $a_presentation_mode = false): void
251  {
252  $tpl = $this->tpl;
253  $lng = $this->lng;
254  $ilAccess = $this->access;
255  $ilToolbar = $this->toolbar;
256 
257  $this->checkPermission("write");
258 
259  if ($a_presentation_mode) {
260  $this->tpl->setOnScreenMessage('info', $this->lng->txt("mcst_view_abandoned"));
261  return;
262  }
263 
264  if ($a_presentation_mode) {
265  $this->addContentSubTabs("content");
266  } else {
267  $this->addContentSubTabs("manage");
268  }
269 
270  $med_items = $this->object->getSortedItemsArray();
271 
272  if ($a_presentation_mode) {
273  $table_gui = new ilMediaCastTableGUI($this, "showContent", false, true);
274  } else {
275  $table_gui = new ilMediaCastTableGUI($this, "listItems");
276  }
277 
278  $table_gui->setData($med_items);
279 
280  if ($ilAccess->checkAccess("write", "", $this->requested_ref_id) && !$a_presentation_mode) {
281  if (in_array($this->object->getViewMode(), [
285  ], true)) {
286  $ilToolbar->addButton($lng->txt("add"), $this->ctrl->getLinkTargetByClass("ilMediaCreationGUI", ""));
287  } else {
288  $ilToolbar->addButton($lng->txt("add"), $this->ctrl->getLinkTarget($this, "addCastItem"));
289  }
290 
291  $table_gui->addMultiCommand("confirmDeletionItems", $lng->txt("delete"));
292  $table_gui->setSelectAllCheckbox("item_id");
293  }
294 
295  $new_table = $this->getManageTableGUI();
296 
297  $script = <<<EOT
298 <script>
299  window.addEventListener('load', (event) => {
300  $(document).on('hidden.bs.modal', (e) => {
301  $('.modal-body').html('');
302  });
303  $(document).on('shown.bs.modal', (e) => {
304  window.dispatchEvent(new Event('resize'));
305  });
306  });
307 </script>
308 EOT;
309  $tpl->setContent($this->gui->ui()->renderer()->render($new_table->get()) . $script);
310  }
311 
312  public function tableCommandObject(): void
313  {
314  $new_table = $this->getManageTableGUI();
315  $new_table->handleCommand();
316  }
317 
319  {
320  return $this->gui->getMediaCastManageTableGUI($this, "tableCommand");
321  }
322 
323  public function getFeedLink(): string
324  {
325  $public_feed = ilBlockSetting::_lookup(
326  "news",
327  "public_feed",
328  0,
329  $this->object->getId()
330  );
331  $url = "";
332  // rss icon/link
333  if ($public_feed) {
334  $news_set = new ilSetting("news");
335  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
336  if ($enable_internal_rss) {
337  $url = ILIAS_HTTP_PATH . "/feed.php?client_id=" . rawurlencode(CLIENT_ID) . "&" . "ref_id=" . $this->requested_ref_id;
338  }
339  }
340  return $url;
341  }
342 
346  public function addCastItemObject(): void
347  {
348  $tpl = $this->tpl;
349 
350  $this->checkPermission("write");
351 
352  $this->initAddCastItemForm();
353  $tpl->setContent($this->form_gui->getHTML());
354  }
355 
356  public function editCastItemObject(): void
357  {
358  $item_id = $this->mc_request->getItemId();
359  $this->ctrl->setParameterByClass(self::class, "item_id", $item_id);
360 
361  $tpl = $this->tpl;
362  $ilToolbar = $this->toolbar;
363  $ilCtrl = $this->ctrl;
364 
365  $this->checkPermission("write");
366 
367  $this->mcst_item = new ilNewsItem(
368  $this->mc_request->getItemId()
369  );
370 
371  // conversion toolbar
372  $this->video_gui->addPreviewExtractionToToolbar(
373  $this->mcst_item->getMobId(),
374  self::class
375  );
376 
377  $this->initAddCastItemForm("edit");
378  $this->getCastItemValues($item_id);
379  $tpl->setContent($this->form_gui->getHTML());
380  }
381 
382  public function finishSingleUpload(int $mob_id): void
383  {
384  foreach ($this->object->getSortedItemsArray() as $item) {
385  if ($mob_id == $item["mob_id"]) {
386  $this->ctrl->setParameter($this, "item_id", $item["id"]);
387  $this->ctrl->redirect($this, "editCastItem");
388  }
389  }
390  $this->ctrl->redirect($this, "listItems");
391  }
392 
393  protected function onMobUpdate(int $mob_id): void
394  {
395  foreach ($this->object->getSortedItemsArray() as $item) {
396  if ($mob_id == $item["mob_id"]) {
397  $mob = new ilObjMediaObject($item["mob_id"]);
398  $mc_item = new ilNewsItem($item["id"]);
399  $mc_item->setTitle($mob->getTitle());
400  $mc_item->setContent($mob->getLongDescription());
401  $mc_item->update();
402  }
403  }
404  }
405 
406  public function initAddCastItemForm(string $a_mode = "create"): void
407  {
408  $lng = $this->lng;
409  $ilCtrl = $this->ctrl;
410  $ilTabs = $this->tabs;
411 
412  $this->checkPermission("write");
413  $ilTabs->activateTab("edit_content");
414 
415  $lng->loadLanguageModule("mcst");
416 
417  $news_set = new ilSetting("news");
418  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
419 
420  $this->form_gui = new ilPropertyFormGUI();
421  $this->form_gui->setMultipart(true);
422 
423  // Property Title
424  $text_input = new ilTextInputGUI($lng->txt("title"), "title");
425  $text_input->setMaxLength(200);
426  $this->form_gui->addItem($text_input);
427 
428  // Property Content
429  $text_area = new ilTextAreaInputGUI($lng->txt("description"), "description");
430  $text_area->setRequired(false);
431  $this->form_gui->addItem($text_area);
432 
433  // Property Visibility
434  if ($enable_internal_rss) {
435  $radio_group = new ilRadioGroupInputGUI($lng->txt("access_scope"), "visibility");
436  $radio_option = new ilRadioOption($lng->txt("access_users"), "users");
437  $radio_group->addOption($radio_option);
438  $radio_option = new ilRadioOption($lng->txt("access_public"), "public");
439  $radio_group->addOption($radio_option);
440  $radio_group->setInfo($lng->txt("mcst_visibility_info"));
441  $radio_group->setRequired(true);
442  $radio_group->setValue($this->object->getDefaultAccess() == 0 ? "users" : "public");
443  $this->form_gui->addItem($radio_group);
444  }
445 
446  // Duration
447  if ($this->getObject()->getViewMode() !== ilObjMediaCast::VIEW_IMG_GALLERY) {
448  $dur = new ilDurationInputGUI($lng->txt("mcst_duration"), "duration");
449  $dur->setInfo($lng->txt("mcst_duration_info"));
450  $dur->setShowDays(false);
451  $dur->setShowHours(true);
452  $dur->setShowSeconds(true);
453  $this->form_gui->addItem($dur);
454  }
455 
456  foreach (ilObjMediaCast::$purposes as $purpose) {
457  if ($purpose == "VideoAlternative" &&
458  $a_mode == "create") {
459  continue;
460  }
461 
462  $section = new ilFormSectionHeaderGUI();
463  $section->setTitle($lng->txt("mcst_" . strtolower($purpose) . "_title"));
464  $this->form_gui->addItem($section);
465  if ($a_mode != "create") {
466  $value = new ilHiddenInputGUI("value_" . $purpose);
467  $label = new ilNonEditableValueGUI($lng->txt("value"));
468  $label->setPostVar("label_value_" . $purpose);
469  $label->setInfo($lng->txt("mcst_current_value_info"));
470  $this->form_gui->addItem($label);
471  $this->form_gui->addItem($value);
472  }
473  $file = new ilFileInputGUI($lng->txt("file"), "file_" . $purpose);
474  $file->setSuffixes($this->mc_manager->getSuffixesForViewMode(
475  $this->object->getViewMode()
476  ));
477  $this->form_gui->addItem($file);
478  $text_input = new ilRegExpInputGUI($lng->txt("url"), "url_" . $purpose);
479  $text_input->setPattern("/https?\:\/\/.+/i");
480  $text_input->setInfo($lng->txt("mcst_reference_info"));
481  $this->form_gui->addItem($text_input);
482  if ($purpose != "Standard") {
483  $clearCheckBox = new ilCheckboxInputGUI();
484  $clearCheckBox->setPostVar("delete_" . $purpose);
485  $clearCheckBox->setTitle($lng->txt("mcst_clear_purpose_title"));
486  $this->form_gui->addItem($clearCheckBox);
487  } else {
488  //
489  $ne = new ilNonEditableValueGUI($lng->txt("mcst_mimetype"), "mimetype_" . $purpose);
490  $this->form_gui->addItem($ne);
491 
492  // preview picure
493  $mob_id = 0;
494  if ($a_mode !== "create") {
495  $mcst_item = new ilNewsItem($this->mc_request->getItemId());
496  $mob_id = $mcst_item->getMobId();
497  }
498  $this->video_gui->addPreviewInput($this->form_gui, $mob_id);
499  }
500  }
501 
502  // save/cancel button
503  if ($a_mode == "create") {
504  $this->form_gui->setTitle($lng->txt("mcst_add_new_item"));
505  $this->form_gui->addCommandButton("saveCastItem", $lng->txt("save"));
506  } else {
507  $this->form_gui->setTitle($lng->txt("mcst_edit_item"));
508  $this->form_gui->addCommandButton("updateCastItem", $lng->txt("save"));
509  }
510  $this->form_gui->addCommandButton("listItems", $lng->txt("cancel"));
511  $this->form_gui->setFormAction($ilCtrl->getFormAction($this, "saveCastItem"));
512  }
513 
517  public function getCastItemValues(int $item_id): void
518  {
519  $lng = $this->lng;
520 
521  // get mob
522  $this->mcst_item = new ilNewsItem(
523  $item_id
524  );
525  $mob = new ilObjMediaObject($this->mcst_item->getMobId());
526 
527  $values = array();
528  $mediaItems = $this->getMediaItems(
529  $this->mc_request->getItemId()
530  );
531  if (count($mediaItems) > 0) {
532  foreach ($mediaItems as $med) {
533  if (!isset($values["title"])) {
534  // first item, so set title, description, ...
535  $values["title"] = $this->mcst_item->getTitle();
536  $values["description"] = $this->mcst_item->getContent();
537  $values["visibility"] = $this->mcst_item->getVisibility();
538  $length = explode(":", $this->mcst_item->getPlaytime());
539  $values["duration"] = array("hh" => $length[0], "mm" => $length[1], "ss" => $length[2]);
540  }
541 
542  $values["value_" . $med->getPurpose()] = (strlen($med->getLocation()) > 100) ? "..." . substr($med->getLocation(), strlen($med->getLocation()) - 100) : $med->getLocation();
543  $values["label_value_" . $med->getPurpose()] = (strlen($med->getLocation()) > 100) ? "..." . substr($med->getLocation(), strlen($med->getLocation()) - 100) : $med->getLocation();
544  $values["mimetype_" . $med->getPurpose()] = $med->getFormat();
545  }
546  }
547  foreach (ilObjMediaCast::$purposes as $purpose) {
548  if (!isset($values["value_" . $purpose])) {
549  $values["label_value_" . $purpose] = $lng->txt("none");
550  $values["value_" . $purpose] = $lng->txt("none");
551  }
552  }
553  $this->form_gui->setValuesByArray($values);
554  }
555 
556  public function saveCastItemObject(): void
557  {
558  return;
559  $tpl = $this->tpl;
560  $ilCtrl = $this->ctrl;
561  $ilUser = $this->user;
562  $lng = $this->lng;
563  $ilTabs = $this->tabs;
564 
565  $this->checkPermission("write");
566  $ilTabs->activateTab("edit_content");
567 
568  $this->initAddCastItemForm();
569 
570  if (!$this->form_gui->checkInput() ||
571  ($this->form_gui->getInput("url_Standard") == "" && !$_FILES['file_Standard']['tmp_name'])) {
572  $this->tpl->setOnScreenMessage('failure', $lng->txt("mcst_input_either_file_or_url"));
573  $this->populateFormFromPost();
574  } else {
575  // create dummy object in db (we need an id)
576  $mob = new ilObjMediaObject();
577  $mob->create();
578 
579  //handle standard purpose
580  $file = $this->createMediaItemForPurpose($mob, "Standard");
581 
582  // set title and description
583  // set title to basename of file if left empty
584  $title = $this->form_gui->getInput("title") != "" ? $this->form_gui->getInput("title") : basename($file);
585  $description = $this->form_gui->getInput("description");
586  $mob->setTitle($title);
587  $mob->setDescription($description);
588 
589  // save preview pic
590  $this->video_gui->savePreviewInput($this->form_gui, $mob->getId());
591 
592  // determine duration for standard purpose
593  $duration = $this->getDuration($file);
594 
595  // handle other purposes
596  foreach ($this->additionalPurposes as $purpose) {
597  // check if some purpose has been uploaded
598  $file_gui = $this->form_gui->getInput("file_" . $purpose);
599  $url_gui = $this->form_gui->getInput("url_" . $purpose);
600  if ($url_gui || $file_gui["size"] > 0) {
601  $this->createMediaItemForPurpose($mob, $purpose);
602  }
603  }
604 
605  $mob->update();
606 
607  if ($prevpic["size"] == 0) {
608  // re-read media object
609  $mob = new ilObjMediaObject($mob->getId());
610  $mob->generatePreviewPic(320, 240);
611  }
612 
613  //
614  // @todo: save usage
615  //
616 
617  $news_set = new ilSetting("news");
618  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
619 
620  // create new media cast item
621  $mc_item = new ilNewsItem();
622  $mc_item->setMobId($mob->getId());
623  $mc_item->setContentType(NEWS_AUDIO);
624  $mc_item->setContextObjId($this->object->getId());
625  $mc_item->setContextObjType($this->object->getType());
626  $mc_item->setUserId($ilUser->getId());
627  $mc_item->setPlaytime($duration);
628  $mc_item->setTitle($title);
629  $mc_item->setContent($description);
630  $mc_item->setLimitation(false);
631  if ($enable_internal_rss) {
632  $mc_item->setVisibility($this->form_gui->getInput("visibility"));
633  } else {
634  $mc_item->setVisibility("users");
635  }
636  $mc_item->create();
637 
638  $ilCtrl->redirect($this, "listItems");
639  }
640  }
641 
642  private function getDuration(ilMediaItem $media_item): string
643  {
644  $duration = isset($this->form_gui)
645  ? $this->form_gui->getInput("duration")
646  : array("hh" => 0, "mm" => 0, "ss" => 0);
647 
648  $duration_str = str_pad($duration["hh"], 2, "0", STR_PAD_LEFT) . ":" .
649  str_pad($duration["mm"], 2, "0", STR_PAD_LEFT) . ":" .
650  str_pad($duration["ss"], 2, "0", STR_PAD_LEFT);
651 
652  if ($duration["hh"] == 0 && $duration["mm"] == 0 && $duration["ss"] == 0) {
653  $media_item->determineDuration();
654  $d = $media_item->getDuration();
655  if ($d > 0) {
656  $duration_str = $this->object->getPlaytimeForSeconds($d);
657  }
658  }
659 
660  return $duration_str;
661  }
662 
666  private function createMediaItemForPurpose(
667  ilObjMediaObject $mob,
668  string $purpose
669  ): string {
670  $mediaItem = new ilMediaItem();
671  $mob->addMediaItem($mediaItem);
672  $mediaItem->setPurpose($purpose);
673  return $this->updateMediaItem($mob, $mediaItem);
674  }
675 
683  private function updateMediaItem(
684  ilObjMediaObject $mob,
685  ilMediaItem $mediaItem
686  ): string {
687  $locationType = "";
688  $location = "";
689  $file = "";
690  $purpose = $mediaItem->getPurpose();
691  $locationType = $mediaItem->getLocationType();
692  $url_gui = $this->form_gui->getInput("url_" . $purpose);
693  $file_gui = $this->form_gui->getInput("file_" . $purpose);
694  if ($url_gui) {
695  // http
696  $file = $this->form_gui->getInput("url_" . $purpose);
697  $title = basename($file);
698  $location = $this->form_gui->getInput("url_" . $purpose);
699  $locationType = "Reference";
700  } elseif ($file_gui["size"] > 0) {
701  // lokal
702  // determine and create mob directory, move uploaded file to directory
703  $mob_dir = ilObjMediaObject::_getDirectory($mob->getId());
704  if (!is_dir($mob_dir)) {
705  $mob->createDirectory();
706  } else {
707  $dir = LegacyPathHelper::createRelativePath($mob_dir);
708  $old_files = $this->filesystem->finder()->in([$dir])->exclude([$dir . '/mob_vpreview.png'])->files();
709  foreach ($old_files as $file) {
710  $this->filesystem->delete($file->getPath());
711  }
712  }
713 
714  $file_name = ilFileUtils::getASCIIFilename($_FILES['file_' . $purpose]['name']);
715  $file_name = str_replace(" ", "_", $file_name);
716 
717  $file = $mob_dir . "/" . $file_name;
718  $title = $file_name;
719  $locationType = "LocalFile";
720  $location = $title;
721  ilFileUtils::moveUploadedFile($_FILES['file_' . $purpose]['tmp_name'], $file_name, $file);
723  }
724 
725  // check if not automatic mimetype detection
726  $format = ilObjMediaObject::getMimeType($mediaItem->getLocation(), ($locationType === "Reference"));
727  $mediaItem->setFormat($format);
728 
729  if ($file != "") {
730  // get mime type, if not already set!
731  if ($format === "") {
732  $format = ilObjMediaObject::getMimeType($file, ($locationType === "Reference"));
733  }
734 
735  // set real meta and object data
736  $mediaItem->setFormat($format);
737  $mediaItem->setLocation($location);
738  $mediaItem->setLocationType($locationType);
739  $mediaItem->setHAlign("Left");
740  $mediaItem->setHeight(self::isAudio($format) ? 0 : 180);
741  $mob->generatePreviewPic(320, 240);
742  }
743 
744  if (($purpose === "Standard") && isset($title)) {
745  $mob->setTitle($title);
746  }
747 
748  return $file;
749  }
750 
754  public function updateCastItemObject(): void
755  {
756  $ilCtrl = $this->ctrl;
757  $ilUser = $this->user;
758  $ilLog = $this->log;
759  $title = "";
760  $description = "";
761  $file = null;
762 
763  $this->checkPermission("write");
764 
765  $this->initAddCastItemForm("edit");
766 
767  if ($this->form_gui->checkInput()) {
768  // create new media cast item
769  $mc_item = new ilNewsItem(
770  $this->mc_request->getItemId()
771  );
772  $mob_id = $mc_item->getMobId();
773 
774  // create dummy object in db (we need an id)
775  $mob = new ilObjMediaObject($mob_id);
776 
777 
778  foreach (ilObjMediaCast::$purposes as $purpose) {
779  if ($this->form_gui->getInput("delete_" . $purpose)) {
780  $mob->removeMediaItem($purpose);
781  $ilLog->write("Mcst: deleting purpose $purpose");
782  continue;
783  }
784  $media_item = $mob->getMediaItem($purpose);
785  $url_gui = $this->form_gui->getInput("url_" . $purpose);
786  $file_gui = $this->form_gui->getInput("file_" . $purpose);
787 
788  if ($media_item == null) {
789  if ($purpose != "Standard" &&
790  ($url_gui || $file_gui["size"] > 0)) {
791  // check if we added an additional purpose when updating
792  // either by url or by file
793  $file = $this->createMediaItemForPurpose($mob, $purpose);
794  }
795  } else {
796  $file = $this->updateMediaItem($mob, $media_item);
797  }
798 
799  if ($purpose == "Standard") {
800  if ($this->getObject()->getViewMode() !== ilObjMediaCast::VIEW_IMG_GALLERY) {
801  $duration = $this->getDuration($media_item);
802  }
803  $title = $this->form_gui->getInput("title") != "" ? $this->form_gui->getInput("title") : basename($file);
804  $description = $this->form_gui->getInput("description");
805 
806  $mob->setTitle($title);
807  $mob->setDescription($description);
808 
809  $this->video_gui->savePreviewInput($this->form_gui, $mob->getId());
810  }
811  }
812 
813  // set real meta and object data
814  $mob->update();
815 
816  //
817  // @todo: save usage
818  //
819 
820  $news_set = new ilSetting("news");
821  $enable_internal_rss = $news_set->get("enable_rss_for_internal");
822 
823  $mc_item->setUserId($ilUser->getId());
824  if (isset($duration)) {
825  $mc_item->setPlaytime($duration);
826  $dur_arr = explode(":", $duration);
827  $seconds = ((int) $dur_arr[0] * 60 * 60) + ((int) $dur_arr[1] * 60) + ((int) $dur_arr[2]);
828  $st_med = $mob->getMediaItem("Standard");
829  $st_med->setDuration($seconds);
830  $st_med->update();
831  }
832  $mc_item->setTitle($title);
833  $mc_item->setContent($description);
834  if ($enable_internal_rss) {
835  $mc_item->setVisibility($this->form_gui->getInput("visibility"));
836  }
837  $mc_item->update();
838 
839  $ilCtrl->redirect($this, "listItems");
840  } else {
841  $this->populateFormFromPost();
842  }
843  }
844 
845  public function showCastItemObject(): void
846  {
847  $f = $this->gui->ui()->factory();
848  $item_id = $this->mc_request->getItemId();
849  $news = new ilNewsItem($item_id);
850  $mob = new ilObjMediaObject($news->getMobId());
851  $med = $mob->getMediaItem("Standard");
852  $comp = null;
853  if ($med) {
854  $file = $mob->getStandardSrc();
855  if ($this->media_type->isAudio($med->getFormat())) {
856  $comp = $f->player()->audio($file, "");
857  } elseif ($this->media_type->isVideo($med->getFormat())) {
858  $comp = $f->player()->video($file);
859  } elseif ($this->media_type->isImage($med->getFormat())) {
860  $comp = $f->image()->responsive($file, $mob->getTitle());
861  }
862 
863  }
864  if (is_null($comp)) {
865  $comp = $f->messageBox()->info($this->lng->txt("mcst_item_not_found"));
866  }
867  $this->gui->modal(
868  $this->lng->txt("mcst_preview"),
869  $this->lng->txt("close")
870  )->content([$comp])->send();
871  }
872 
873  public function confirmItemDeletionObject(): void
874  {
875  $items = [];
876  $f = $this->gui->ui()->factory();
877  $r = $this->gui->ui()->renderer();
878  $ids = $this->mc_request->getItemIds();
879  if (current($ids) === 'ALL_OBJECTS') {
880  $arr = $this->object->getSortedItemsArray();
881  $ids = array_keys($arr);
882  }
883 
884  foreach ($ids as $id) {
885  $item = new ilNewsItem($id);
886  $items[] = $f->modal()->interruptiveItem()->keyValue($id, "", $item->getTitle());
887  }
888  $this->gui->send($r->renderAsync([
889  $f->modal()->interruptive(
890  $this->lng->txt("mcst_confirm_deletion"),
891  $this->lng->txt("info_delete_sure"),
892  $this->ctrl->getFormAction($this, "deleteItems")
893  )->withAffectedItems($items)
894  ]));
895  }
896 
897  public function confirmDeletionItemsObject(): void
898  {
899  $ilCtrl = $this->ctrl;
900  $lng = $this->lng;
901  $tpl = $this->tpl;
902  $ilTabs = $this->tabs;
903 
904  $this->checkPermission("write");
905  $ilTabs->activateTab("edit_content");
906 
907  $ids = $this->mc_request->getItemIds();
908  if (count($ids) == 0) {
909  $this->listItemsObject();
910  return;
911  }
912 
913  $c_gui = new ilConfirmationGUI();
914 
915  // set confirm/cancel commands
916  $c_gui->setFormAction($ilCtrl->getFormAction($this, "deleteItems"));
917  $c_gui->setHeaderText($lng->txt("info_delete_sure"));
918  $c_gui->setCancel($lng->txt("cancel"), "listItems");
919  $c_gui->setConfirm($lng->txt("confirm"), "deleteItems");
920 
921  // add items to delete
922  foreach ($ids as $item_id) {
923  $item = new ilNewsItem($item_id);
924  $c_gui->addItem(
925  "item_id[]",
926  $item_id,
927  $item->getTitle(),
928  ilUtil::getImagePath("standard/icon_mcst.svg")
929  );
930  }
931 
932  $tpl->setContent($c_gui->getHTML());
933  }
934 
935  public function deleteItemsObject(): void
936  {
937  $ilCtrl = $this->ctrl;
938 
939  $this->checkPermission("write");
940 
941  // delete all selected news items
942  $ids = $this->mc_request->getItemIds();
943  foreach ($ids as $item_id) {
944  $mc_item = new ilNewsItem($item_id);
945  $mc_item->delete();
946  }
947  $this->object->saveOrder(array_map(function ($i) {
948  return $i["id"];
949  }, $this->object->readItems()));
950  $ilCtrl->redirect($this, "listItems");
951  }
952 
956  public function downloadItemObject(): void
957  {
958  $ilCtrl = $this->ctrl;
959  $ilUser = $this->user;
960 
961  $this->checkPermission("read");
962  $news_item = new ilNewsItem($this->mc_request->getItemId());
963  $this->object->handleLPUpdate($ilUser->getId(), $news_item->getMobId());
964  if (!$news_item->deliverMobFile(
965  "Standard",
966  $this->mc_request->getPresentation()
967  )) {
968  $ilCtrl->redirect($this, "showContent");
969  }
970  exit;
971  }
972 
973  public function determinePlaytimeObject(): void
974  {
975  $ilCtrl = $this->ctrl;
976  $lng = $this->lng;
977 
978  $mc_item = new ilNewsItem($this->mc_request->getItemId());
979  $mob = $mc_item->getMobId();
980  $mob = new ilObjMediaObject($mob);
981  $mob_dir = ilObjMediaObject::_getDirectory($mob->getId());
982  $m_item = $mob->getMediaItem("Standard");
983 
984  $success = false;
985 
986  $m_item->determineDuration();
987  $dur = $m_item->getDuration();
988  if ($dur > 0) {
989  $mc_item->setPlaytime($this->object->getPlaytimeForSeconds($dur));
990  $mc_item->update();
991  $success = true;
992  $this->tpl->setOnScreenMessage('success', $lng->txt("mcst_set_playtime"), true);
993  }
994 
995  if (!$success) {
996  $this->tpl->setOnScreenMessage('failure', $lng->txt("mcst_unable_to_determin_playtime"), true);
997  }
998 
999  $ilCtrl->redirect($this, "listItems");
1000  }
1001 
1005  public function infoScreenObject(): void
1006  {
1007  if (!$this->checkPermissionBool("read")) {
1008  $this->checkPermission("visible");
1009  }
1010  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
1011  }
1012 
1013  public function infoScreen(): void
1014  {
1015  $ilTabs = $this->tabs;
1016 
1017  $ilTabs->activateTab("id_info");
1018 
1019  if (!$this->checkPermissionBool("read")) {
1020  $this->checkPermission("visible");
1021  }
1022 
1023  $info = new ilInfoScreenGUI($this);
1024 
1025  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
1026  $info->enablePrivateNotes();
1027 
1028  // general information
1029  $this->lng->loadLanguageModule("meta");
1030  $this->lng->loadLanguageModule("mcst");
1031  $med_items = $this->object->getItemsArray();
1032  $info->addSection($this->lng->txt("meta_general"));
1033  $info->addProperty(
1034  $this->lng->txt("mcst_nr_items"),
1035  count($med_items)
1036  );
1037 
1038  if (count($med_items) > 0) {
1039  $cur = current($med_items);
1040  $last = ilDatePresentation::formatDate(new ilDateTime($cur["creation_date"], IL_CAL_DATETIME));
1041  } else {
1042  $last = "-";
1043  }
1044 
1045  $info->addProperty($this->lng->txt("mcst_last_submission"), $last);
1046 
1047  // forward the command
1048  $this->ctrl->forwardCommand($info);
1049  }
1050 
1051  protected function setTabs(): void
1052  {
1053  $ilAccess = $this->access;
1054  $ilTabs = $this->tabs;
1055  $lng = $this->lng;
1056  $ilHelp = $this->help;
1057 
1058  $ilHelp->setScreenIdComponent("mcst");
1059 
1060  // list items
1061  if ($ilAccess->checkAccess('read', "", $this->object->getRefId())) {
1062  $ilTabs->addTab(
1063  "content",
1064  $lng->txt("content"),
1065  $this->ctrl->getLinkTarget($this, "showContent")
1066  );
1067  }
1068 
1069  // info screen
1070  if ($ilAccess->checkAccess('visible', "", $this->object->getRefId()) ||
1071  $ilAccess->checkAccess('read', "", $this->object->getRefId())) {
1072  $ilTabs->addTab(
1073  "id_info",
1074  $lng->txt("info_short"),
1075  $this->ctrl->getLinkTargetByClass("ilinfoscreengui", "showSummary")
1076  );
1077  }
1078 
1079  // settings
1080  if ($ilAccess->checkAccess('write', "", $this->object->getRefId())) {
1081  $ilTabs->addTab(
1082  "id_settings",
1083  $lng->txt("settings"),
1084  $this->ctrl->getLinkTargetByClass(SettingsGUI::class, "")
1085  );
1086  }
1087 
1088  if (ilLearningProgressAccess::checkAccess($this->object->getRefId())) {
1089  $ilTabs->addTab(
1090  'learning_progress',
1091  $lng->txt('learning_progress'),
1092  $this->ctrl->getLinkTargetByClass(array(__CLASS__, 'illearningprogressgui'), '')
1093  );
1094  }
1095 
1096  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
1097  $mdgui = new ilObjectMetaDataGUI($this->object);
1098  $mdtab = $mdgui->getTab();
1099  if ($mdtab) {
1100  $this->tabs_gui->addTab(
1101  "meta_data",
1102  $this->lng->txt("meta_data"),
1103  $mdtab
1104  );
1105  }
1106  }
1107 
1108  // export
1109  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
1110  $ilTabs->addTab(
1111  "export",
1112  $lng->txt("export"),
1113  $this->ctrl->getLinkTargetByClass("ilexportgui", "")
1114  );
1115  }
1116 
1117  // edit permissions
1118  if ($ilAccess->checkAccess('edit_permission', "", $this->object->getRefId())) {
1119  $ilTabs->addTab(
1120  "id_permissions",
1121  $lng->txt("perm_settings"),
1122  $this->ctrl->getLinkTargetByClass("ilpermissiongui", "perm")
1123  );
1124  }
1125  }
1126 
1127  public function addContentSubTabs(
1128  string $a_active = "content"
1129  ): void {
1130  $ilTabs = $this->tabs;
1131  $ilAccess = $this->access;
1132  $lng = $this->lng;
1133 
1134  $ilTabs->addSubTab(
1135  "content",
1136  $lng->txt("view"),
1137  $this->ctrl->getLinkTarget($this, "showContent")
1138  );
1139 
1140  if ($ilAccess->checkAccess("write", "", $this->requested_ref_id)) {
1141  $ilTabs->addSubTab(
1142  "manage",
1143  $lng->txt("mcst_manage"),
1144  $this->ctrl->getLinkTarget($this, "listItems")
1145  );
1146 
1147  if ($this->object->getOrder() == ilObjMediaCast::ORDER_MANUAL) {
1148  $ilTabs->addSubTab(
1149  "sorting",
1150  $lng->txt("mcst_ordering"),
1151  $this->ctrl->getLinkTarget($this, "editOrder")
1152  );
1153  }
1154  }
1155 
1156  $ilTabs->activateSubTab($a_active);
1157  $ilTabs->activateTab("content");
1158  }
1159 
1160  public function editSettingsObject(): void
1161  {
1162  $this->editObject();
1163  }
1164 
1165  protected function addLocatorItems(): void
1166  {
1167  $ilLocator = $this->locator;
1168 
1169  if (is_object($this->object)) {
1170  $ilLocator->addItem($this->object->getTitle(), $this->ctrl->getLinkTarget($this, "showContent"), "", $this->requested_ref_id);
1171  }
1172  }
1173 
1174  public static function _goto(string $a_target): void
1175  {
1176  global $DIC;
1177  $main_tpl = $DIC->ui()->mainTemplate();
1178 
1179  $ilAccess = $DIC->access();
1180  $lng = $DIC->language();
1181  $ctrl = $DIC->ctrl();
1182 
1183  if ($ilAccess->checkAccess("read", "", $a_target)) {
1184  $ctrl->setParameterByClass("ilobjmediacastgui", "ref_id", $a_target);
1185  //exit;
1186  $ctrl->redirectByClass(["ilmediacasthandlergui", "ilobjmediacastgui"], "showContent");
1187  } elseif ($ilAccess->checkAccess("visible", "", $a_target)) {
1188  ilObjectGUI::_gotoRepositoryNode($a_target, "infoScreen");
1189  } elseif ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
1190  $main_tpl->setOnScreenMessage('failure', sprintf(
1191  $lng->txt("msg_no_perm_read_item"),
1193  ));
1195  }
1196 
1197  throw new ilPermissionException($lng->txt("msg_no_perm_read"));
1198  }
1199 
1200  protected static function isAudio(string $extension): bool
1201  {
1202  return strpos($extension, "audio") !== false;
1203  }
1204 
1208  protected function getMediaItem(int $id): ilMediaItem
1209  {
1210  $this->mcst_item = new ilNewsItem($id);
1211  // create dummy object in db (we need an id)
1212  $mob = new ilObjMediaObject($this->mcst_item->getMobId());
1213  return $mob->getMediaItem("Standard");
1214  }
1215 
1216  protected function getMediaItems(int $id): array
1217  {
1218  $this->mcst_item = new ilNewsItem($id);
1219  // create dummy object in db (we need an id)
1220  $mob = new ilObjMediaObject($this->mcst_item->getMobId());
1221  return $mob->getMediaItems();
1222  }
1223 
1224  private function populateFormFromPost(): void
1225  {
1226  $tpl = $this->tpl;
1227  $this->form_gui->setValuesByPost();
1228 
1229  //issue: we have to display the current settings
1230  // problem: POST does not contain values of disabled text fields
1231  // solution: use hidden field and label to display-> here we need to synchronize the labels
1232  // with the values from the hidden fields.
1233  foreach (ilObjMediaCast::$purposes as $purpose) {
1234  if ($this->form_gui->getInput("value_" . $purpose)) {
1235  $input = $this->form_gui->getItemByPostVar("label_value_" . $purpose);
1236  $input->setValue($this->form_gui->getInput("value_" . $purpose));
1237  }
1238  }
1239 
1240  $this->form_gui->setValuesByPost();
1241  $tpl->setContent($this->form_gui->getHTML());
1242  }
1243 
1244  protected function editOrderObject(): void
1245  {
1246  $ilTabs = $this->tabs;
1247  $lng = $this->lng;
1248  $tpl = $this->tpl;
1249 
1250  $this->checkPermission("write");
1251  $ilTabs->activateTab("edit_content");
1252 
1253  $this->addContentSubTabs("sorting");
1254 
1255  // sort by order setting
1256  switch ($this->object->getOrder()) {
1260  $this->listItemsObject();
1261  return;
1262 
1264  // sub-tabs
1265  break;
1266  }
1267 
1268  $table_gui = new ilMediaCastTableGUI($this, "editOrder", true);
1269 
1270  $table_gui->setTitle($lng->txt("mcst_media_cast"));
1271  $table_gui->setData($this->object->getSortedItemsArray());
1272 
1273  $table_gui->addCommandButton("saveOrder", $lng->txt("mcst_save_order"));
1274 
1275  $tpl->setContent($table_gui->getHTML());
1276  }
1277 
1278  public function saveOrderObject(): void
1279  {
1280  $lng = $this->lng;
1281 
1282  $ids = $this->mc_request->getItemIds();
1283  asort($ids);
1284 
1285  $items = array();
1286  foreach (array_keys($ids) as $id) {
1287  $items[] = $id;
1288  }
1289  $this->object->saveOrder($items);
1290 
1291  $this->tpl->setOnScreenMessage('success', $lng->txt("settings_saved"), true);
1292  $this->ctrl->redirect($this, "editOrder");
1293  }
1294 
1298 
1299  public function showContentObject(): void
1300  {
1301  $tpl = $this->tpl;
1302  $ilUser = $this->user;
1303  $ilTabs = $this->tabs;
1304 
1305  // need read events for parent for LP statistics
1307  "mcst",
1308  $this->object->getRefId(),
1309  $this->object->getId(),
1310  $ilUser->getId()
1311  );
1312 
1313  // trigger LP update
1314  ilLPStatusWrapper::_updateStatus($this->object->getId(), $ilUser->getId());
1315 
1316  if ($this->object->getViewMode() == ilObjMediaCast::VIEW_GALLERY) {
1317  $this->showGallery();
1318  } elseif ($this->object->getViewMode() == ilObjMediaCast::VIEW_IMG_GALLERY) {
1319  $view = new \McstImageGalleryGUI($this->object, $this->tpl, $this->getFeedLink());
1320  $view->setCompletedCallback($this->ctrl->getLinkTarget(
1321  $this,
1322  "handlePlayerCompletedEvent",
1323  "",
1324  true,
1325  false
1326  ));
1327  $this->tabs->activateTab("content");
1328  $this->addContentSubTabs("content");
1329  $tpl->setContent($this->ctrl->getHTML($view));
1330  } elseif ($this->object->getViewMode() == ilObjMediaCast::VIEW_PODCAST) {
1331  $view = new \McstPodcastGUI($this->object, $this->tpl, $this->getFeedLink());
1332  $this->tabs->activateTab("content");
1333  $this->addContentSubTabs("content");
1334  $tpl->setContent($this->ctrl->getHTML($view));
1335  } elseif ($this->object->getViewMode() == ilObjMediaCast::VIEW_VCAST) {
1336  $ilTabs->activateTab("content");
1337  $this->addContentSubTabs("content");
1338  $view = new \ILIAS\MediaCast\Presentation\VideoViewGUI($this->object, $tpl, $this->getFeedLink());
1339  $view->setCompletedCallback($this->ctrl->getLinkTarget(
1340  $this,
1341  "handlePlayerCompletedEvent",
1342  "",
1343  true,
1344  false
1345  ));
1346  $view->setAutoplayCallback($this->ctrl->getLinkTarget(
1347  $this,
1348  "handleAutoplayTrigger",
1349  "",
1350  true,
1351  false
1352  ));
1353  $view->show();
1354  } else {
1355  $this->listItemsObject(true);
1356  }
1357 
1358  $tpl->setPermanentLink($this->object->getType(), $this->object->getRefId());
1359  }
1360 
1361  public function showGallery(): void
1362  {
1363  $tpl = $this->tpl;
1364  $ilTabs = $this->tabs;
1365  $ilCtrl = $this->ctrl;
1366 
1367  $this->tpl->setOnScreenMessage('info', $this->lng->txt("mcst_view_abandoned"));
1368  }
1369 
1370  public function extractPreviewImageObject(): void
1371  {
1372  $ilCtrl = $this->ctrl;
1373  $this->checkPermission("write");
1374  $this->mcst_item = new ilNewsItem($this->mc_request->getItemId());
1375  $this->video_gui->handleExtractionRequest(
1376  $this->mcst_item->getMobId()
1377  );
1378  $ilCtrl->redirect($this, "editCastItem");
1379  }
1380 
1381  public function handlePlayerEventObject(): void
1382  {
1383  if ($this->mc_request->getEvent() === "play") {
1384  $player = explode("_", $this->mc_request->getPlayer());
1385  $news_id = (int) $player[1];
1386  $item = new ilNewsItem($news_id);
1387  $item->increasePlayCounter();
1388 
1389  $mob_id = $item->getMobId();
1390  if ($mob_id) {
1391  $ilUser = $this->user;
1392  $this->object->handleLPUpdate($ilUser->getId(), $mob_id);
1393  }
1394  }
1395  exit;
1396  }
1397 
1398  protected function handlePlayerCompletedEventObject(): void
1399  {
1400  $mob_id = $this->mc_request->getMobId();
1401  if ($mob_id > 0) {
1402  $ilUser = $this->user;
1403  $this->object->handleLPUpdate($ilUser->getId(), $mob_id);
1404  }
1405  exit;
1406  }
1407 
1408  protected function afterUpload($mob_ids): void
1409  {
1410  $this->addMobsToCast($mob_ids, "", false);
1411  }
1412 
1413  protected function afterUrlSaving(int $mob_id, string $long_desc): void
1414  {
1415  $this->addMobsToCast([$mob_id], $long_desc);
1416  }
1417 
1418  protected function addMobsToCast(
1419  array $mob_ids,
1420  string $long_desc = "",
1421  bool $redirect = true,
1422  bool $extract = false
1423  ): void {
1424  $ctrl = $this->ctrl;
1425  $user = $this->user;
1426 
1427  $item_ids = [];
1428  foreach ($mob_ids as $mob_id) {
1429  $item_ids[] = $this->object->addMobToCast($mob_id, $user->getId(), $long_desc, $extract);
1430  }
1431 
1432  if ($redirect) {
1433  if (count($item_ids) === 1) {
1434  $ctrl->setParameter($this, "item_id", $item_ids[0]);
1435  $ctrl->redirect($this, "editCastItem");
1436  }
1437  $ctrl->redirect($this, "listItems");
1438  }
1439  }
1440 
1441  protected function afterPoolInsert(array $mob_ids): void
1442  {
1443  $this->addMobsToCast($mob_ids, "", true, true);
1444  }
1445 
1446  protected function handleAutoplayTriggerObject(): void
1447  {
1448  $this->user->writePref(
1449  "mcst_autoplay",
1450  $this->mc_request->getAutoplay()
1451  );
1452  exit;
1453  }
1454 
1455  protected function getCommentGUI(): ilCommentGUI
1456  {
1457  return $this->gui->comments()->commentGUI(
1458  $this->object->getRefId(),
1459  $this->mc_request->getItemId()
1460  );
1461  }
1462 
1463  protected function showCommentsObject(): void
1464  {
1465  echo $this->getCommentGUI()->getListHTML() . "<script>ilNotes.init(null);</script>";
1466  exit;
1467  }
1468 
1469  protected function renderVideoObject(): void
1470  {
1471  $mob_id = $this->mc_request->getMobId();
1472  $html = $this->mob_player_gui->wrapper()->renderComponent(new ilObjMediaObject($mob_id));
1473  $this->gui->httpUtil()->sendString($html);
1474  }
1475 }
ILIAS MediaCast MediaCastManager $mc_manager
getDuration(ilMediaItem $media_item)
This class represents a duration (typical hh:mm:ss) property in a property form.
This class represents an option in a radio group.
Class ilObjectMetaDataGUI.
getMediaItem(int $id)
Get MediaItem for id and updates local variable mcst_item.
const IL_CAL_DATETIME
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
GUI class for the workflow of copying objects.
const ROOT_FOLDER_ID
Definition: constants.php:32
$location
Definition: buildRTE.php:22
prepareOutput(bool $show_sub_objects=true)
This class represents a file property in a property form.
__construct( $a_data, int $a_id, bool $a_call_by_reference, bool $a_prepare_output=true)
setInfo(string $a_info)
listItemsObject(bool $a_presentation_mode=false)
Help GUI class.
ILIAS MediaObjects Player GUIService $mob_player_gui
addMediaItem(ilMediaItem $a_item)
setPattern(string $pattern)
setPlaytime(string $a_playtime)
static _gotoRepositoryNode(int $ref_id, string $cmd="")
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
setLocation(string $a_location)
createDirectory()
Create file directory of media object.
static isAudio(string $extension)
setSuffixes(array $a_suffixes)
loadLanguageModule(string $a_module)
Load language module.
setTitle(string $title)
$url
Definition: shib_logout.php:66
afterUrlSaving(int $mob_id, string $long_desc)
setFormat(string $a_format)
static checkAccess(int $a_ref_id, bool $a_allow_only_read=true)
check access to learning progress
$duration
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
static _lookupObjId(int $ref_id)
ILIAS MediaObjects MediaType MediaTypeManager $media_type
static getASCIIFilename(string $a_filename)
setHAlign(string $a_halign)
set horizontal align
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static renameExecutables(string $a_dir)
static _goto(string $a_target)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilLanguage $lng
This class represents a hidden form property in a property form.
static _getDirectory(int $a_mob_id)
Get absolute directory.
This class represents a property in a property form.
ilGlobalTemplateInterface $tpl
static _lookup(string $a_type, string $a_setting, int $a_user=0, int $a_block_id=0)
Lookup setting from database.
static getMimeType(string $a_file, bool $a_external=false)
get mime type for file
static _lookupTitle(int $obj_id)
addCastItemObject()
Add media cast item.
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
setScreenIdComponent(string $a_comp)
updateCastItemObject()
Update cast item.
Class ilObjectGUI Basic methods of all Output classes.
addContentSubTabs(string $a_active="content")
const CLIENT_ID
Definition: constants.php:41
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
global $DIC
Definition: shib_login.php:22
getMediaItem(string $a_purpose)
get item for media purpose
ilPropertyFormGUI $form_gui
This class represents a regular expression input property in a property form.
Class ilMediaItem Media Item, component of a media object (file or reference)
updateMediaItem(ilObjMediaObject $mob, ilMediaItem $mediaItem)
Update media item from form.
ilToolbarGUI $toolbar
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
initAddCastItemForm(string $a_mode="create")
getCastItemValues(int $item_id)
Get cast item values into form.
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
StandardGUIRequest $mc_request
setRequired(bool $a_required)
setHeight(string $a_height)
static array $purposes
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static redirect(string $a_script)
activateTab(string $a_id)
A news item can be created by different sources.
setPermanentLink(string $a_type, ?int $a_id, string $a_append="", string $a_target="", string $a_title="")
Generates and sets a permanent ilias link.
__construct(Container $dic, ilPlugin $plugin)
downloadItemObject()
Download news media item.
Comment GUI.
afterSave(ilObject $new_object)
This class represents a text area property in a property form.
ilAccessHandler $access
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
ILIAS MediaCast InternalGUIService $gui
const NEWS_AUDIO
TableGUI class for table NewsForContext.
addMobsToCast(array $mob_ids, string $long_desc="", bool $redirect=true, bool $extract=false)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
setLocationType(string $a_type)
createMediaItemForPurpose(ilObjMediaObject $mob, string $purpose)
Handle media item for given purpose.
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addHeaderAction()
Add header action menu.
ilLocatorGUI $locator
ilSetting $settings
Class ilObjUserTrackingGUI.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
infoScreenObject()
This one is called from the info button in the repository.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
$r