ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.McstImageGalleryGUI.php
Go to the documentation of this file.
1 <?php
2 
25 {
26  protected \ILIAS\MediaCast\InternalDomainService $domain;
27  protected string $completed_callback;
28  protected string $rss_link;
29  protected \ilObjMediaCast $media_cast;
31  protected \ILIAS\DI\UIServices $ui;
32  protected \ilLanguage $lng;
33  protected \ilObjUser $user;
34  protected \ilCtrl $ctrl;
35  protected \ilToolbarGUI $toolbar;
36 
37  public function __construct(
38  \ilObjMediaCast $obj,
39  $tpl = null,
40  string $rss_link = ""
41  ) {
42  global $DIC;
43 
44  $this->ui = $DIC->ui();
45  $this->rss_link = $rss_link;
46  $this->lng = $DIC->language();
47  $this->media_cast = $obj;
48  $this->tpl = $tpl;
49  $this->user = $DIC->user();
50  $this->ctrl = $DIC->ctrl();
51  $this->toolbar = $DIC->toolbar();
52  $this->domain = $DIC->mediaCast()->internal()->domain();
53  }
54 
55  public function executeCommand(): void
56  {
57  $ctrl = $this->ctrl;
58 
59  $next_class = $ctrl->getNextClass($this);
60  $cmd = $ctrl->getCmd();
61 
62  switch ($next_class) {
63  default:
64  if (in_array($cmd, array("downloadAll"))) {
65  $this->$cmd();
66  }
67  }
68  }
69 
70  public function getHTML(): string
71  {
72  $f = $this->ui->factory();
73  $renderer = $this->ui->renderer();
74  $ctrl = $this->ctrl;
75  $lng = $this->lng;
76  $toolbar = $this->toolbar;
77 
78  // toolbar
79  $toolbar->setFormAction($ctrl->getFormAction($this));
80  if ($this->media_cast->getDownloadable()) {
81  $toolbar->addFormButton($lng->txt("mcst_download_all"), "downloadAll");
82  }
83 
84  if ($this->rss_link !== "") {
85  $b = $f->link()->standard(
86  $lng->txt("mcst_webfeed"),
88  )->withOpenInNewViewport(true);
89  $toolbar->addComponent($b);
90  }
91 
92  // cards and modals
93  $cards = [];
94  $modals = [];
95 
96  $pages = [];
97 
98  $lp_collection_mode = $this->domain->learningProgress($this->media_cast)->isCollectionMode();
99 
100  $mob_modals = [];
101  foreach ($this->media_cast->getSortedItemsArray() as $item) {
102  $mob = new \ilObjMediaObject($item["mob_id"]);
103  $med = $mob->getMediaItem("Standard");
104 
105  if (!in_array($med->getFormat(), ["image/png","image/jpeg","image/gif"])) {
106  continue;
107  }
108 
109  if (strcasecmp("Reference", $med->getLocationType()) == 0) {
110  $resource = $med->getLocation();
111  } else {
112  $path_to_file = \ilObjMediaObject::_getURL($mob->getId()) . "/" . $med->getLocation();
113  $resource = ilWACSignedPath::signFile($path_to_file);
114  }
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  foreach ($this->media_cast->getSortedItemsArray() as $item) {
134  $mob = new \ilObjMediaObject($item["mob_id"]);
135  $med = $mob->getMediaItem("Standard");
136 
137  if (!in_array($med->getFormat(), ["image/png","image/jpeg","image/gif"])) {
138  continue;
139  }
140 
141  if (strcasecmp("Reference", $med->getLocationType()) == 0) {
142  $resource = $med->getLocation();
143  } else {
144  $path_to_file = \ilObjMediaObject::_getURL($mob->getId()) . "/" . $med->getLocation();
145  $resource = ilWACSignedPath::signFile($path_to_file);
146  }
147  $preview_resource = $resource;
148  if ($mob->getVideoPreviewPic() != "") {
149  $preview_resource = ilWACSignedPath::signFile($mob->getVideoPreviewPic());
150  }
151 
152 
153  $preview_image = $f->image()->responsive(
154  $preview_resource,
155  $mob->getTitle()
156  );
157 
158  $image = $f->image()->responsive(
159  $resource,
160  $mob->getTitle()
161  );
162 
163  if (!$lp_collection_mode) {
164  $modal = $main_modal;
165  } else {
166  $modal = $mob_modals[$mob->getId()];
167  }
168 
169  $card_image = $preview_image->withAction($modal->getShowSignal());
170  $slide_to = "";
171  $completed_cb = "";
172  if (!$lp_collection_mode) {
173  $slide_to = "document.querySelector('.modal-body .carousel [data-slide-to=\"" . $cnt . "\"]').click();";
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($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  //$title_button = $f->button()->shy($mob->getTitle(), $modal->getShowSignal());
198  $title = $mob->getTitle();
199 
200  $card = $f->card()->standard(
201  $title,
202  $card_image
203  )->withSections(
204  $sections
205  )->withTitleAction($modal->getShowSignal());
206 
207  $cards[] = $card;
208  $modals[] = $modal;
209  }
210 
211  $deck = $f->deck($cards);
212 
213  if (count($pages) === 0 && count($mob_modals) === 0) {
214  return "";
215  }
216  if (!$lp_collection_mode) {
217  $modals = [$main_modal];
218  } else {
219  $modals = $mob_modals;
220  }
221  return "<div id='il-mcst-img-gallery'>" . $renderer->render(array_merge([$deck], $modals)) . "</div>";
222  }
223 
224  protected function downloadAll(): void
225  {
226  $user = $this->user;
227  $download_task = new \ILIAS\MediaCast\BackgroundTasks\DownloadAllBackgroundTask(
228  (int) $user->getId(),
229  (int) $this->media_cast->getRefId(),
230  (int) $this->media_cast->getId()
231  );
232 
233  if ($download_task->run()) {
234  $this->tpl->setOnScreenMessage(
235  'success',
236  $this->lng->txt('mcst_download_started_bg'),
237  true
238  );
239  }
240 
241  $this->ctrl->redirectByClass("ilobjmediacastgui", "showContent");
242  }
243 
244  public function setCompletedCallback(string $completed_callback): void
245  {
246  $this->completed_callback = $completed_callback;
247  }
248 }
__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
global $DIC
Definition: feed.php:28
getNextClass($a_gui_class=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS MediaCast InternalDomainService $domain
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static signFile(string $path_to_file)
static _getURL(int $a_mob_id)
get directory for files of media object
setCompletedCallback(string $completed_callback)