ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.McstImageGalleryGUI.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected \ILIAS\MediaObjects\MediaType\MediaTypeManager $media_types;
27  protected \ILIAS\MediaCast\InternalGUIService $gui;
28  protected \ILIAS\MediaCast\MediaCastManager $mc_manager;
29  protected \ILIAS\MediaCast\InternalDomainService $domain;
30  protected string $completed_callback;
31  protected string $rss_link;
32  protected \ilObjMediaCast $media_cast;
34  protected \ILIAS\DI\UIServices $ui;
35  protected \ilLanguage $lng;
36  protected \ilObjUser $user;
37  protected \ilCtrl $ctrl;
38  protected \ilToolbarGUI $toolbar;
39 
40  public function __construct(
41  \ilObjMediaCast $obj,
42  $tpl = null,
43  string $rss_link = ""
44  ) {
45  global $DIC;
46 
47  $this->ui = $DIC->ui();
48  $this->rss_link = $rss_link;
49  $this->lng = $DIC->language();
50  $this->media_cast = $obj;
51  $this->tpl = $tpl;
52  $this->user = $DIC->user();
53  $this->ctrl = $DIC->ctrl();
54  $this->toolbar = $DIC->toolbar();
55  $this->media_types = $DIC->mediaObjects()->internal()->domain()->mediaType();
56  $this->mc_manager = $DIC->mediaCast()->internal()->domain()->mediaCast($this->media_cast);
57  $this->gui = $DIC->mediaCast()->internal()->gui();
58  $this->domain = $DIC->mediaCast()->internal()->domain();
59  }
60 
61  public function executeCommand(): void
62  {
63  $ctrl = $this->ctrl;
64 
65  $next_class = $ctrl->getNextClass($this);
66  $cmd = $ctrl->getCmd();
67 
68  switch ($next_class) {
69  default:
70  if (in_array($cmd, array("downloadAll"))) {
71  $this->$cmd();
72  }
73  }
74  }
75 
76  public function getHTML(): string
77  {
78  $f = $this->ui->factory();
79  $renderer = $this->ui->renderer();
80  $ctrl = $this->ctrl;
81  $lng = $this->lng;
82  $toolbar = $this->toolbar;
83 
84  // toolbar
85  $toolbar->setFormAction($ctrl->getFormAction($this));
86  if ($this->media_cast->getDownloadable()) {
87  $toolbar->addFormButton($lng->txt("mcst_download_all"), "downloadAll");
88  }
89 
90  if ($this->rss_link !== "") {
91  $b = $f->link()->standard(
92  $lng->txt("mcst_webfeed"),
94  )->withOpenInNewViewport(true);
95  $toolbar->addComponent($b);
96  }
97 
98  // cards and modals
99  $cards = [];
100  $modals = [];
101 
102  $pages = [];
103 
104  $lp_collection_mode = $this->domain->learningProgress($this->media_cast)->isCollectionMode();
105 
106  $mob_modals = [];
107  foreach ($this->media_cast->getSortedItemsArray() as $item) {
108  $mob = new \ilObjMediaObject($item["mob_id"]);
109  $med = $mob->getMediaItem("Standard");
110  if (!in_array($med->getFormat(), iterator_to_array($this->media_types->getAllowedImageMimeTypes()), true)) {
111  continue;
112  }
113 
114  $resource = $mob->getStandardSrc();
115 
116  $image = $f->image()->responsive(
117  $resource,
118  $mob->getTitle()
119  );
120 
121  $pages[] = $f->modal()->lightboxImagePage($image, $mob->getTitle());
122  if ($lp_collection_mode) {
123  $mob_modals[$mob->getId()] = $f->modal()->lightbox($pages);
124  $pages = [];
125  }
126  }
127  $main_modal = null;
128  if (!$lp_collection_mode) {
129  $main_modal = $f->modal()->lightbox($pages);
130  }
131 
132  $cnt = 0;
133  $items = $this->media_cast->getSortedItemsArray();
134  $total = count($items);
135  foreach ($items as $item) {
136  $mob = new \ilObjMediaObject($item["mob_id"]);
137  $med = $mob->getMediaItem("Standard");
138 
139  if (!in_array($med->getFormat(), iterator_to_array($this->media_types->getAllowedImageMimeTypes()), true)) {
140  continue;
141  }
142 
143  $resource = $mob->getStandardSrc();
144 
145  $preview_resource = $resource;
146  if ($mob->getVideoPreviewPic() != "") {
147  // $preview_resource = $mob->getVideoPreviewPic();
148  }
149 
150 
151  $preview_image = $f->image()->responsive(
152  $preview_resource,
153  $mob->getTitle()
154  );
155 
156  $image = $f->image()->responsive(
157  $resource,
158  $mob->getTitle()
159  );
160 
161  if (!$lp_collection_mode) {
162  $modal = $main_modal;
163  } else {
164  $modal = $mob_modals[$mob->getId()];
165  }
166 
167  $card_image = $preview_image->withAction($modal->getShowSignal());
168  $slide_to = "";
169  $completed_cb = "";
170  if (!$lp_collection_mode) {
171  if ($total > 1) {
172  $slide_to = "document.querySelector('.modal-body .carousel [data-slide-to=\"" . $cnt . "\"]').click();";
173  }
174  } else {
175  $completed_cb = $this->completed_callback . '&mob_id=' . $mob->getId();
176  $completed_cb = "$.ajax({type:'GET', url: '$completed_cb'});";
177  }
178 
179  $card_image = $card_image->withAdditionalOnLoadCode(function ($id) use ($slide_to, $completed_cb) {
180  return "$('#$id').click(function(e) { $slide_to $completed_cb });";
181  });
182  if (!$lp_collection_mode) {
183  $cnt++;
184  }
185 
186  $sections = ($mob->getDescription())
187  ? [$f->legacy()->content($mob->getDescription())]
188  : [];
189 
190  if ($this->media_cast->getDownloadable()) {
191  $ctrl->setParameterByClass("ilobjmediacastgui", "item_id", $item["id"]);
192  $ctrl->setParameterByClass("ilobjmediacastgui", "purpose", "Standard");
193  $download = $ctrl->getLinkTargetByClass("ilobjmediacastgui", "downloadItem");
194  $sections[] = $f->button()->standard($lng->txt("download"), $download);
195  }
196 
197  // comments
198  if ($this->mc_manager->commentsActive()) {
199  $comments_gui = $this->gui->comments()->commentGUI(
200  $this->media_cast->getRefId(),
201  (int) $item["id"]
202  );
203  $sections[] = $f->legacy()->content($comments_gui->getGlyph());
204  }
205 
206  //$title_button = $f->button()->shy($mob->getTitle(), $modal->getShowSignal());
207  $title = $mob->getTitle();
208 
209  $card = $f->card()->standard(
210  $title,
211  $card_image
212  )->withSections(
213  $sections
214  )->withTitleAction($modal->getShowSignal());
215 
216 
217  $cards[] = $card;
218  $modals[] = $modal;
219  }
220 
221  $deck = $f->deck($cards);
222 
223  if (count($pages) === 0 && count($mob_modals) === 0) {
224  return "";
225  }
226  if (!$lp_collection_mode) {
227  $modals = [$main_modal];
228  } else {
229  $modals = $mob_modals;
230  }
231  return "<div id='il-mcst-img-gallery'>" . $renderer->render(array_merge([$deck], $modals)) . "</div>";
232  }
233 
234  protected function downloadAll(): void
235  {
236  $user = $this->user;
237  $download_task = new \ILIAS\MediaCast\BackgroundTasks\DownloadAllBackgroundTask(
238  (int) $user->getId(),
239  (int) $this->media_cast->getRefId(),
240  (int) $this->media_cast->getId()
241  );
242 
243  if ($download_task->run()) {
244  $this->tpl->setOnScreenMessage(
245  'success',
246  $this->lng->txt('mcst_download_started_bg'),
247  true
248  );
249  }
250 
251  $this->ctrl->redirectByClass("ilobjmediacastgui", "showContent");
252  }
253 
254  public function setCompletedCallback(string $completed_callback): void
255  {
256  $this->completed_callback = $completed_callback;
257  }
258 }
$renderer
__construct(\ilObjMediaCast $obj, $tpl=null, string $rss_link="")
setFormAction(string $a_val, bool $a_multipart=false, string $a_target="")
Set form action (if form action is set, toolbar is wrapped into form tags)
ilGlobalTemplateInterface $tpl
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ILIAS MediaCast MediaCastManager $mc_manager
getNextClass($a_gui_class=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
ILIAS MediaObjects MediaType MediaTypeManager $media_types
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
ILIAS MediaCast InternalDomainService $domain
setCompletedCallback(string $completed_callback)
ILIAS MediaCast InternalGUIService $gui