ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilBadgeProfileGUI.php
Go to the documentation of this file.
1 <?php
2 
23 
25 {
26  final public const BACKPACK_EMAIL = 'badge_mozilla_bp';
27 
29  protected ilCtrl $ctrl;
30  protected ilLanguage $lng;
32  protected ilTabsGUI $tabs;
33  protected ilObjUser $user;
35  protected \ILIAS\UI\Factory $factory;
36  protected \ILIAS\UI\Renderer $renderer;
38  private readonly TileView $tile_view;
39 
40  public function __construct()
41  {
42  global $DIC;
43 
44  $this->ctrl = $DIC->ctrl();
45  $this->lng = $DIC->language();
46  $this->tpl = $DIC['tpl'];
47  $this->tabs = $DIC->tabs();
48  $this->user = $DIC->user();
49  $this->access = $DIC->access();
50  $this->factory = $DIC->ui()->factory();
51  $this->renderer = $DIC->ui()->renderer();
52  $this->request = new ilBadgeGUIRequest(
53  $DIC->http(),
54  $DIC->refinery()
55  );
56 
57  $this->noti_repo = new BadgeNotificationPrefRepository();
58 
59  $this->tile_view = new TileView(
60  $DIC,
61  self::class,
62  new Tile($DIC),
63  new PresentationHeader($DIC, self::class)
64  );
65  }
66 
67  public function executeCommand(): void
68  {
69  $ilCtrl = $this->ctrl;
70  $lng = $this->lng;
71 
72  $lng->loadLanguageModule('badge');
73 
74  switch ($ilCtrl->getNextClass()) {
75  default:
76  $cmd = $ilCtrl->getCmd('listBadges');
77 
78  global $DIC;
79  $query = $DIC->http()->wrapper()->query();
80  $action = '';
81  $parameter = 'badge_table_action';
82  if ($query->has($parameter)) {
83  $action = $query->retrieve($parameter, $DIC->refinery()->kindlyTo()->string());
84  }
85  if ($action === 'obj_badge_activate') {
86  $this->activate();
87  } elseif ($action === 'obj_badge_deactivate') {
88  $this->deactivate();
89  }
90  $this->$cmd();
91  break;
92  }
93  }
94 
95  protected function listBadges(): void
96  {
97  $this->tpl->setContent($this->renderDeck($this->tile_view->show()));
98  $this->noti_repo->updateLastCheckedTimestamp();
99  }
100 
101  private function renderDeck(string $deck): string
102  {
103  $template = new ilTemplate('tpl.badge_backpack.html', true, true, 'components/ILIAS/Badge/');
104  $template->setVariable('DECK', $deck);
105  return $template->get();
106  }
107 
108  protected function manageBadges(): void
109  {
110  $tpl = new ilBadgePersonalTableGUI();
111  $tpl->renderTable();
112  }
113 
114  protected function getMultiSelection(): array
115  {
116  $ids = $this->request->getBadgeIds();
117  if (count($ids) > 0) {
118  $res = [];
119  foreach ($ids as $id) {
120  $ass = new ilBadgeAssignment($id, $this->user->getId());
121  if ($ass->getTimestamp()) {
122  $res[] = $ass;
123  }
124  }
125 
126  return $res;
127  }
128 
129  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('select_one'), true);
130  $this->ctrl->redirect($this, 'manageBadges');
131  }
132 
133  protected function activate(): void
134  {
135  $lng = $this->lng;
136  $ilCtrl = $this->ctrl;
137 
138  foreach ($this->getMultiSelection() as $ass) {
139  // already active?
140  if (!$ass->getPosition()) {
141  $ass->setPosition(999);
142  $ass->store();
143  }
144  }
145 
146  $this->tpl->setOnScreenMessage('success', $lng->txt('position_updated'), true);
147  $ilCtrl->redirect($this, 'manageBadges');
148  }
149 
150  protected function deactivate(): void
151  {
152  $lng = $this->lng;
153  $ilCtrl = $this->ctrl;
154 
155  foreach ($this->getMultiSelection() as $ass) {
156  // already inactive?
157  if ($ass->getPosition()) {
158  $ass->setPosition(null);
159  $ass->store();
160  }
161  }
162 
163  $this->tpl->setOnScreenMessage('success', $lng->txt('position_updated'), true);
164  $ilCtrl->redirect($this, 'manageBadges');
165  }
166 
167  protected function activateInCard(): void
168  {
169  $lng = $this->lng;
170  $ilCtrl = $this->ctrl;
171 
172  foreach ($this->getMultiSelection() as $ass) {
173  // already active?
174  if (!$ass->getPosition()) {
175  $ass->setPosition(999);
176  $ass->store();
177  }
178  }
179 
180  $this->tpl->setOnScreenMessage('success', $lng->txt('position_updated'), true);
181  $ilCtrl->redirect($this, 'listBadges');
182  }
183 
184  protected function deactivateInCard(): void
185  {
186  $lng = $this->lng;
187  $ilCtrl = $this->ctrl;
188 
189  foreach ($this->getMultiSelection() as $ass) {
190  // already inactive?
191  if ($ass->getPosition()) {
192  $ass->setPosition(null);
193  $ass->store();
194  }
195  }
196 
197  $this->tpl->setOnScreenMessage('success', $lng->txt('position_updated'), true);
198  $ilCtrl->redirect($this, 'listBadges');
199  }
200 
201  protected function setBackpackSubTabs(): void
202  {
203  $ilTabs = $this->tabs;
204  $lng = $this->lng;
205  $ilCtrl = $this->ctrl;
206 
207  $ilTabs->addSubTab(
208  'backpack_badges',
209  $lng->txt('obj_bdga'),
210  $ilCtrl->getLinkTarget($this, 'listBackpackGroups')
211  );
212 
213  $ilTabs->addSubTab(
214  'backpack_settings',
215  $lng->txt('settings'),
216  $ilCtrl->getLinkTarget($this, 'editSettings')
217  );
218 
219  $ilTabs->activateTab('backpack_badges');
220  }
221 
222  protected function listBackpackGroups(): void
223  {
224  $lng = $this->lng;
225  $tpl = $this->tpl;
226  $ilCtrl = $this->ctrl;
227  $ilTabs = $this->tabs;
228 
229  $this->setBackpackSubTabs();
230  $ilTabs->activateSubTab('backpack_badges');
231 
232  $this->tpl->setOnScreenMessage('info', $lng->txt('badge_backpack_gallery_info'));
233 
234  $bp = new ilBadgeBackpack($this->getBackpackMail());
235  $bp_groups = $bp->getGroups();
236 
237  if (!count($bp_groups)) {
238  $this->tpl->setOnScreenMessage('info', $lng->txt('badge_backpack_no_groups'));
239  return;
240  }
241 
242  $tmpl = new ilTemplate('tpl.badge_backpack.html', true, true, 'components/ILIAS/Badge/');
243 
244  $tmpl->setVariable('BACKPACK_TITLE', $lng->txt('badge_backpack_list'));
245 
247 
248  foreach ($bp_groups as $group_id => $group) {
249  $bp_badges = $bp->getBadges($group_id);
250  if (count($bp_badges)) {
251  foreach ($bp_badges as $idx => $badge) {
252  $tmpl->setCurrentBlock('badge_bl');
253  $tmpl->setVariable('BADGE_TITLE', $badge['title']);
254  $tmpl->setVariable('BADGE_DESC', $badge['description']);
255  $tmpl->setVariable('BADGE_IMAGE', $badge['image_url']);
256  $tmpl->setVariable('BADGE_CRITERIA', $badge['criteria_url']);
257  $tmpl->setVariable('BADGE_ISSUER', $badge['issuer_name']);
258  $tmpl->setVariable('BADGE_ISSUER_URL', $badge['issuer_url']);
259  $tmpl->setVariable('BADGE_DATE', ilDatePresentation::formatDate($badge['issued_on']));
260  $tmpl->parseCurrentBlock();
261  }
262  }
263 
264  $tmpl->setCurrentBlock('group_bl');
265  $tmpl->setVariable('GROUP_TITLE', $group['title']);
266  $tmpl->parseCurrentBlock();
267  }
268 
269  $tpl->setContent($tmpl->get());
270  }
271 
272  //
273  // settings
274  //
275 
276  protected function getBackpackMail(): string
277  {
278  $ilUser = $this->user;
279 
280  $mail = $ilUser->getPref(self::BACKPACK_EMAIL);
281  if (!$mail) {
282  $mail = $ilUser->getEmail();
283  }
284  return $mail;
285  }
286 
287  protected function initSettingsForm(): ilPropertyFormGUI
288  {
289  $lng = $this->lng;
290  $ilCtrl = $this->ctrl;
291 
292  $form = new ilPropertyFormGUI();
293  $form->setFormAction($ilCtrl->getFormAction($this, 'saveSettings'));
294  $form->setTitle($lng->txt('settings'));
295 
296  $email = new ilEMailInputGUI($lng->txt('badge_backpack_email'), 'email');
297  // $email->setRequired(true);
298  $email->setInfo($lng->txt('badge_backpack_email_info'));
299  $email->setValue($this->getBackpackMail());
300  $form->addItem($email);
301 
302  $form->addCommandButton('saveSettings', $lng->txt('save'));
303 
304  return $form;
305  }
306 
307  protected function editSettings(?ilPropertyFormGUI $a_form = null): void
308  {
309  $tpl = $this->tpl;
310  $ilCtrl = $this->ctrl;
311  $ilTabs = $this->tabs;
312 
313  $ilCtrl->redirect($this, 'listBadges');
314  }
315 
316  protected function saveSettings(): void
317  {
318  $ilUser = $this->user;
319  $lng = $this->lng;
320  $ilCtrl = $this->ctrl;
321 
322  $form = $this->initSettingsForm();
323  if ($form->checkInput()) {
324  $new_email = $form->getInput('email');
325  $old_email = $this->getBackpackMail();
326 
327  ilObjUser::_writePref($ilUser->getId(), self::BACKPACK_EMAIL, $new_email);
328 
329  // if email was changed: delete badge files
330  if ($new_email != $old_email) {
331  ilBadgeAssignment::clearBadgeCache($ilUser->getId());
332  }
333 
334  $this->tpl->setOnScreenMessage('success', $lng->txt('settings_saved'), true);
335  $ilCtrl->redirect($this, 'editSettings');
336  }
337 
338  $form->setValuesByPost();
339  $this->editSettings($form);
340  }
341 }
static array static setUseRelativeDates(bool $a_status)
set use relative dates
$res
Definition: ltiservices.php:66
ILIAS UI Renderer $renderer
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...
BadgeNotificationPrefRepository $noti_repo
factory()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
renderer()
setContent(string $a_html)
Sets content for standard template.
loadLanguageModule(string $a_module)
Load language module.
This class represents a email property in a property form.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
getPref(string $a_keyword)
ilGlobalTemplateInterface $tpl
editSettings(?ilPropertyFormGUI $a_form=null)
global $DIC
Definition: shib_login.php:22
static clearBadgeCache(int $a_user_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
static _writePref(int $a_usr_id, string $a_keyword, string $a_value)
ilBadgeGUIRequest $request
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readonly TileView $tile_view