ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilECSUserConsentModalGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
25 
35 {
36  public const CMD_RENDER_MODAL = 'renderConsentModal';
37  public const CMD_SAVE_CONSENT = 'saveConsent';
38 
39  protected const TRIGGER_TYPE_SHY = 1;
40  protected const TRIGGER_TYPE_STANDARD = 2;
41  protected const TRIGGER_TYPE_CARD = 3;
42 
43  private int $usr_id;
44  private int $ref_id;
45  private int $obj_id;
46  private int $mid;
47  private int $server_id;
48 
54 
59  protected ilLanguage $lng;
62 
63  public function __construct(
64  int $a_usr_id,
65  int $a_ref_id,
66  ?ilRemoteObjectBaseGUI $remote_gui = null
67  ) {
68  global $DIC;
69 
70  $this->usr_id = $a_usr_id;
71  $this->ref_id = $a_ref_id;
72  $this->remote_gui = $remote_gui;
73  $this->consents = ilECSUserConsents::getInstanceByUserId($this->usr_id);
74  $this->importManager = ilECSImportManager::getInstance();
75  $this->exportManager = ilECSExportManager::getInstance();
76 
77  $this->ui_factory = $DIC->ui()->factory();
78  $this->ui_renderer = $DIC->ui()->renderer();
79  $this->request = $DIC->http()->request();
80  $this->lng = $DIC->language();
81  $this->lng->loadLanguageModule('ecs');
82  $this->ctrl = $DIC->ctrl();
83  $this->objDefinition = $DIC['objDefinition'];
84 
85  $this->remote_object = $this->initRemoteObject();
86  $this->initMidAndServer();
87  $this->obj_id = $this->remote_object->getId();
88  }
89 
90  public function hasConsented(): bool
91  {
92  return $this->consents->hasConsented($this->server_id, $this->mid);
93  }
94 
95  protected function initMidAndServer(): void
96  {
97  $this->mid = $this->remote_object->getMID();
98  $this->server_id = ilECSImportManager::getInstance()->lookupServerId($this->remote_object->getId());
99  }
100 
101  protected function lookupOrganization(): string
102  {
103  return $this->remote_object->getOrganization();
104  }
105 
106  protected function isLocalObject(): bool
107  {
108  return $this->remote_object->isLocalObject();
109  }
110 
111  public function getTitleLink(): string
112  {
113  if (
114  $this->usr_id === ANONYMOUS_USER_ID ||
115  $this->isLocalObject() ||
116  $this->hasConsented()
117  ) {
118  return '';
119  }
120  $components = $this->getConsentModalComponents(self::TRIGGER_TYPE_SHY);
121  return $this->ui_renderer->render($components);
122  }
123 
124  public function addLinkToToolbar(ilToolbarGUI $toolbar): void
125  {
126  if (
127  $this->usr_id === ANONYMOUS_USER_ID ||
128  $this->isLocalObject()
129  ) {
130  return;
131  }
132  if ($this->hasConsented()) {
133  $this->addRemoteLinkToToolbar($toolbar);
134  } else {
135  $this->addConsentModalToToolbar($toolbar);
136  }
137  }
138 
139  protected function addRemoteLinkToToolbar(ilToolbarGUI $toolbar): void
140  {
141  $button = $this->ui_factory
142  ->button()
143  ->standard(
144  $this->lng->txt($this->remote_object->getType() . '_call'),
145  $this->ctrl->getLinkTarget($this->remote_gui, 'call')
146  );
147  $toolbar->addComponent($button);
148  }
149 
150  public function addConsentModalToToolbar(ilToolbarGUI $toolbar): void
151  {
153  foreach ($components as $component) {
154  $toolbar->addComponent($component);
155  }
156  }
157 
158  public function addConsentModalToCard(
159  RepositoryObject $card
160  ): RepositoryObject {
161  $components = $this->getConsentModalComponents(self::TRIGGER_TYPE_CARD);
162  foreach ($components as $component) {
163  if ($component === null) {
164  continue;
165  }
166  $this->toolbar->addComponent($component);
167 
168  $image = $card->getImage();
169  $image = $image->withOnClick($component->getShowSignal());
170  $card = $card
171  ->withImage($image)
172  ->withTitleAction($component->getShowSignal());
173  }
174  return $card;
175  }
176 
177  protected function getConsentModalComponents(
178  int $a_trigger_type = self::TRIGGER_TYPE_STANDARD
179  ): array {
180  $form = $this->initConsentForm();
181  $form_id = 'form_' . $form->getId();
182  $agree = $this->ui_factory->button()
183  ->primary('Agree and Proceed', '#')
184  ->withOnLoadCode(
185  function ($id) use ($form_id) {
186  return "$('#$id').click(function() { $('#$form_id').submit(); return false; });";
187  }
188  );
189 
190  $submitted = (string) ($this->request->getParsedBody()['cmd'] ?? '');
191  $valid = true;
192  $error_html = '';
193  if (strcmp($submitted, 'submit') === 0) {
194  if (!$this->saveConsent($form)) {
195  $form->setValuesByPost();
196  $error = $this->ui_factory->messageBox()->failure(
197  $this->lng->txt('ecs_consent_required')
198  );
199  $error_html = $this->ui_renderer->render([$error]);
200  $valid = false;
201  }
202  }
203 
204  $modal = $this->ui_factory->modal()->roundtrip(
205  $this->lng->txt('ecs_consent_modal_title'),
206  $this->ui_factory->legacy()->content(
207  $error_html .
208  $form->getHTML()
209  )
210  )->withActionButtons([$agree]);
211  if (!$valid) {
212  $modal = $modal->withOnLoad($modal->getShowSignal());
213  }
214 
215  $button = null;
216  if ($a_trigger_type === self::TRIGGER_TYPE_STANDARD) {
217  $button = $this->ui_factory->button()->standard(
218  $this->lng->txt($this->remote_object->getType() . '_call'),
219  '#'
220  )->withOnClick(
221  $modal->getShowSignal()
222  );
223  } elseif ($a_trigger_type === self::TRIGGER_TYPE_SHY) {
224  $button = $this->ui_factory->button()->shy(
225  $this->remote_object->getTitle(),
226  '#'
227  )->withOnClick(
228  $modal->getShowSignal()
229  );
230  }
231  return [$button, $modal];
232  }
233 
234  protected function saveConsent(ilPropertyFormGUI $form): bool
235  {
236  $consented = (bool) ($this->request->getParsedBody()['consent'] ?? 0);
237  $ref_id_hidden = (int) ($this->request->getParsedBody()['consented_ref_id'] ?? 0);
238  $ref_type_hidden = (string) ($this->request->getParsedBody()['consented_type'] ?? '');
239  if ($consented) {
240  $this->consents->add($this->server_id, $this->mid);
241  $this->ctrl->setParameterByClass(
242  $ref_type_hidden,
243  'ref_id',
244  $ref_id_hidden
245  );
246  $this->ctrl->redirectToURL(
247  $this->ctrl->getLinkTargetByClass(
248  [
249  ilRepositoryGUI::class,
250  $ref_type_hidden
251  ],
252  'call'
253  )
254  );
255  return true;
256  }
257  return false;
258  }
259 
260  protected function initConsentForm(): ilPropertyFormGUI
261  {
262  $form = new ilPropertyFormGUI();
263  $form->setId(uniqid('form', false));
264  $form->setFormAction('#');
265 
266  $ref_id_hidden = new ilHiddenInputGUI('consented_ref_id');
267  $ref_id_hidden->setValue((string) $this->ref_id);
268  $form->addItem($ref_id_hidden);
269  $ref_type_hidden = new ilHiddenInputGUI('consented_type');
270  $ref_type_hidden->setValue($this->getGUIClassName());
271  $form->addItem($ref_type_hidden);
272  $title = new ilNonEditableValueGUI(
273  $this->lng->txt('title'),
274  'title'
275  );
276  $title->setValue(
277  ilObject::_lookupTitle($this->obj_id)
278  );
279  $form->addItem($title);
280 
281  $target = new ilNonEditableValueGUI(
282  $this->lng->txt('ecs_form_target_platform'),
283  'organisation'
284  );
285  $target->setValue($this->lookupOrganization());
286  $form->addItem($target);
287 
288  // provider
289  $organisation = $this->getOrganisation();
290  if ($organisation instanceof ilECSOrganisation) {
292  $this->lng->txt('organization'),
293  'provider'
294  );
295  $provider->setValue($organisation->getName());
296  $form->addItem($provider);
297  }
298 
299  $consent = new ilCheckboxInputGUI(
300  $this->lng->txt('ecs_form_consent'),
301  'consent'
302  );
303  $consent->setValue("1");
304  $consent->setChecked($this->consents->hasConsented($this->server_id, $this->mid));
305  $consent->setRequired(true);
306  $form->addItem($consent);
307 
308  $user_data_fields = [];
309  foreach (['login',
310  'firstname',
311  'lastname',
312  'email',
313  'institution'
314  ] as $field) {
315  $user_data_fields[] = $this->lng->txt('ecs_' . $field);
316  }
317  $listing = $this->ui_factory->listing()->unordered($user_data_fields);
318  $listing_html = $this->ui_renderer->render([$listing]);
319  $consent->setOptionTitle(
320  $this->lng->txt(
321  'ecs_form_consent_option_title'
322  ) . '<br />' . $listing_html
323  );
324  $submit = new ilHiddenInputGUI('cmd');
325  $submit->setValue('submit');
326  $form->addItem($submit);
327  return $form;
328  }
329 
330  protected function getOrganisation(): ?ilECSOrganisation
331  {
332  $server_id = $this->importManager->lookupServerId($this->obj_id);
333  if (0 === $server_id) {
334  return null;
335  }
337  $server_id
338  );
339  try {
340  $part = $community_reader->getParticipantByMID($this->mid);
341  if ($part instanceof ilECSParticipant) {
342  return $part->getOrganisation();
343  }
344  return null;
345  } catch (ilECSConnectorException $e) {
346  return null;
347  }
348  }
349 
350  protected function getGUIClassName(): string
351  {
352  return get_class($this->remote_gui);
353  }
354 
359  protected function initRemoteObject(): ilRemoteObjectBase
360  {
361  $remote = ilObjectFactory::getInstanceByRefId($this->ref_id);
362  if (!$remote instanceof ilRemoteObjectBase) {
363  throw new ilObjectNotFoundException(
364  'Invalid ref_id given: ' . $this->ref_id
365  );
366  }
367  return $remote;
368  }
369 }
const ANONYMOUS_USER_ID
Definition: constants.php:27
addConsentModalToCard(RepositoryObject $card)
static getInstance()
Get the singelton instance of this ilECSExportManager.
$valid
addComponent(\ILIAS\UI\Component\Component $a_comp)
Class ilECSUserConsents.
Manage the ECS imported contents.
$components
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getImage()
Get the image of the card.
$provider
Definition: ltitoken.php:80
This class represents a hidden form property in a property form.
static getInstance()
Get the singleton instance of this ilECSImportManager.
static _lookupTitle(int $obj_id)
addConsentModalToToolbar(ilToolbarGUI $toolbar)
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
global $DIC
Definition: shib_login.php:22
static getInstanceByUserId(int $a_usr_id)
Remote object app base class.
withImage(Image $image)
Set the image of the card.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
addRemoteLinkToToolbar(ilToolbarGUI $toolbar)
Manage the ECS exported contents.
__construct(int $a_usr_id, int $a_ref_id, ?ilRemoteObjectBaseGUI $remote_gui=null)
getConsentModalComponents(int $a_trigger_type=self::TRIGGER_TYPE_STANDARD)