65 protected \ILIAS\DI\UIServices
$ui;
68 protected \ILIAS\FileUpload\FileUpload
$upload;
76 Closure $finish_single_upload = null,
81 $this->
lng = $DIC->language();
82 $this->
lng->loadLanguageModule(
"mob");
83 $this->
lng->loadLanguageModule(
"content");
84 $this->
access = $DIC->access();
86 $this->
ctrl = $DIC->ctrl();
87 $this->main_tpl = $DIC->ui()->mainTemplate();
88 $this->
ui = $DIC->ui();
89 $this->
upload = $DIC->upload();
90 $this->mob_log = $DIC->logger()->mob();
98 $this->type_manager = $DIC->mediaObjects()
103 $this->
ctrl->saveParameter($this, [
"mep",
"pool_view"]);
105 $this->request = $DIC->mediaObjects()
111 $this->requested_mep = $this->request->getMediaPoolId();
112 $this->
ctrl->setParameter($this,
"mep", $this->requested_mep);
114 $pv = $this->request->getPoolView();
115 $this->pool_view = (in_array($pv, [self::POOL_VIEW_FOLDER, self::POOL_VIEW_ALL]))
117 : self::POOL_VIEW_FOLDER;
118 $this->gui = $DIC->mediaObjects()->internal()->gui();
124 $this->all_suffixes = $a_val;
135 $this->all_mime_types = $a_val;
152 if (in_array(self::TYPE_ALL, $this->accept_types,
true)) {
155 if (in_array(self::TYPE_VIDEO, $this->accept_types,
true)) {
156 $suffixes = array_merge($suffixes, $this->type_manager->getVideoSuffixes());
158 if (in_array(self::TYPE_AUDIO, $this->accept_types,
true)) {
159 $suffixes = array_merge($suffixes, $this->type_manager->getAudioMimeTypes());
161 if (in_array(self::TYPE_IMAGE, $this->accept_types)) {
162 $suffixes = array_merge($suffixes, $this->type_manager->getImageSuffixes());
173 if (in_array(self::TYPE_ALL, $this->accept_types)) {
176 if (in_array(self::TYPE_VIDEO, $this->accept_types)) {
177 $mimes[] =
"video/mp4";
179 $mimes[] =
"video/vimeo";
180 $mimes[] =
"video/youtube";
183 if (in_array(self::TYPE_AUDIO, $this->accept_types)) {
184 $mimes[] =
"audio/mpeg";
186 if (in_array(self::TYPE_IMAGE, $this->accept_types)) {
187 $mimes[] =
"image/png";
188 $mimes[] =
"image/jpeg";
189 $mimes[] =
"image/gif";
199 $cmd = $ctrl->
getCmd(
"creationSelection");
201 switch ($next_class) {
203 case "ilpropertyformgui":
208 case strtolower(ilRepoStandardUploadHandlerGUI::class):
210 $gui = $form->getRepoStandardUploadHandlerGUI(
"media_files");
211 $this->
ctrl->forwardCommand($gui);
215 if (in_array($cmd, [
"creationSelection",
"uploadFile",
"saveUrl",
"cancel",
"cancelCreate",
"listPoolItems",
216 "insertFromPool",
"poolSelection",
"selectPool",
"applyFilter",
"resetFilter",
"performBulkUpload",
217 "editTitlesAndDescriptions",
"saveTitlesAndDescriptions"])) {
227 $acc = new \ilAccordionGUI();
235 foreach ($forms as $form_type => $cf) {
236 $htpl = new \ilTemplate(
"tpl.creation_acc_head.html",
true,
true,
"Services/Object");
240 if (method_exists($this,
"getCreationFormTitle")) {
241 $form_title = $this->getCreationFormTitle($form_type);
244 $form_title = $cf->getTitle();
248 $htpl->setVariable(
"TITLE", $this->
lng->txt(
"option") .
" " . $cnt .
": " .
252 $cf->setTitleIcon(
"");
253 $cf->setTableWidth(
"100%");
255 $acc->addItem($htpl->get(), $cf->getHTML());
257 $acc->addItem($htpl->get(), $cf->render());
268 if (is_null($this->bulk_upload_form)) {
269 $mep_hash = uniqid();
270 $this->
ctrl->setParameter($this,
"mep_hash", $mep_hash);
271 $this->bulk_upload_form = $this->gui
272 ->form(self::class,
'performBulkUpload')
273 ->section(
"props", $this->
lng->txt(
'mob_upload_file'))
276 $this->
lng->txt(
"files"),
277 \Closure::fromCallable([$this,
'handleUploadResult']),
294 $form = new \ilPropertyFormGUI();
297 $ti = new \ilTextInputGUI($lng->
txt(
"mob_url"),
"url");
298 $info = $lng->
txt(
"mob_url_info1") .
" " . implode(
", ", $this->
getSuffixes()) .
".";
299 if (in_array(self::TYPE_VIDEO, $this->accept_types)) {
300 $info.=
" " . $lng->
txt(
"mob_url_info_video");
303 $ti->setRequired(
true);
306 $form->addCommandButton(
"saveUrl", $lng->
txt(
"save"));
307 $form->addCommandButton(
"cancel", $lng->
txt(
"cancel"));
309 $form->setTitle($lng->
txt(
"mob_external_url"));
320 $form = new \ilPropertyFormGUI();
323 $lng->
txt(
"obj_mep"),
329 $exp->setSelectableTypes([
"mep"]);
330 $exp->setTypeWhiteList([
"root",
"mep",
"cat",
"crs",
"grp",
"fold"]);
332 $form->addItem($mcst);
334 $form->addCommandButton(
"listPoolItems", $lng->
txt(
"continue"));
335 $form->addCommandButton(
"cancel", $lng->
txt(
"cancel"));
337 $form->setTitle($lng->
txt(
"mob_choose_from_pool"));
412 $mob->setTitle($title);
413 $mob->setDescription(
"");
416 $mob->createDirectory();
418 $mob->addMediaItem($media_item);
419 $media_item->setPurpose(
"Standard");
423 $file = $mob_dir .
"/" . $file_name;
438 $media_item->setFormat(
$format);
440 $media_item->setLocationType(
"LocalFile");
441 $media_item->setUploadHash($this->request->getUploadHash());
443 $item_ids[] = $mob->getId();
446 $mob->generatePreviewPic(320, 240);
450 $med_item->determineDuration();
457 HandlerResult::STATUS_OK,
469 if (!$form->isValid()) {
470 $this->main_tpl->setContent($form->render());
474 $this->
ctrl->setParameter($this,
"mep_hash", $this->request->getUploadHash());
475 $this->
ctrl->redirect($this,
"editTitlesAndDescriptions");
492 $tb->addFormButton($lng->
txt(
"save"),
"saveTitlesAndDescriptions");
493 $tb->setOpenFormTag(
true);
494 $tb->setCloseFormTag(
false);
495 $tb->setId(
"tb_top");
497 if (count($media_items) == 1 && $this->finish_single_upload) {
498 $mi = current($media_items);
503 $html = $tb->getHTML();
504 foreach ($media_items as $mi) {
507 $acc->setId(
"acc_" . $mi[
"mob_id"]);
511 $acc->addItem($mob->getTitle(), $form->getHTML());
513 $html .= $acc->getHTML();
516 $html .= $tb->getHTML();
517 $tb->setOpenFormTag(
false);
518 $tb->setCloseFormTag(
true);
519 $tb->setId(
"tb_bottom");
529 $form->setOpenTag(
false);
530 $form->setCloseTag(
false);
534 $ti->setValue($a_title);
551 foreach ($media_items as $mi) {
555 $title = $form->getInput(
"title_" . $mi[
"mob_id"]);
556 $desc = $form->getInput(
"description_" . $mi[
"mob_id"]);
557 if (trim($title) !=
"") {
558 $mob->setTitle($title);
560 $mob->setDescription($desc);
564 $this->main_tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
584 if (!$form->checkInput()) {
585 $form->setValuesByPost();
586 $this->main_tpl->setContent($form->getHTML());
593 $mob->addMediaItem($mediaItem);
594 $mediaItem->setPurpose(
"Standard");
598 if (!is_dir($mob_dir)) {
599 $mob->createDirectory();
601 $locationType =
"Reference";
602 $url = $form->getInput(
"url");
603 $url_pi = pathinfo(basename(
$url));
604 $title = str_replace(
"_",
" ", $url_pi[
"filename"]);
609 $this->main_tpl->setOnScreenMessage(
611 $this->
lng->txt(
"mob_type_not_supported") .
" " .
$format 613 $form->setValuesByPost();
614 $this->main_tpl->setContent($form->getHTML());
618 $mediaItem->setFormat(
$format);
619 $mediaItem->setLocation(
$url);
620 $mediaItem->setLocationType(
"Reference");
621 $mediaItem->setHAlign(
"Left");
622 $mob->setTitle($title);
624 $mob->getExternalMetadata();
626 $this->main_tpl->setOnScreenMessage(
'failure', $e->getMessage(),
true);
627 $form->setValuesByPost();
628 $this->main_tpl->setContent($form->getHTML());
632 $long_desc = $mob->getLongDescription();
636 $mob->generatePreviewPic(320, 240);
640 $med_item->determineDuration();
663 if ($this->requested_mep === 0) {
664 $this->main_tpl->setOnScreenMessage(
"failure", $this->
lng->txt(
"mob_please_select_pool"));
665 $form->setValuesByPost();
666 $this->main_tpl->setContent($form->getHTML());
670 if ($this->requested_mep > 0 &&
671 $access->
checkAccess(
"write",
"", $this->requested_mep)
677 $lng->
txt(
"cont_switch_to_media_pool"),
684 $ctrl->
setParameter($this,
"pool_view", self::POOL_VIEW_FOLDER);
685 $actions[$lng->
txt(
"folders")] = $ctrl->
getLinkTarget($this,
"listPoolItems");
686 $ctrl->
setParameter($this,
"pool_view", self::POOL_VIEW_ALL);
687 $actions[$lng->
txt(
"mep_all_mobs")] = $ctrl->
getLinkTarget($this,
"listPoolItems");
688 $ctrl->
setParameter($this,
"pool_view", $this->pool_view);
689 $aria_label = $lng->
txt(
"cont_change_pool_view");
690 $view_control =
$f->viewControl()->mode($actions, $aria_label)->withActive(($this->pool_view == self::POOL_VIEW_FOLDER)
691 ? $lng->
txt(
"folders") : $lng->
txt(
"mep_all_mobs"));
693 $tb->addComponent($view_control);
695 $html = $tb->getHTML();
699 $html .= $pool_table->getHTML();
708 $mpool_table->resetOffset();
709 $mpool_table->writeFilterToSession();
710 $this->
ctrl->redirect($this,
"listPoolItems");
716 $mpool_table->resetOffset();
717 $mpool_table->resetFilter();
718 $this->
ctrl->redirect($this,
"listPoolItems");
730 $this->pool_view == self::POOL_VIEW_ALL
732 $mpool_table->setFilterCommand(
"applyFilter");
733 $mpool_table->setResetCommand(
"resetFilter");
734 $mpool_table->setInsertCommand(
"insertFromPool");
745 $ctrl->
setParameter($this,
"mep", $this->request->getSelectedMediaPoolRefId());
746 $ctrl->
redirect($this,
"listPoolItems");
760 $exp->setTypeWhiteList(array(
"root",
"cat",
"grp",
"fold",
"crs",
"mep"));
761 $exp->setClickableTypes(array(
'mep'));
762 if (!$exp->handleCommand()) {
772 $ids = $this->request->getIds();
773 if (count($ids) == 0) {
774 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"));
779 foreach ($ids as $pool_entry_id) {
782 if (!in_array($mob->getMediaItem(
"Standard")->getFormat(), $this->
getMimeTypes())) {
783 $this->main_tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"mob_mime_type_not_allowed") .
": " .
784 $mob->getMediaItem(
"Standard")->getFormat());
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...
redirect(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false)
getCmd(string $fallback_command=null)
$location
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkAccess(string $a_permission, string $a_cmd, int $a_ref_id, string $a_type="", ?int $a_obj_id=null, ?int $a_tree_id=null)
check access for an object (provide $a_type and $a_obj_id if available for better performance) ...
loadLanguageModule(string $a_module)
Load language module.
returnToParent(object $a_gui_obj, string $a_anchor=null)
forwardCommand(object $a_gui_object)
static _lookupObjId(int $ref_id)
getNextClass($a_gui_class=null)
setContent(string $a_html)
Sets content for standard template.
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...
Class BasicHandlerResult.
getLinkTarget(object $a_gui_obj, string $a_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
This class represents a text area property in a property form.
saveParameter(object $a_gui_obj, $a_parameter)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
static _lookupType(int $id, bool $reference=false)
getFormAction(object $a_gui_obj, string $a_fallback_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...