ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjMediaPoolGUI.php
Go to the documentation of this file.
1 <?php
2 
28 
42 {
43  protected \ILIAS\MediaPool\InternalDomainService $domain;
44  protected \ILIAS\COPage\Xsl\XslManager $xsl;
48  protected string $mode;
49  protected int $mep_item_id = 0;
51  protected ilTabsGUI $tabs;
52  protected ilHelpGUI $help;
54  protected FileUpload $upload;
55  protected ilLogger $mep_log;
56  public bool $output_prepared;
57 
58  public function __construct(
59  int $a_id = 0,
60  int $a_id_type = self::REPOSITORY_NODE_ID,
61  int $a_parent_node_id = 0
62  ) {
63  global $DIC;
64 
65  $this->mep_request = $DIC->mediaPool()
66  ->internal()
67  ->gui()
68  ->standardRequest();
69  $this->mep_item_id = $this->mep_request->getItemId();
70 
71  parent::__construct($a_id, $a_id_type, $a_parent_node_id);
72 
73  $this->tabs = $DIC->tabs();
74  $this->locator = $DIC["ilLocator"];
75  $this->help = $DIC["ilHelp"];
76 
77  $this->main_tpl = $DIC->ui()->mainTemplate();
78 
79  $this->upload = $DIC->upload();
80 
81  $this->mep_log = ilLoggerFactory::getLogger("mep");
82 
83 
84  $this->mode = ($this->mep_request->getMode() !== "")
85  ? $this->mep_request->getMode()
86  : "listMedia";
87  $this->gui = $DIC->mediaPool()->internal()->gui();
88  $this->domain = $DIC->mediaPool()->internal()->domain();
89  $this->xsl = $DIC->copage()->internal()->domain()->xsl();
90  }
91 
92  protected function getMediaPool(): ilObjMediaPool
93  {
95  $mp = $this->object;
96  return $mp;
97  }
98 
102  protected function afterConstructor(): void
103  {
104  $lng = $this->lng;
105  if ($this->mep_item_id == 0 && !$this->getCreationMode()) {
106  $tree = $this->object->getTree();
107  $this->mep_item_id = $tree->readRootId();
108  }
109 
110  $lng->loadLanguageModule("mep");
111 
112  if ($this->ctrl->getCmd() === "explorer") {
113  $this->ctrl->saveParameter($this, array("ref_id"));
114  } else {
115  $this->ctrl->saveParameter($this, array("ref_id", "mepitem_id"));
116  }
117  $this->ctrl->saveParameter($this, array("mep_mode"));
118 
119  $lng->loadLanguageModule("content");
120  }
121 
122  final public function getType(): string
123  {
124  return "mep";
125  }
126 
132  public function executeCommand(): void
133  {
134  $ilTabs = $this->tabs;
135  $lng = $this->lng;
136  $ilAccess = $this->access;
137  $tpl = $this->tpl;
138  $ilCtrl = $this->ctrl;
139 
140  $tree = null;
141  if ($this->object) {
142  $tree = $this->object->getTree();
143  }
144 
145  $next_class = $this->ctrl->getNextClass($this);
146  $cmd = $this->ctrl->getCmd();
147  $new_type = $this->mep_request->getNewType();
148 
149 
150 
151  if ($new_type !== "" && ($cmd !== "confirmRemove" && $cmd !== "copyToClipboard"
152  && $cmd !== "pasteFromClipboard")) {
153  $this->tpl->setPermanentLink("mep", $this->ref_id);
154  $this->setCreationMode(true);
155  }
156 
157  if ($cmd === "create") {
158  switch ($this->mep_request->getNewType()) {
159  case "mob":
160  $this->ctrl->redirectByClass("ilobjmediaobjectgui", "create");
161  break;
162 
163  case "fold":
164  $this->ctrl->redirectByClass("ilobjfoldergui", "create");
165  break;
166  }
167  }
168 
169  switch ($next_class) {
170  case 'ilobjectmetadatagui':
171  $this->checkPermission("write");
172 
173  $this->prepareOutput();
174  $this->addHeaderAction();
175 
176  $this->tabs_gui->activateTab('meta_data');
177  $md_gui = new ilObjectMetaDataGUI($this->object, ['mob', "mpg"]);
178  $this->ctrl->forwardCommand($md_gui);
179  $this->tpl->printToStdout();
180  break;
181 
182  case strtolower(ilRepoStandardUploadHandlerGUI::class):
183  $this->checkPermission("write");
184  $form = $this->getBulkUploadForm();
185  $gui = $form->getRepoStandardUploadHandlerGUI("media_files");
186  $this->ctrl->forwardCommand($gui);
187  break;
188 
189  case 'ilmediapoolpagegui':
190  $this->checkPermission("write");
191  $this->prepareOutput();
192  //$this->addHeaderAction();
193  $ilTabs->clearTargets();
194  $ilCtrl->setReturn($this, "returnFromItem");
195  $mep_page_gui = new ilMediaPoolPageGUI(
196  $this->mep_item_id,
197  $this->mep_request->getOldNr()
198  );
199  $mep_page_gui->setPoolGUI($this);
200  $mep_page_gui->setAdvMdRecordObject($this->object->getRefId(), "mep", "mpg");
201 
202  if (!$ilAccess->checkAccess("write", "", $this->object->getRefId())) {
203  $mep_page_gui->setEnableEditing(false);
204  }
205  $ret = $this->ctrl->forwardCommand($mep_page_gui);
206  if ($ret != "") {
207  $tpl->setContent($ret);
208  }
209  $this->tpl->printToStdout();
210  break;
211 
212  case "ilobjmediaobjectgui":
213  $this->checkPermission("write");
214  if ($cmd === "create" || $cmd === "save" || $cmd === "cancel") {
215  $ret_obj = $this->mep_item_id;
216  $ilObjMediaObjectGUI = new ilObjMediaObjectGUI("", 0, false, false);
217  $ilObjMediaObjectGUI->setWidthPreset((int) $this->getMediaPool()->getDefaultWidth());
218  $ilObjMediaObjectGUI->setHeightPreset((int) $this->getMediaPool()->getDefaultHeight());
219  } else {
220  $ret_obj = $tree->getParentId($this->mep_item_id);
221  $ilObjMediaObjectGUI = new ilObjMediaObjectGUI("", ilMediaPoolItem::lookupForeignId($this->mep_item_id), false, false);
222  $this->ctrl->setParameter($this, "mepitem_id", $this->getParentFolderId());
223  $ilTabs->setBackTarget(
224  $lng->txt("back"),
225  $this->ctrl->getLinkTarget(
226  $this,
227  $this->mode
228  )
229  );
230  }
231  if ($this->ctrl->getCmdClass() === "ilinternallinkgui") {
232  $this->ctrl->setReturn($this, "explorer");
233  } else {
234  $this->ctrl->setParameter($this, "mepitem_id", $ret_obj);
235  $this->ctrl->setReturn(
236  $this,
237  $this->mode
238  );
239  $this->ctrl->setParameter($this, "mepitem_id", $this->mep_item_id);
240  }
241  $this->getTemplate();
242  $ilObjMediaObjectGUI->setTabs();
243  $this->setLocator();
244 
245  // set adv metadata record dobject
246  $ilObjMediaObjectGUI->setAdvMdRecordObject($this->object->getRefId(), "mep", "mob");
247 
248  $ret = $this->ctrl->forwardCommand($ilObjMediaObjectGUI);
249  if ($cmd === "save") {
250  $object = $ilObjMediaObjectGUI->getObject();
251  if (!is_null($object)) {
252  $mep_item = new ilMediaPoolItem();
253  $mep_item->setTitle($object->getTitle());
254  $mep_item->setType("mob");
255  $mep_item->setForeignId($object->getId());
256  $mep_item->create();
257 
258  $parent = $this->mep_item_id;
259  $tree->insertNode($mep_item->getId(), $parent);
261  "ilias.php?baseClass=ilMediaPoolPresentationGUI&cmd=listMedia&ref_id=" .
262  $this->requested_ref_id . "&mepitem_id=" . $this->mep_item_id
263  );
264  }
265  }
266  $this->tpl->printToStdout();
267  break;
268 
269  case "ilmediacreationgui":
270  $this->checkPermission("write");
271  $this->prepareOutput();
272  $this->ctrl->setReturn($this, "listMedia");
273  //$ilTabs->activateTab("content");
274  //$this->addContentSubTabs("manage");
275  $med_type = [];
276  $creation = new ilMediaCreationGUI([ilMediaCreationGUI::TYPE_ALL], function ($mob_id) {
277  $this->afterUpload($mob_id);
278  }, function ($mob_id, $long_desc) {
279  $this->afterUrlSaving($mob_id, $long_desc);
280  }, function ($mob_ids) {
281  $this->afterPoolInsert($mob_ids);
282  }, function ($mob_id) {
283  $this->finishSingleUpload($mob_id);
284  }, function ($mob_id) {
285  $this->onMobUpdate($mob_id);
286  });
287  $this->ctrl->forwardCommand($creation);
288  $this->tpl->printToStdout();
289  break;
290 
291 
292  case "ilobjfoldergui":
293  $this->checkPermission("write");
294  $this->addHeaderAction();
295  $folder_gui = new ilObjFolderGUI("", 0, false, false);
296  $this->ctrl->setReturn($this, "listMedia");
297  $cmd .= "Object";
298  switch ($cmd) {
299  case "createObject":
300  $this->prepareOutput();
301  $folder_gui = new ilObjFolderGUI("", 0, false, false);
302  $folder_gui->setFormAction(
303  "save",
304  $this->ctrl->getFormActionByClass("ilobjfoldergui")
305  );
306  $folder_gui->createObject();
307  $this->tpl->printToStdout();
308  break;
309 
310  case "saveObject":
311  $parent = $this->mep_item_id;
312  $folder_gui->setFolderTree($tree);
313  $folder_gui->saveObject();
314  break;
315 
316  case "editObject":
317  $this->prepareOutput();
318  $folder_gui = new ilObjFolderGUI(
319  "",
320  ilMediaPoolItem::lookupForeignId($this->mep_item_id),
321  false,
322  false
323  );
324  $this->ctrl->setParameter($this, "foldereditmode", "1");
325  $folder_gui->setFormAction("update", $this->ctrl->getFormActionByClass("ilobjfoldergui"));
326  $folder_gui->editObject();
327  $this->tpl->printToStdout();
328  break;
329 
330  case "updateObject":
331  $folder_gui = new ilObjFolderGUI(
332  "",
333  ilMediaPoolItem::lookupForeignId($this->mep_item_id),
334  false,
335  false
336  );
337  $this->ctrl->setParameter($this, "mepitem_id", $this->getParentFolderId());
338  $this->ctrl->setReturn($this, "listMedia");
339  $folder_gui->updateObject(); // this returns to parent
340  break;
341 
342  case "cancelObject":
343  if ($this->mep_request->getFolderEditMode()) {
344  $this->ctrl->setParameter($this, "mepitem_id", $this->getParentFolderId());
345  }
346  $this->ctrl->redirect($this, "listMedia");
347  break;
348  }
349  break;
350 
351  case "ileditclipboardgui":
352  $this->prepareOutput();
353  $this->addHeaderAction();
354  $this->ctrl->setReturn($this, $this->mode);
355  $clip_gui = new ilEditClipboardGUI();
356  $clip_gui->setMultipleSelections(true);
357  $clip_gui->setInsertButtonTitle($lng->txt("mep_copy_to_mep"));
358  $ilTabs->setTabActive("clipboard");
359  $this->ctrl->forwardCommand($clip_gui);
360  $this->tpl->printToStdout();
361  break;
362 
363  case 'ilinfoscreengui':
364  $this->prepareOutput();
365  $this->addHeaderAction();
366  $this->infoScreen();
367  $this->tpl->printToStdout();
368  break;
369 
370  case 'ilpermissiongui':
371  $this->checkPermission("edit_permission");
372  $this->prepareOutput();
373  $this->addHeaderAction();
374  $perm_gui = new ilPermissionGUI($this);
375  $ilTabs->activateTab("perm_settings");
376  $this->ctrl->forwardCommand($perm_gui);
377  $this->tpl->printToStdout();
378  break;
379 
380  case "ilexportgui":
381  $this->checkPermission("write");
382  $this->prepareOutput();
383  $this->addHeaderAction();
384  $ilTabs->activateTab("export");
385  $exp_gui = new ilExportGUI($this);
386  $this->ctrl->forwardCommand($exp_gui);
387  $this->tpl->printToStdout();
388  break;
389 
390  case "ilcommonactiondispatchergui":
392  $this->ctrl->forwardCommand($gui);
393  break;
394 
395  case 'ilobjecttranslationgui':
396  $this->prepareOutput();
397  $this->addHeaderAction();
398  //$this->setTabs("settings");
399  $ilTabs->activateTab("settings");
400  $this->setSettingsSubTabs("obj_multilinguality");
401  $transgui = new ilObjectTranslationGUI($this);
402  $transgui->setTitleDescrOnlyMode(false);
403  $this->ctrl->forwardCommand($transgui);
404  $this->tpl->printToStdout();
405  break;
406 
407  case "ilmediapoolimportgui":
408  $this->prepareOutput();
409  $this->addHeaderAction();
410  $this->checkPermission("write");
411  $ilTabs->activateTab("import");
412  $gui = new ilMediaPoolImportGUI($this->getMediaPool());
413  $this->ctrl->forwardCommand($gui);
414  $this->tpl->printToStdout();
415  break;
416 
417  case "ilmobmultisrtuploadgui":
418  $this->checkPermission("write");
419  $this->prepareOutput();
420  $this->addHeaderAction();
421  $this->setContentSubTabs("srt_files");
422  $gui = new ilMobMultiSrtUploadGUI(new ilMepMultiSrt($this->getMediaPool()));
423  $this->ctrl->forwardCommand($gui);
424  $this->tpl->printToStdout();
425  break;
426 
427  case strtolower(ilObjectMetaDataGUI::class):
428  $this->checkPermission("write");
429  $this->prepareOutput();
430  $this->addHeaderAction();
431  $ilTabs->activateTab("meta_data");
432  $gui = new ilObjectMetaDataGUI($this->object);
433  $this->ctrl->forwardCommand($gui);
434  break;
435 
436  case strtolower(SettingsGUI::class):
437  $this->checkPermission("write");
438  $this->prepareOutput();
439  $this->addHeaderAction();
440  $this->setSettingsSubTabs("settings");
441  $ilTabs->activateTab("settings");
442  $gui = $this->gui->settings()->settingsGUI(
443  $this->object->getId()
444  );
445  $this->ctrl->forwardCommand($gui);
446  $this->tpl->printToStdout();
447  break;
448 
449  default:
450  $this->prepareOutput();
451  $this->addHeaderAction();
452  $cmd = $this->ctrl->getCmd("listMedia") ?: "listMedia";
453  $this->$cmd();
454  if (!$this->getCreationMode()) {
455  $this->tpl->printToStdout();
456  }
457  break;
458  }
459  }
460 
464  protected function returnFromItem(): void
465  {
466  $ctrl = $this->ctrl;
467 
468  $type = ilMediaPoolItem::lookupType($this->mep_item_id);
469  if ($type !== "fold") {
470  $tree = $this->object->getTree();
471  $fold_id = $tree->getParentId($this->mep_item_id);
472  if ($fold_id > 0) {
473  $ctrl->setParameter($this, "mepitem_id", $fold_id);
474  $ctrl->redirect($this, "listMedia");
475  }
476  }
477  $this->listMedia();
478  }
479 
480  public function createMediaObject(): void
481  {
482  $this->ctrl->redirectByClass("ilobjmediaobjectgui", "create");
483  }
484 
485  protected function afterSave(ilObject $new_object): void
486  {
487  // always send a message
488  $this->main_tpl->setOnScreenMessage('success', $this->lng->txt("object_added"), true);
489 
490  //ilUtil::redirect($this->getReturnLocation("save","adm_object.php?".$this->link_params));
491  ilUtil::redirect("ilias.php?baseClass=ilMediaPoolPresentationGUI&ref_id=" . $new_object->getRefId() . "&cmd=listMedia");
492  }
493 
494  public function edit(): void
495  {
496  $this->ctrl->redirectByClass(SettingsGUI::class);
497  }
498 
499 
503  public function listMedia(): void
504  {
505  $ilAccess = $this->access;
506  $tpl = $this->tpl;
507  $ilTabs = $this->tabs;
508  $ilCtrl = $this->ctrl;
509  $ilToolbar = $this->toolbar;
510  $lng = $this->lng;
511 
512  $ilCtrl->setParameter($this, "mep_mode", "listMedia");
513 
514  $this->checkPermission("read");
515 
516  $ilTabs->setTabActive("content");
517  $this->setContentSubTabs("content");
518 
519  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
520  $ilToolbar->addButton(
521  $lng->txt("mep_create_mob"),
522  $ilCtrl->getLinkTargetByClass("ilMediaCreationGUI", "")
523  );
524 
525  $mset = new ilSetting("mobs");
526  if ($mset->get("mep_activate_pages")) {
527  $ilToolbar->addButton(
528  $lng->txt("mep_create_content_snippet"),
529  $ilCtrl->getLinkTargetByClass(["ilobjmediapoolgui", "ilmediapoolpagegui"], "createMediaPoolPage")
530  );
531  }
532 
533  $ilToolbar->addButton(
534  $lng->txt("mep_create_folder"),
535  $ilCtrl->getLinkTarget($this, "createFolderForm")
536  );
537 
538  $ilToolbar->addButton(
539  $lng->txt("mep_bulk_upload"),
540  $ilCtrl->getLinkTarget($this, "bulkUpload")
541  );
542 
543  $move_ids = ilSession::get("mep_move_ids");
544  if (is_array($move_ids) && count($move_ids) > 0) {
545  $ilToolbar->addSeparator();
546  $ilToolbar->addButton(
547  $lng->txt("paste"),
548  $ilCtrl->getLinkTarget($this, "paste")
549  );
550  }
551  }
552 
553  $mep_table_gui = new ilMediaPoolTableGUI($this, "listMedia", $this->getMediaPool(), "mepitem_id");
554  $tpl->setContent($mep_table_gui->getHTML());
555  }
556 
557  protected function toggleExplorerNodeState(): void
558  {
559  $exp = new ilMediaPoolExplorerGUI($this, "listMedia", $this->getMediaPool());
560  $exp->toggleExplorerNodeState();
561  }
562 
566  public function allMedia(): void
567  {
568  $tpl = $this->tpl;
569  $ilTabs = $this->tabs;
570  $ilCtrl = $this->ctrl;
571  $ilUser = $this->user;
572 
573  $ilCtrl->setParameter($this, "mep_mode", "allMedia");
574 
575  $this->checkPermission("read");
576  $ilTabs->setTabActive("content");
577  $this->setContentSubTabs("mep_all_mobs");
578 
579  $mep_table_gui = new ilMediaPoolTableGUI(
580  $this,
581  "allMedia",
582  $this->getMediaPool(),
583  "mepitem_id",
585  true
586  );
587 
588  if ($this->mep_request->getForceFilter() > 0) {
589  $mep_table_gui->setTitleFilter(
590  ilMediaPoolItem::lookupTitle($this->mep_request->getForceFilter())
591  );
592 
593  // Read again
594  $mep_table_gui = new ilMediaPoolTableGUI(
595  $this,
596  "allMedia",
597  $this->getMediaPool(),
598  "mepitem_id",
600  true
601  );
602  }
603 
604  $tpl->setContent($mep_table_gui->getHTML());
605  }
606 
610  public function applyFilter(): void
611  {
612  $mtab = new ilMediaPoolTableGUI(
613  $this,
614  "allMedia",
615  $this->getMediaPool(),
616  "mepitem_id",
618  true
619  );
620  $mtab->writeFilterToSession();
621  $mtab->resetOffset();
622  $this->allMedia();
623  }
624 
625  public function resetFilter(): void
626  {
627  $mtab = new ilMediaPoolTableGUI(
628  $this,
629  "allMedia",
630  $this->getMediaPool(),
631  "mepitem_id",
633  true
634  );
635  $mtab->resetFilter();
636  $mtab->resetOffset();
637  $this->allMedia();
638  }
639 
643  public function getTemplate(): void
644  {
645  $this->tpl->loadStandardTemplate();
646  }
647 
648 
652  public function getParentFolderId(): ?int
653  {
654  if ($this->mep_item_id == 0) {
655  return null;
656  }
657  $par_id = $this->object->getPoolTree()->getParentId($this->mep_item_id);
658  if ($par_id != $this->object->getPoolTree()->getRootId()) {
659  return (int) $par_id;
660  }
661 
662  return null;
663  }
664 
668  protected function showMedia(): void
669  {
670  $this->checkPermission("read");
671  $link_xml = "";
672  $pg_frame = "";
673 
674  $item = new ilMediaPoolItem($this->mep_item_id);
675  $mob_id = $item->getForeignId();
676 
677  $this->tpl = new ilGlobalTemplate("tpl.fullscreen.html", true, true, "components/ILIAS/COPage");
678  $this->tpl->setVariable("LOCATION_STYLESHEET", ilUtil::getStyleSheetLocation());
679  $this->tpl->setVariable(
680  "LOCATION_CONTENT_STYLESHEET",
682  );
683 
684 
686  $media_obj = new ilObjMediaObject($mob_id);
687 
688 
689  $this->tpl->setVariable("TITLE", " - " . $media_obj->getTitle());
690 
691  $xml = "<dummy>";
692  // todo: we get always the first alias now (problem if mob is used multiple
693  // times in page)
694  $xml .= $media_obj->getXML(IL_MODE_ALIAS);
695  $xml .= $media_obj->getXML(IL_MODE_OUTPUT);
696  $xml .= $link_xml;
697  $xml .= "</dummy>";
698  $wb_path = ilFileUtils::getWebspaceDir("output") . "/";
699 
700  $mode = ($this->ctrl->getCmd() !== "showPreview")
701  ? "fullscreen"
702  : "media";
703  $enlarge_path = ilUtil::getImagePath("media/enlarge.svg", false, "output");
704  $fullscreen_link =
705  $this->ctrl->getLinkTarget($this, "showFullscreen", "", false, false);
706  $params = array('mode' => $mode, 'enlarge_path' => $enlarge_path,
707  'link_params' => "ref_id=" . $this->requested_ref_id,'fullscreen_link' => $fullscreen_link,
708  'enable_html_mob' => ilObjMediaObject::isTypeAllowed("html") ? "y" : "n",
709  'ref_id' => $this->requested_ref_id, 'pg_frame' => $pg_frame, 'webspace_path' => $wb_path);
710  $output = $this->xsl->process($xml, $params);
711 
712  // unmask user html
713  $this->tpl->setVariable("MEDIA_CONTENT", $output);
714  }
715 
722  public function showPage(): void
723  {
724  //$tpl = new \ilGlobalPageTemplate($DIC->globalScreen(), $DIC->ui(), $DIC->http());
725  $tpl = new ilGlobalTemplate("tpl.fullscreen.html", true, true, "components/ILIAS/COPage");
726 
730 
731  // get page object
732  $page_gui = $this->getMediaPoolPageGUI($this->mep_item_id);
733  $page_gui->setTemplate($tpl);
734 
735  $page_gui->setTemplateOutput(false);
736  $page_gui->setHeader("");
737  $ret = $page_gui->showPage(true);
738 
739  //$tpl->setBodyClass("ilMediaPoolPagePreviewBody");
740  $tpl->setVariable("MEDIA_CONTENT", "<div>" . $ret . "</div>");
741 
742 
743  $tpl->printToStdout();
744  exit;
745  }
746 
752  protected function getMediaPoolPageGUI($mep_item_id, $old_nr = 0)
753  {
754  $page_gui = new ilMediaPoolPageGUI($mep_item_id, $old_nr);
755  $page_gui->setPoolGUI($this);
756 
757  return $page_gui;
758  }
759 
760 
764  public function showPreview(): void
765  {
766  $this->checkPermission("read");
767 
768  $item = new ilMediaPoolItem($this->mep_item_id);
769 
770  switch ($item->getType()) {
771  case "mob":
772  $this->showMedia();
773  break;
774 
775  case "pg":
776  $this->showPage();
777  break;
778  }
779  }
780 
781 
785  public function showFullscreen(): void
786  {
787  $this->showMedia();
788  }
789 
793  public function confirmRemove(): void
794  {
795  $ilCtrl = $this->ctrl;
796  $lng = $this->lng;
797 
798  $this->checkPermission("write");
799 
800  $ids = $this->mep_request->getItemIds();
801  if (count($ids) === 0) {
802  $this->main_tpl->setOnScreenMessage('failure', $this->lng->txt("no_checkbox"), true);
803  $ilCtrl->redirect($this, "");
804  }
805 
806  // display confirmation message
807  $cgui = new ilConfirmationGUI();
808  $cgui->setFormAction($this->ctrl->getFormAction($this));
809  $cgui->setHeaderText($this->lng->txt("info_remove_sure"));
810  $cgui->setCancel($this->lng->txt("cancel"), "cancelRemove");
811  $cgui->setConfirm($this->lng->txt("confirm"), "remove");
812 
813  foreach ($ids as $obj_id) {
815  $title = ilMediaPoolItem::lookupTitle($obj_id);
816 
817  // check whether page can be removed
818  $add = "";
819  if ($type === "pg") {
820  $usages = ilPageContentUsage::getUsages("incl", $obj_id, false);
821  if (count($usages) > 0) {
822  $this->main_tpl->setOnScreenMessage('failure', sprintf($lng->txt("mep_content_snippet_in_use"), $title), true);
823  $ilCtrl->redirect($this, "listMedia");
824  } else {
825  // check whether the snippet is used in older versions of pages
826  $usages = ilPageContentUsage::getUsages("incl", $obj_id, true);
827  if (count($usages) > 0) {
828  $add = "<div class='small'>" . $lng->txt("mep_content_snippet_used_in_older_versions") . "</div>";
829  }
830  }
831  }
832 
833  $caption =
834  " " . $title . $add;
835 
836  $cgui->addItem("id[]", $obj_id, $caption);
837  }
838 
839  $this->tpl->setContent($cgui->getHTML());
840  }
841 
845  public function openClipboard(): void
846  {
847  $ilCtrl = $this->ctrl;
848 
849  $this->checkPermission("write");
850 
851  $ilCtrl->setParameterByClass(
852  "ileditclipboardgui",
853  "returnCommand",
854  rawurlencode($ilCtrl->getLinkTarget(
855  $this,
856  "insertFromClipboard",
857  "",
858  false,
859  false
860  ))
861  );
862  $ilCtrl->redirectByClass("ilEditClipboardGUI", "getObject");
863  }
864 
865 
869  public function insertFromClipboard(): void
870  {
871  $this->checkPermission("write");
872 
873  $this->domain->mediapool($this->object->getId())
874  ->copySelectedFromEditClipboard($this->mep_item_id);
875 
876  /*
877  if (count($not_inserted) > 0) {
878  $this->main_tpl->setOnScreenMessage('info', $this->lng->txt("mep_not_insert_already_exist") . "<br>" .
879  implode("<br>", $not_inserted), true);
880  }*/
881  $this->ctrl->redirect($this, $this->mode);
882  }
883 
884 
888  public function cancelRemove(): void
889  {
890  $this->ctrl->redirect($this, $this->mode);
891  }
892 
893  public function remove(): void
894  {
895  $this->checkPermission("write");
896 
897  $ids = $this->mep_request->getItemIds();
898  foreach ($ids as $obj_id) {
899  $this->object->deleteChild($obj_id);
900  }
901 
902  $this->main_tpl->setOnScreenMessage('success', $this->lng->txt("cont_obj_removed"), true);
903  $this->ctrl->redirect($this, $this->mode);
904  }
905 
906 
910  public function copyToClipboard(): void
911  {
912  $ilUser = $this->user;
913 
914  $this->checkPermission("write");
915 
916  $ids = $this->mep_request->getItemIds();
917  if (count($ids) === 0) {
918  $this->main_tpl->setOnScreenMessage('failure', $this->lng->txt("no_checkbox"), true);
919  $this->ctrl->redirect($this, $this->mode);
920  }
921 
922  foreach ($ids as $obj_id) {
924  if ($type === "fold") {
925  $this->main_tpl->setOnScreenMessage('failure', $this->lng->txt("cont_cant_copy_folders"), true);
926  $this->ctrl->redirect($this, $this->mode);
927  }
928  }
929  foreach ($ids as $obj_id) {
930  $fid = ilMediaPoolItem::lookupForeignId($obj_id);
932  if ($type === "mob") {
933  $ilUser->addObjectToClipboard($fid, "mob", "");
934  }
935  if ($type === "pg") {
936  $ilUser->addObjectToClipboard($obj_id, "incl", "");
937  }
938  }
939  $this->main_tpl->setOnScreenMessage('success', $this->lng->txt("copied_to_clipboard"), true);
940  $this->ctrl->redirect($this, $this->mode);
941  }
942 
946  protected function addLocatorItems(): void
947  {
948  $ilLocator = $this->locator;
949  $ilAccess = $this->access;
950  if (!$this->getCreationMode() && $this->ctrl->getCmd() !== "explorer") {
951  $tree = $this->object->getTree();
954  foreach ($path as $node) {
955  if ($node["child"] == $tree->getRootId()) {
956  $this->ctrl->setParameter($this, "mepitem_id", "");
957  $link = "";
958  if ($ilAccess->checkAccess("read", "", $this->object->getRefId())) {
959  $link = $this->ctrl->getLinkTarget($this, "listMedia");
960  } elseif ($ilAccess->checkAccess("visible", "", $this->object->getRefId())) {
961  $link = $this->ctrl->getLinkTarget($this, "infoScreen");
962  }
963  $title = $this->object->getTitle();
964  $this->ctrl->setParameter($this, "mepitem_id", $this->mep_item_id);
965  $ilLocator->addItem($title, $link, "", $this->requested_ref_id);
966  }
967  }
968  }
969  }
970 
974 
975  public function createFolderForm(): void
976  {
977  $tpl = $this->tpl;
978 
979  $this->checkPermission("write");
980 
981  $this->initFolderForm("create");
982  $tpl->setContent($this->form->getHTML());
983  }
984 
985  public function editFolder(): void
986  {
987  $tpl = $this->tpl;
988 
989  $this->checkPermission("write");
990 
991  $this->initFolderForm();
992  $this->getFolderValues();
993  $tpl->setContent($this->form->getHTML());
994  }
995 
999  public function getFolderValues(): void
1000  {
1001  $values = array();
1002 
1003  $values["title"] = ilMediaPoolItem::lookupTitle($this->mep_item_id);
1004 
1005  $this->form->setValuesByArray($values);
1006  }
1007 
1011  public function saveFolder(): void
1012  {
1013  $tpl = $this->tpl;
1014  $lng = $this->lng;
1015  $ilCtrl = $this->ctrl;
1016 
1017  $this->checkPermission("write");
1018 
1019  $this->initFolderForm("create");
1020  if ($this->form->checkInput()) {
1021  if ($this->object->createFolder($this->form->getInput("title"), $this->mep_item_id)) {
1022  $this->main_tpl->setOnScreenMessage('success', $lng->txt("mep_folder_created"), true);
1023  }
1024  $ilCtrl->redirect($this, "listMedia");
1025  }
1026 
1027  $this->form->setValuesByPost();
1028  $tpl->setContent($this->form->getHTML());
1029  }
1030 
1031  public function updateFolder(): void
1032  {
1033  $lng = $this->lng;
1034  $ilCtrl = $this->ctrl;
1035  $tpl = $this->tpl;
1036 
1037  $this->checkPermission("write");
1038 
1039  $this->initFolderForm("edit");
1040  if ($this->form->checkInput()) {
1041  $item = new ilMediaPoolItem($this->mep_item_id);
1042  $item->setTitle($this->form->getInput("title"));
1043  $item->update();
1044  $this->main_tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
1045  $ilCtrl->setParameter(
1046  $this,
1047  "mepitem_id",
1048  $this->object->getTree()->getParentId($this->mep_item_id)
1049  );
1050  $ilCtrl->redirect($this, "listMedia");
1051  }
1052 
1053  $this->form->setValuesByPost();
1054  $tpl->setContent($this->form->getHTML());
1055  }
1056 
1061  public function initFolderForm(string $a_mode = "edit"): void
1062  {
1063  $lng = $this->lng;
1064  $ilCtrl = $this->ctrl;
1065 
1066  $this->form = new ilPropertyFormGUI();
1067 
1068  // desc
1069  $ti = new ilTextInputGUI($lng->txt("title"), "title");
1070  $ti->setMaxLength(128);
1071  $ti->setRequired(true);
1072  $this->form->addItem($ti);
1073 
1074  // save and cancel commands
1075  if ($a_mode === "create") {
1076  $this->form->addCommandButton("saveFolder", $lng->txt("save"));
1077  $this->form->addCommandButton("cancelSave", $lng->txt("cancel"));
1078  $this->form->setTitle($lng->txt("mep_new_folder"));
1079  } else {
1080  $this->form->addCommandButton("updateFolder", $lng->txt("save"));
1081  $this->form->addCommandButton("cancelFolderUpdate", $lng->txt("cancel"));
1082  $this->form->setTitle($lng->txt("mep_edit_folder"));
1083  }
1084 
1085  $this->form->setFormAction($ilCtrl->getFormAction($this));
1086  }
1087 
1088  public function cancelFolderUpdate(): void
1089  {
1090  $ilCtrl = $this->ctrl;
1091  $ilCtrl->setParameter(
1092  $this,
1093  "mepitem_id",
1094  $this->object->getTree()->getParentId($this->mep_item_id)
1095  );
1096  $ilCtrl->redirect($this, "listMedia");
1097  }
1098 
1099  public function cancelSave(): void
1100  {
1101  $ilCtrl = $this->ctrl;
1102  $ilCtrl->redirect($this, "listMedia");
1103  }
1104 
1108 
1112  public function setContentSubTabs(
1113  string $a_active
1114  ): void {
1115  $ilAccess = $this->access;
1116  $ilTabs = $this->tabs;
1117  $ilCtrl = $this->ctrl;
1118 
1119  $ilTabs->addSubTab("content", $this->lng->txt("objs_fold"), $this->ctrl->getLinkTarget($this, ""));
1120 
1121  $ilCtrl->setParameter($this, "mepitem_id", "");
1122  $ilTabs->addSubTab("mep_all_mobs", $this->lng->txt("mep_all_mobs"), $this->ctrl->getLinkTarget($this, "allMedia"));
1123  $ilCtrl->setParameter($this, "mepitem_id", $this->mep_item_id);
1124 
1125  if ($ilAccess->checkAccess('write', '', $this->ref_id)) {
1126  $ilTabs->addSubTab(
1127  "srt_files",
1128  $this->lng->txt("mep_media_subtitles"),
1129  $ilCtrl->getLinkTargetByClass("ilmobmultisrtuploadgui", "")
1130  );
1131  }
1132 
1133  $ilTabs->activateSubTab($a_active);
1134  }
1135 
1136  protected function setTabs(): void
1137  {
1138  $ilAccess = $this->access;
1139  $ilTabs = $this->tabs;
1140  $ilHelp = $this->help;
1141 
1142  $ilHelp->setScreenIdComponent("mep");
1143 
1144  if ($ilAccess->checkAccess('read', '', $this->ref_id) ||
1145  $ilAccess->checkAccess('write', '', $this->ref_id)) {
1146  $ilTabs->addTab("content", $this->lng->txt("mep_content"), $this->ctrl->getLinkTarget($this, ""));
1147  }
1148 
1149  // info tab
1150  if ($ilAccess->checkAccess('visible', '', $this->ref_id) ||
1151  $ilAccess->checkAccess('read', '', $this->ref_id) ||
1152  $ilAccess->checkAccess('write', '', $this->ref_id)) {
1153  $ilTabs->addTab(
1154  "info_short",
1155  $this->lng->txt("info_short"),
1156  $this->ctrl->getLinkTargetByClass(
1157  array("ilobjmediapoolgui", "ilinfoscreengui"),
1158  "showSummary"
1159  )
1160  );
1161  }
1162 
1163  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
1164  $ilTabs->addTab(
1165  "settings",
1166  $this->lng->txt("settings"),
1167  $this->ctrl->getLinkTargetByClass(SettingsGUI::class)
1168  );
1169  }
1170  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
1171  $ilTabs->addTab(
1172  "clipboard",
1173  $this->lng->txt("clipboard"),
1174  $this->ctrl->getLinkTarget($this, "openClipboard")
1175  );
1176  }
1177 
1178  // properties
1179  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
1180  // meta data
1181  $mdgui = new ilObjectMetaDataGUI($this->object, ['mob', "mpg"]);
1182  $mdtab = $mdgui->getTab();
1183  if ($mdtab) {
1184  $ilTabs->addTab(
1185  "meta_data",
1186  $this->lng->txt("meta_data"),
1187  $mdtab
1188  );
1189  }
1190  }
1191 
1192  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
1193  $ilTabs->addTab(
1194  "export",
1195  $this->lng->txt("export"),
1196  $this->ctrl->getLinkTargetByClass("ilexportgui", "")
1197  );
1198 
1199  $ilTabs->addTab(
1200  "import",
1201  $this->lng->txt("import"),
1202  $this->ctrl->getLinkTargetByClass("ilmediapoolimportgui", "")
1203  );
1204  }
1205 
1206  if ($ilAccess->checkAccess("edit_permission", "", $this->object->getRefId())) {
1207  $ilTabs->addTab(
1208  "perm_settings",
1209  $this->lng->txt("perm_settings"),
1210  $this->ctrl->getLinkTargetByClass(array(get_class($this),'ilpermissiongui'), "perm")
1211  );
1212  }
1213  }
1214 
1215  public function setSettingsSubTabs(
1216  string $a_active
1217  ): void {
1218  $ilTabs = $this->tabs;
1219  $lng = $this->lng;
1220  $ilAccess = $this->access;
1221 
1222  if ($ilAccess->checkAccess("write", "", $this->object->getRefId())) {
1223  $ilTabs->addSubTab(
1224  "settings",
1225  $lng->txt("settings"),
1226  $this->ctrl->getLinkTarget($this, "edit")
1227  );
1228 
1229  $mset = new ilSetting("mobs");
1230  if ($mset->get("mep_activate_pages")) {
1231  $ilTabs->addSubTabTarget(
1232  "obj_multilinguality",
1233  $this->ctrl->getLinkTargetByClass("ilobjecttranslationgui", "")
1234  );
1235  }
1236  }
1237 
1238  $ilTabs->setSubTabActive($a_active);
1239  }
1240 
1241 
1242  public static function _goto(string $a_target): void
1243  {
1244  global $DIC;
1245  $main_tpl = $DIC->ui()->mainTemplate();
1246 
1247  $ilAccess = $DIC->access();
1248  $lng = $DIC->language();
1249  $ctrl = $DIC->ctrl();
1250 
1251  $subitem_id = "";
1252  $targets = explode('_', $a_target);
1253  $ref_id = $targets[0];
1254  if (count((array) $targets) > 1) {
1255  $subitem_id = $targets[1];
1256  }
1257 
1258  $ctrl->setParameterByClass("ilMediaPoolPresentationGUI", "ref_id", $ref_id);
1259  if ($ilAccess->checkAccess("read", "", $ref_id)) {
1260  $ctrl->setParameterByClass("ilMediaPoolPresentationGUI", "mepitem_id", $subitem_id);
1261  $ctrl->redirectByClass("ilMediaPoolPresentationGUI", "");
1262  } elseif ($ilAccess->checkAccess("visible", "", $ref_id)) {
1263  $ctrl->redirectByClass("ilMediaPoolPresentationGUI", "infoScreen");
1264  } elseif ($ilAccess->checkAccess("read", "", ROOT_FOLDER_ID)) {
1265  $main_tpl->setOnScreenMessage('failure', sprintf(
1266  $lng->txt("msg_no_perm_read_item"),
1268  ), true);
1270  }
1271 
1272  throw new ilPermissionException($lng->txt("msg_no_perm_read"));
1273  }
1274 
1278  public function infoScreenObject(): void
1279  {
1280  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
1281  }
1282 
1288  public function infoScreen(): void
1289  {
1290  $this->tabs->activateTab("info_short");
1291  $ilAccess = $this->access;
1292 
1293  if (!$ilAccess->checkAccess("visible", "", $this->ref_id) &&
1294  !$ilAccess->checkAccess("read", "", $this->ref_id) &&
1295  !$ilAccess->checkAccess("write", "", $this->ref_id)) {
1296  throw new ilPermissionException($this->lng->txt("msg_no_perm_read"));
1297  }
1298 
1299  if ($this->ctrl->getCmd() === "infoScreen") {
1300  $this->ctrl->redirectByClass(ilInfoScreenGUI::class, "showSummary");
1301  }
1302 
1303  $info = new ilInfoScreenGUI($this);
1304 
1305  $info->enablePrivateNotes();
1306 
1307 
1308  // standard meta data
1309  $info->addMetaDataSections($this->object->getId(), 0, $this->object->getType());
1310 
1311  // forward the command
1312  $this->ctrl->forwardCommand($info);
1313  }
1314 
1315 
1319 
1323  public function selectUploadDirFiles(
1324  ?array $a_files = null
1325  ): void {
1326  $tpl = $this->tpl;
1327  $ilTabs = $this->tabs;
1328  $lng = $this->lng;
1329  $ilCtrl = $this->ctrl;
1330  $ilToolbar = $this->toolbar;
1331 
1332 
1333  if (!$a_files) {
1334  $a_files = $this->mep_request->getFiles();
1335  }
1336 
1337  $ilTabs->clearTargets();
1338  $ilTabs->setBackTarget(
1339  $lng->txt("back"),
1340  $ilCtrl->getLinkTarget($this, "listMedia")
1341  );
1342 
1343  $this->checkPermission("write");
1344 
1345  if ($this->rbac_system->checkAccess("visible", SYSTEM_FOLDER_ID)) {
1346  $tb = new ilToolbarGUI();
1347  // action type
1348  $options = array(
1349  "rename" => $lng->txt("mep_up_dir_move"),
1350  "copy" => $lng->txt("mep_up_dir_copy"),
1351  );
1352  $si = new ilSelectInputGUI("", "action");
1353  $si->setOptions($options);
1354  $tb->addInputItem($si);
1355  $tb->setCloseFormTag(false);
1356  $tb->setFormAction($ilCtrl->getFormAction($this));
1357  $tb->setFormName("mep_up_form");
1358 
1359  $tab = new ilUploadDirFilesTableGUI(
1360  $this,
1361  "selectUploadDirFiles",
1362  $a_files
1363  );
1364  $tab->setFormName("mep_up_form");
1365  $tpl->setContent($tb->getHTML() . $tab->getHTML());
1366  }
1367  }
1368 
1372  public static function getPreviewModalHTML(
1373  int $a_mpool_ref_id,
1375  ): string {
1376  global $DIC;
1377 
1378  $tpl = $DIC["tpl"];
1379  $ilCtrl = $DIC->ctrl();
1380  $lng = $DIC->language();
1381  $internal_gui = $DIC->mediaPool()
1382  ->internal()
1383  ->gui();
1384  $request = $internal_gui
1385  ->standardRequest();
1386 
1388 
1389  $tpl->addJavaScript("assets/js/ilMediaPool.js");
1390 
1391  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "mepitem_id", "");
1392  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "ref_id", $a_mpool_ref_id);
1393  $tpl->addOnloadCode("il.MediaPool.setPreviewUrl('" . $ilCtrl->getLinkTargetByClass(array("ilmediapoolpresentationgui", "ilobjmediapoolgui"), "showPreview", "", false, false) . "');");
1394  $ilCtrl->setParameterByClass("ilobjmediapoolgui", "mepitem_id", $request->getItemId());
1395  $ilCtrl->setParameterByClass(
1396  "ilobjmediapoolgui",
1397  "ref_id",
1398  $request->getRefId()
1399  );
1400 
1401  $modal = $internal_gui->ui()->factory()->modal()->roundtrip(
1402  $lng->txt("preview"),
1403  $internal_gui->ui()->factory()->legacy()->content("<iframe id='ilMepPreviewContent'></iframe>")
1404  );
1405  $html = $internal_gui->ui()->renderer()->render($modal);
1406  $html = str_replace(
1407  "<iframe id='ilMepPreviewContent'",
1408  "<iframe data-signal='" . $modal->getShowSignal()->getId() . "' id='ilMepPreviewContent'",
1409  $html
1410  );
1411 
1412  return $html;
1413  }
1414 
1415  public function export(): void
1416  {
1417  $ot = ilObjectTranslation::getInstance($this->object->getId());
1418  $opt = "";
1419  if ($ot->getContentActivated()) {
1420  $format = explode("_", $this->mep_request->getExportFormat());
1421  $opt = ilUtil::stripSlashes($format[1]);
1422  }
1423 
1424  $this->object->exportXML($opt);
1425  }
1426 
1427  //
1428  // BULK UPLOAD
1429  //
1430 
1431  protected function bulkUpload(): void
1432  {
1433  $this->checkPermission("write");
1434 
1435  $main_tpl = $this->main_tpl;
1436 
1437  $form = $this->getBulkUploadForm();
1438  $main_tpl->setContent($form->render());
1439  }
1440 
1441  protected function getBulkUploadForm(): FormAdapterGUI
1442  {
1443  if (is_null($this->bulk_upload_form)) {
1444  $mep_hash = uniqid();
1445  $this->ctrl->setParameter($this, "mep_hash", $mep_hash);
1446  $this->bulk_upload_form = $this->gui
1447  ->form(self::class, 'performBulkUpload')
1448  ->section("props", $this->lng->txt('mep_bulk_upload'))
1449  ->file(
1450  "media_files",
1451  $this->lng->txt("mep_media_files"),
1452  \Closure::fromCallable([$this, 'handleUploadResult']),
1453  "mep_id",
1454  "",
1455  20
1456  );
1457  // ->meta()->text()->meta()->textarea()
1458  }
1459  return $this->bulk_upload_form;
1460  }
1461 
1462  protected function handleUploadResult(
1463  FileUpload $upload,
1464  UploadResult $result
1465  ): BasicHandlerResult {
1466  $title = $result->getName();
1467 
1468  $mob = new ilObjMediaObject();
1469  $mob->setTitle($title);
1470  $mob->setDescription("");
1471  $mob->create();
1472 
1473  $mob->createDirectory();
1474  $media_item = new ilMediaItem();
1475  $mob->addMediaItem($media_item);
1476  $media_item->setPurpose("Standard");
1477 
1478  $mob_dir = ilObjMediaObject::_getRelativeDirectory($mob->getId());
1479  $file_name = ilObjMediaObject::fixFilename($title);
1480  $file = $mob_dir . "/" . $file_name;
1481 
1482  $upload->moveOneFileTo(
1483  $result,
1484  $mob_dir,
1485  Location::WEB,
1486  $file_name,
1487  true
1488  );
1489 
1490  $mep_item = new ilMediaPoolItem();
1491  $mep_item->setTitle($title);
1492  $mep_item->setType("mob");
1493  $mep_item->setForeignId($mob->getId());
1494  $mep_item->create();
1495 
1496  $tree = $this->object->getTree();
1497  $parent = $this->mep_item_id;
1498  $tree->insertNode($mep_item->getId(), $parent);
1499 
1500  // get mime type
1501  $format = ilObjMediaObject::getMimeType($file);
1502  $location = $file_name;
1503 
1504  // set real meta and object data
1505  $media_item->setFormat($format);
1506  $media_item->setLocation($location);
1507  $media_item->setLocationType("LocalFile");
1508  $media_item->setUploadHash($this->mep_request->getUploadHash());
1509  $mob->update();
1510 
1511  $item_ids[] = $mob->getId();
1512 
1513  $mob = new ilObjMediaObject($mob->getId());
1514  $mob->generatePreviewPic(320, 240);
1515 
1516  // duration
1517  $med_item = $mob->getMediaItem("Standard");
1518  $med_item->determineDuration();
1519  $med_item->update();
1520 
1521  return new BasicHandlerResult(
1522  "mep_id",
1523  HandlerResult::STATUS_OK,
1524  $med_item->getId(),
1525  ''
1526  );
1527  }
1528 
1532  public function performBulkUpload(): void
1533  {
1534  $this->checkPermission("write");
1535  $this->ctrl->setParameter($this, "mep_hash", $this->mep_request->getUploadHash());
1536  $this->ctrl->redirect($this, "editTitlesAndDescriptions");
1537  }
1538 
1539  protected function editTitlesAndDescriptions(): void
1540  {
1541  $ctrl = $this->ctrl;
1542  $lng = $this->lng;
1543 
1544  $this->checkPermission("write");
1545  $ctrl->saveParameter($this, "mep_hash");
1546 
1547  $main_tpl = $this->main_tpl;
1548 
1550  $this->mep_request->getUploadHash()
1551  );
1552 
1553  $tb = new ilToolbarGUI();
1554  $tb->setFormAction($ctrl->getFormAction($this));
1555  $tb->addFormButton($lng->txt("save"), "saveTitlesAndDescriptions");
1556  $tb->setOpenFormTag(true);
1557  $tb->setCloseFormTag(false);
1558  $tb->setId("tb_top");
1559 
1560  $html = $tb->getHTML();
1561  foreach ($media_items as $mi) {
1562  $acc = new ilAccordionGUI();
1563  $acc->setBehaviour(ilAccordionGUI::ALL_CLOSED);
1564  $acc->setId("acc_" . $mi["mob_id"]);
1565 
1566  $mob = new ilObjMediaObject($mi["mob_id"]);
1567  $form = $this->initMediaBulkForm($mi["mob_id"], $mob->getTitle());
1568  $acc->addItem($mob->getTitle(), $form->getHTML());
1569 
1570  $html .= $acc->getHTML();
1571  }
1572 
1573  $html .= $tb->getHTML();
1574  $tb->setOpenFormTag(false);
1575  $tb->setCloseFormTag(true);
1576  $tb->setId("tb_bottom");
1577 
1578  $main_tpl->setContent($html);
1579  }
1580 
1584  public function initMediaBulkForm(
1585  int $a_id,
1586  string $a_title
1587  ): ilPropertyFormGUI {
1588  $lng = $this->lng;
1589 
1590  $form = new ilPropertyFormGUI();
1591  $form->setOpenTag(false);
1592  $form->setCloseTag(false);
1593 
1594  // title
1595  $ti = new ilTextInputGUI($lng->txt("title"), "title_" . $a_id);
1596  $ti->setValue($a_title);
1597  $form->addItem($ti);
1598 
1599  // description
1600  $ti = new ilTextAreaInputGUI($lng->txt("description"), "description_" . $a_id);
1601  $form->addItem($ti);
1602 
1603  return $form;
1604  }
1605 
1606  protected function saveTitlesAndDescriptions(): void
1607  {
1608  $lng = $this->lng;
1609  $ctrl = $this->ctrl;
1610 
1611  $this->checkPermission("write");
1613  $this->mep_request->getUploadHash()
1614  );
1615 
1616  foreach ($media_items as $mi) {
1617  $mob = new ilObjMediaObject($mi["mob_id"]);
1618  $form = $this->initMediaBulkForm($mi["mob_id"], $mob->getTitle());
1619  $form->checkInput();
1620  $title = $form->getInput("title_" . $mi["mob_id"]);
1621  $desc = $form->getInput("description_" . $mi["mob_id"]);
1622  if (trim($title) !== "") {
1623  $mob->setTitle($title);
1624  }
1625  $mob->setDescription($desc);
1626  $mob->update();
1627  }
1628  $this->main_tpl->setOnScreenMessage('success', $lng->txt("msg_obj_modified"), true);
1629  $ctrl->redirect($this, "listMedia");
1630  }
1631 
1632  protected function move(): void
1633  {
1634  ilSession::set("mep_move_ids", $this->mep_request->getItemIds());
1635  $this->main_tpl->setOnScreenMessage('info', $this->lng->txt("mep_move_select_insert"), true);
1636  $this->ctrl->redirect($this, "listMedia");
1637  }
1638 
1639  protected function paste(): void
1640  {
1641  $target_folder_id = $this->mep_request->getItemId();
1642  $target_tree = $this->domain->tree($this->object->getId());
1643  if (ilMediaPoolItem::lookupType($target_folder_id) !== "fold") {
1644  $target_folder_id = $target_tree->readRootId();
1645  }
1646 
1647  try {
1648  $this->domain->mediapool($this->object->getId())->pasteFromClipboard($target_folder_id);
1649  } catch (Exception $e) {
1650  $this->main_tpl->setOnScreenMessage(
1651  'failure',
1652  $this->lng->txt("mep_target_in_source_not_allowed") . " " . $e->getMessage(),
1653  true
1654  );
1655  }
1656 
1657  $this->ctrl->redirect($this, "listMedia");
1658  }
1659 
1660  protected function afterUpload($mob_ids): void
1661  {
1662  $this->addMobsToPool($mob_ids, "", false);
1663  }
1664 
1665  protected function afterUrlSaving(int $mob_id, string $long_desc): void
1666  {
1667  $this->addMobsToPool([$mob_id], $long_desc);
1668  }
1669 
1670  protected function addMobsToPool(
1671  array $mob_ids,
1672  string $long_desc = "",
1673  bool $redirect = true,
1674  bool $extract = false
1675  ): void {
1676  $ctrl = $this->ctrl;
1677  $user = $this->user;
1678 
1679  $item_ids = [];
1680  foreach ($mob_ids as $mob_id) {
1681  $object = new ilObjMediaObject($mob_id);
1682  if (!is_null($object)) {
1683  $mep_item = new ilMediaPoolItem();
1684  $mep_item->setTitle($object->getTitle());
1685  $mep_item->setType("mob");
1686  $mep_item->setForeignId($object->getId());
1687  $mep_item->create();
1688 
1689  $parent = $this->mep_item_id;
1690  $tree = $this->object->getTree();
1691  $tree->insertNode($mep_item->getId(), $parent);
1692  }
1693  }
1694 
1695  if ($redirect) {
1696  $ctrl->redirect($this, "listMedia");
1697  }
1698  }
1699 
1700  protected function afterPoolInsert(array $mob_ids): void
1701  {
1702  $this->addMobsToPool($mob_ids, "", true, true);
1703  }
1704 
1705  public function finishSingleUpload(int $mob_id): void
1706  {
1707  $this->ctrl->redirect($this, "listMedia");
1708  }
1709 
1710  protected function onMobUpdate(int $mob_id): void
1711  {
1712  }
1713 
1714 }
setOnScreenMessage(string $type, string $a_txt, bool $a_keep=false)
Set a message to be displayed to the user.
showFullscreen()
show media fullscreen
getFolderValues()
Get current values for folder from.
static getWebspaceDir(string $mode="filesystem")
get webspace directory
setLocator()
set Locator
static get(string $a_var)
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
getFormAction(object $a_gui_obj, ?string $a_fallback_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
Class ilObjectMetaDataGUI.
Class ilObjFolderGUI.
performBulkUpload()
Save bulk upload form.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getLogger(string $a_component_id)
Get component logger.
This class represents a selection list property in a property form.
openClipboard()
paste from clipboard
static _getRelativeDirectory(int $a_mob_id)
Get relative (to webspace dir) directory.
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...
New implementation of ilObjectGUI.
special template class to simplify handling of ITX/PEAR
const ROOT_FOLDER_ID
Definition: constants.php:32
$location
Definition: buildRTE.php:22
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
Definition: ltiregstart.php:31
infoScreen()
show information screen
returnFromItem()
Return from item editing.
static lookupForeignId(int $a_id)
setCloseTag(bool $a_val)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
Help GUI class.
allMedia()
list all media objects
infoScreenObject()
this one is called from the info button in the repository
insertFromClipboard()
insert media object from clipboard
setContent(string $a_html)
Sets content for standard template.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
prepareOutput(bool $show_sub_objects=true)
__construct(int $a_id=0, int $a_id_type=self::REPOSITORY_NODE_ID, int $a_parent_node_id=0)
loadLanguageModule(string $a_module)
Load language module.
ILIAS MediaPool InternalDomainService $domain
getTemplate()
Get standard template.
selectUploadDirFiles(?array $a_files=null)
Select files from upload directory.
ilGlobalTemplateInterface $main_tpl
setVariable(string $variable, $value='')
Sets the given variable to the given value.
static includePresentationJS(?ilGlobalTemplateInterface $a_tpl=null)
Include media object presentation JS.
static lookupTitle(int $a_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setOpenTag(bool $a_open)
getInput(string $a_post_var, bool $ensureValidation=true)
Returns the input of an item, if item provides getInput method and as fallback the value of the HTTP-...
setSettingsSubTabs(string $a_active)
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
const SYSTEM_FOLDER_ID
Definition: constants.php:35
getPathFull(int $a_endnode_id, int $a_startnode_id=0)
get path from a given startnode to a given endnode if startnode is not given the rootnode is startnod...
$path
Definition: ltiservices.php:29
showPreview()
Show content snippet.
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilToolbarGUI $toolbar
setAdvMdRecordObject(int $a_adv_ref_id, string $a_adv_type, string $a_adv_subtype="-")
Set object, that defines the adv md records being used.
afterSave(ilObject $new_object)
saveFolder()
Save folder form.
static getUsages(string $a_pc_type, int $a_pc_id, bool $a_incl_hist=true)
Get usages.
static getMimeType(string $a_file, bool $a_external=false)
get mime type for file
static _lookupTitle(int $obj_id)
FormAdapterGUI $bulk_upload_form
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
static isTypeAllowed(string $a_type)
setCreationMode(bool $mode=true)
ServerRequestInterface $request
setScreenIdComponent(string $a_comp)
static getMediaItemsForUploadHash(string $a_hash)
Get media items for upload hash.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
afterUrlSaving(int $mob_id, string $long_desc)
moveOneFileTo(UploadResult $uploadResult, string $destination, int $location=Location::STORAGE, string $file_name='', bool $override_existing=false)
Moves a single File (the attributes, metadata and upload-status of which are contained in UploadResul...
static getInstance(int $obj_id)
global $DIC
Definition: shib_login.php:22
getMediaItem(string $a_purpose)
get item for media purpose
cancelRemove()
cancel deletion of media objects/folders
Class ilMediaItem Media Item, component of a media object (file or reference)
ilGlobalTemplateInterface $tpl
listMedia()
list media objects
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMediaPoolPageGUI($mep_item_id, $old_nr=0)
Get media pool page.
getParentId(int $a_node_id)
get parent id of given node
Class FileUpload.
Definition: FileUpload.php:37
copyToClipboard()
copy media objects to clipboard
handleUploadResult(FileUpload $upload, UploadResult $result)
printToStdout(string $part=self::DEFAULT_BLOCK, bool $has_tabs=true, bool $skip_main_menu=false)
const IL_MODE_ALIAS
static getContentStylePath(int $a_style_id, bool $add_random=true, bool $add_token=true)
get content style path static (to avoid full reading)
static fixFilename(string $a_name)
Fix filename of uploaded file.
initMediaBulkForm(int $a_id, string $a_title)
Init media bulk form.
static getPreviewModalHTML(int $a_mpool_ref_id, ilGlobalTemplateInterface $a_tpl)
Get preview modal html.
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static redirect(string $a_script)
StandardGUIRequest $mep_request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Editing User Interface for MediaObjects within LMs (see ILIAS DTD)
form( $class_path, string $cmd, string $submit_caption="")
InternalGUIService $gui
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParentFolderId()
Get folder parent ID.
insertNode(int $a_node_id, int $a_parent_id, int $a_pos=self::POS_LAST_NODE, bool $a_reset_deletion_date=false)
insert new node with node_id under parent node with parent_id
addLocatorItems()
add locator items for media pool
addCss(string $a_css_file, string $media="screen")
Add a css file that should be included in the header.
User Interface class for media pool objects.
__construct(Container $dic, ilPlugin $plugin)
addJavaScript(string $a_js_file, bool $a_add_version_parameter=true, int $a_batch=2)
Add a javascript file that should be included in the header.
This class represents a text area property in a property form.
saveParameter(object $a_gui_obj, $a_parameter)
initFolderForm(string $a_mode="edit")
showMedia()
show media object
static lookupType(int $a_id)
ilLocatorGUI $locator
const IL_MODE_OUTPUT
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
addMobsToPool(array $mob_ids, string $long_desc="", bool $redirect=true, bool $extract=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _goto(string $a_target)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addHeaderAction()
Add header action menu.
ILIAS COPage Xsl XslManager $xsl
Class ilMediaPoolPage GUI class.
static set(string $a_var, $a_val)
Set a value.
setContentSubTabs(string $a_active)
Set sub tabs for content tab.
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
GUI class for object translation handling.
confirmRemove()
confirm remove of mobs
TableGUI class for recent changes in wiki.
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
ilAccessHandler $access