ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilObjLTIAdministrationGUI.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
31 {
33 
34  private ?int $consumer_id = null;
35 
36  public function __construct(?array $a_data, int $a_id, bool $a_call_by_reference = true, bool $a_prepare_output = true)
37  {
38  global $DIC;
39  $DIC->language()->loadLanguageModule('lti'); //&ltis
40  $this->type = "ltis";
41  parent::__construct($a_data, $a_id, $a_call_by_reference, $a_prepare_output);
42  $this->dataConnector = new ilLTIDataConnector();
43 
44  if ($DIC->http()->wrapper()->query()->has("cid")) {
45  $this->consumer_id = (int) $DIC->http()->wrapper()->query()->retrieve("cid", $DIC->refinery()->kindlyTo()->int());
46  }
47  }
48 
49  public function executeCommand(): void
50  {
51  $next_class = $this->ctrl->getNextClass($this);
52  $cmd = $this->ctrl->getCmd();
53 
54  $this->prepareOutput();
55 
56  switch ($next_class) {
57  case 'ilpermissiongui':
58  $GLOBALS['ilTabs']->activateTab('perm_settings');
59  $perm_gui = new ilPermissionGUI($this);
60  $this->ctrl->forwardCommand($perm_gui);
61  break;
62 
63  case 'illticonsumeradministrationgui':
64  $this->tabs_gui->activateTab('lti_consuming');
65  $gui = new ilLTIConsumerAdministrationGUI();
66  $this->ctrl->forwardCommand($gui);
67  break;
68 
69  default:
70  $this->tabs_gui->activateTab('lti_providing');
71  if (!$cmd || $cmd == 'view') {
72  $cmd = 'listConsumers';
73  } elseif ($cmd == 'createconsumer') {
74  $cmd = "initConsumerForm";
75  }
76  $this->$cmd();
77  break;
78  }
79  }
80 
81  public function getType(): string
82  {
83  return "ltis";
84  }
85 
86  public function getAdminTabs(): void
87  {
88  if ($this->rbac_system->checkAccess("visible,read", $this->object->getRefId())) {
89  $this->tabs_gui->addTab(
90  'lti_providing',
91  $this->lng->txt("lti_providing_tab"),
92  $this->ctrl->getLinkTarget($this, "listConsumers")
93  );
94 
95  $this->tabs_gui->addTab(
96  'lti_consuming',
97  $this->lng->txt("lti_consuming_tab"),
98  $this->ctrl->getLinkTargetByClass('ilLTIConsumerAdministrationGUI')
99  );
100 
101  if ($this->ctrl->getCmdClass() == 'ilobjltiadministrationgui') {
102  $this->addProvidingSubtabs();
103  }
104  }
105 
106  if ($this->rbac_system->checkAccess('edit_permission', $this->object->getRefId())) {
107  $this->tabs_gui->addTab(
108  "perm_settings",
109  $this->lng->txt("perm_settings"),
110  $this->ctrl->getLinkTargetByClass('ilpermissiongui', "perm")
111  );
112  }
113  }
114 
115  protected function addProvidingSubtabs(): void
116  {
117  if ($this->rbac_system->checkAccess("visible,read", $this->object->getRefId())) {
118  // currently no general settings.
119  // $this->tabs_gui->addTab("settings",
120  // $this->lng->txt("settings"),
121  // $this->ctrl->getLinkTarget($this, "initSettingsForm"));
122 
123  $this->tabs_gui->addSubTab(
124  "consumers",
125  $this->lng->txt("consumers"),
126  $this->ctrl->getLinkTarget($this, "listConsumers")
127  );
128  }
129  if ($this->rbac_system->checkAccess("visible,read", $this->object->getRefId())) {
130  $this->tabs_gui->addSubTab(
131  "releasedObjects",
132  $this->lng->txt("lti_released_objects"),
133  $this->ctrl->getLinkTarget($this, "releasedObjects")
134  );
135  }
136  }
137 
138  protected function initSettingsForm(ilPropertyFormGUI $form = null): void
139  {
140  if (!($form instanceof ilPropertyFormGUI)) {
141  $form = $this->getSettingsForm();
142  }
143  $this->tabs_gui->activateSubTab("settings");
144  $this->tpl->setContent($form->getHTML());
145  }
146 
147 
148  protected function getSettingsForm(): \ilPropertyFormGUI
149  {
150  $form = new ilPropertyFormGUI();
151  /*
152  $form->setFormAction($this->ctrl->getFormAction($this,'saveSettingsForm'));
153  $form->setTitle($this->lng->txt("lti_settings"));
154 
155  // object types
156  $cb_obj_types = new ilCheckboxGroupInputGUI($this->lng->txt("act_lti_for_obj_type"), 'types');
157 
158  $valid_obj_types = $this->object->getLTIObjectTypes();
159  foreach($valid_obj_types as $obj_type_id => $obj_name)
160  {
161  $cb_obj_types->addOption(new ilCheckboxOption($obj_name, $obj_type_id));
162  }
163  $objs_active = $this->object->getActiveObjectTypes();
164  $cb_obj_types->setValue($objs_active);
165  $form->addItem($cb_obj_types);
166 
167  // test roles
168  $roles = $this->object->getLTIRoles();
169  foreach($roles as $role_id => $role_name)
170  {
171  $options[$role_id] = $role_name;
172  }
173  $si_roles = new ilSelectInputGUI($this->lng->txt("gbl_roles_to_users"), 'roles');
174  $si_roles->setOptions($options);
175  $si_roles->setValue($this->object->getCurrentRole());
176  $form->addItem($si_roles);
177 
178  $form->addCommandButton("saveSettingsForm", $this->lng->txt("save"));
179  */
180  return $form;
181  }
182 
183  /*
184  protected function saveSettingsForm()
185  {
186  global $ilCtrl;
187 
188  $this->checkPermission("write");
189 
190  $form = $this->getSettingsForm();
191  if($form->checkInput())
192  {
193  $obj_types = $form->getInput('types');
194 
195  $role = $form->getInput('role');
196 
197  $this->object->saveData($obj_types, $role);
198 
199  ilUtil::sendSuccess($this->lng->txt("settings_saved"),true);
200  }
201 
202  $form->setValuesByPost();
203  $this->initSettingsForm($form);
204  }
205  */
206 
207  // create global role LTI-User
208  protected function createLtiUserRole(): void
209  {
210  // include_once './Services/AccessControl/classes/class.ilObjRole.php';
211  $role = new ilObjRole();
212  $role->setTitle("il_lti_global_role");
213  $role->setDescription("This global role should only contain the permission 'read' for repository and categories. Do not rename this role.");
214  $role->create();
215  $this->rbac_admin->assignRoleToFolder($role->getId(), 8, 'y');
216  $this->rbac_admin->setProtected(8, $role->getId(), 'y');
217  $this->rbac_admin->setRolePermission($role->getId(), 'root', [3], 8);
218  $this->rbac_admin->setRolePermission($role->getId(), 'cat', [3], 8);
219  $this->rbac_admin->grantPermission($role->getId(), [3], ROOT_FOLDER_ID);
220  $role->changeExistingObjects(
223  array('cat'),
224  array()
225  );
226 
227  $this->tpl->setOnScreenMessage('success', $this->lng->txt("lti_user_role_created"), true);
228  $this->listConsumers();
229  }
230 
231 
232  // consumers
233 
234  protected function initConsumerForm(ilPropertyFormGUI $form = null): void
235  {
236  if (!($form instanceof ilPropertyFormGUI)) {
237  $form = $this->getConsumerForm();
238  }
239  $this->tpl->setContent($form->getHTML());
240  }
241 
242  protected function getConsumerForm(string $a_mode = ''): \ilPropertyFormGUI
243  {
244  $this->tabs_gui->activateSubTab("consumers");
245 
246  $form = new ilPropertyFormGUI();
247 
248  $ti_title = new ilTextInputGUI($this->lng->txt("title"), 'title');
249  $ti_title->setRequired(true);
250  $form->addItem($ti_title);
251  $ti_description = new ilTextInputGUI($this->lng->txt("description"), 'description');
252  $form->addItem($ti_description);
253  $ti_prefix = new ilTextInputGUI($this->lng->txt("prefix"), 'prefix');
254  $ti_prefix->setInfo($this->lng->txt("prefix_info"));
255  $ti_prefix->setRequired(true);
256  $form->addItem($ti_prefix);
257  #$ti_key = new ilTextInputGUI($this->lng->txt("lti_consumer_key"), 'key');
258  #$ti_key->setRequired(true);
259  #$ti_secret = new ilTextInputGUI($this->lng->txt("lti_consumer_secret"), 'secret');
260  #$ti_secret->setRequired(true);
261 
262  $languages = $this->lng->getInstalledLanguages();
263  $array_lang = [];
264  $options = [];
265  foreach ($languages as $lang_key) {
266  $array_lang[$lang_key] = ilLanguage::_lookupEntry($lang_key, "meta", "meta_l_" . $lang_key);
267  }
268 
269  $si_language = new ilSelectInputGUI($this->lng->txt("language"), "language");
270  $si_language->setOptions($array_lang);
271  $form->addItem($si_language);
272 
273  // object types
274  $cb_obj_types = new ilCheckboxGroupInputGUI($this->lng->txt("act_lti_for_obj_type"), 'types');
275 
276  $valid_obj_types = $this->object->getLTIObjectTypes();
277  foreach ($valid_obj_types as $obj_type) {
278  $object_name = $this->lng->txt('objs_' . $obj_type);
279  $cb_obj_types->addOption(new ilCheckboxOption($object_name, $obj_type));
280  }
281  $form->addItem($cb_obj_types);
282 
283  // test roles
284  $roles = $this->object->getLTIRoles();
285  foreach ($roles as $role_id => $role_name) {
286  $options[$role_id] = $role_name;
287  }
288  $si_roles = new ilSelectInputGUI($this->lng->txt("gbl_roles_to_users"), 'role');
289  $si_roles->setOptions($options);
290  $form->addItem($si_roles);
291 
292  $cb_active = new ilCheckboxInputGUI($this->lng->txt('active'), 'active');
293  $form->addItem($cb_active);
294 
295  if ($a_mode == 'edit') {
296  $form->setFormAction($this->ctrl->getFormAction($this, 'editLTIConsumer'));
297  $form->setTitle($this->lng->txt("lti_edit_consumer"));
298  $form->addCommandButton("updateLTIConsumer", $this->lng->txt("save"));
299  } else {
300  $form->setFormAction($this->ctrl->getFormAction($this, 'createLTIConsumer'));
301  $form->setTitle($this->lng->txt("lti_create_consumer"));
302  $form->addCommandButton("createLTIConsumer", $this->lng->txt("save"));
303  $form->addCommandButton('listConsumers', $this->lng->txt('cancel'));
304  }
305 
306  return $form;
307  }
308 
313  protected function editConsumer(ilPropertyFormGUI $a_form = null): void
314  {
315  $this->ctrl->setParameter($this, "cid", $this->consumer_id);
316 
317  if (!$this->consumer_id) {
318  $this->ctrl->redirect($this, "listConsumers");
319  }
320 
321  $consumer = ilLTIPlatform::fromExternalConsumerId($this->consumer_id, $this->dataConnector);
322  if (!$a_form instanceof ilPropertyFormGUI) {
323  $a_form = $this->getConsumerForm('edit');
324  $a_form->getItemByPostVar("title")->setValue($consumer->getTitle());
325  $a_form->getItemByPostVar("description")->setValue($consumer->getDescription());
326  $a_form->getItemByPostVar("prefix")->setValue($consumer->getPrefix());
327  $a_form->getItemByPostVar("language")->setValue($consumer->getLanguage());
328  $a_form->getItemByPostVar("active")->setChecked($consumer->getActive());
329  $a_form->getItemByPostVar("role")->setValue($consumer->getRole());
330  $a_form->getItemByPostVar("types")->setValue($this->object->getActiveObjectTypes($this->consumer_id));
331  }
332  $this->tpl->setContent($a_form->getHTML());
333  }
334 
338  protected function createLTIConsumer(): void
339  {
340  $this->checkPermission("write");
341 
342  $form = $this->getConsumerForm();
343 
344  if ($form->checkInput()) {
345  // $consumer = new ilLTIExternalConsumer();
346  // $dataConnector = new ilLTIDataConnector();
347  $consumer = new ilLTIPlatform(null, $this->dataConnector);
348  $consumer->setTitle($form->getInput('title'));
349  $consumer->setDescription($form->getInput('description'));
350  $consumer->setPrefix($form->getInput('prefix'));
351  $consumer->setLanguage($form->getInput('language'));
352  $consumer->setActive((bool) $form->getInput('active'));
353  $consumer->setRole((int) $form->getInput('role'));
354  $consumer->saveGlobalToolConsumerSettings($this->dataConnector);
355 
356  $this->object->saveConsumerObjectTypes(
357  $consumer->getExtConsumerId(),
358  $form->getInput('types')
359  );
360  $this->tpl->setOnScreenMessage('success', $this->lng->txt("lti_consumer_created"), true);
361  $this->ctrl->redirect($this, 'listConsumers');
362  }
363 
364  $form->setValuesByPost();
365  $this->listConsumers();
366  return;
367  }
368 
372  protected function updateLTIConsumer(): void
373  {
374  $this->checkPermission("write");
375 
376  if (!$this->consumer_id) {
377  $this->ctrl->redirect($this, "listConsumers");
378  }
379 
380  $this->ctrl->setParameter($this, "cid", $this->consumer_id);
381 
382  $consumer = ilLTIPlatform::fromExternalConsumerId($this->consumer_id, $this->dataConnector);
383  $form = $this->getConsumerForm('edit');
384  if ($form->checkInput()) {
385  $consumer->setTitle($form->getInput('title'));
386  $consumer->setDescription($form->getInput('description'));
387  $consumer->setPrefix($form->getInput('prefix'));
388  $consumer->setLanguage($form->getInput('language'));
389  $consumer->setActive((bool) $form->getInput('active'));
390  $consumer->setRole((int) $form->getInput('role'));
391  $consumer->saveGlobalToolConsumerSettings($this->dataConnector);
392  $this->object->saveConsumerObjectTypes($this->consumer_id, $form->getInput('types'));
393 
394  $this->tpl->setOnScreenMessage('success', $this->lng->txt("lti_consumer_updated"), true);
395  }
396  $this->listConsumers();
397  }
398 
402  protected function deleteLTIConsumer(): void
403  {
404  $consumer_id = 0;
405  if ($this->request_wrapper->has('cid')) {
406  $consumer_id = (int) $this->request_wrapper->retrieve('cid', $this->refinery->kindlyTo()->int());
407  }
408 
409  if ($consumer_id == 0) {
410  $this->ctrl->redirect($this, "listConsumers");
411  }
412  $consumer = ilLTIPlatform::fromExternalConsumerId($consumer_id, $this->dataConnector);
413  $consumer->deleteGlobalToolConsumerSettings($this->dataConnector);
414  $this->tpl->setOnScreenMessage('success', $this->lng->txt("lti_consumer_deleted"), true);
415  $this->ctrl->redirect($this, 'listConsumers');
416  }
417 
418 
422  protected function listConsumers(): void
423  {
424  if ($this->checkPermissionBool('write')) {
425  $this->toolbar->addButton(
426  $this->lng->txt('lti_create_consumer'),
427  $this->ctrl->getLinkTarget($this, 'createconsumer')
428  );
429  if (ilObject::_getIdsForTitle("il_lti_global_role", "role", false) == []) {
430  $this->toolbar->addButton(
431  $this->lng->txt('lti_create_lti_user_role'),
432  $this->ctrl->getLinkTarget($this, 'createLtiUserRole')
433  );
434  $this->toolbar->addText($this->lng->txt('lti_user_role_info'));
435  }
436  }
437 
438  $this->tabs_gui->activateSubTab("consumers");
439  $tbl = new ilObjectConsumerTableGUI(
440  $this,
441  "listConsumers"
442  );
443  $tbl->setEditable($this->checkPermissionBool('write'));
444  $this->tpl->setContent($tbl->getHTML());
445  }
446 
450  protected function changeStatusLTIConsumer(): void
451  {
452  if (!$this->consumer_id) {
453  $this->ctrl->redirect($this, "listConsumers");
454  }
455 
456  $consumer = ilLTIPlatform::fromExternalConsumerId($this->consumer_id, $this->dataConnector);
457  if ($consumer->getActive()) {
458  $consumer->setActive(false);
459  $msg = "lti_consumer_set_inactive";
460  } else {
461  $consumer->setActive(true);
462  $msg = "lti_consumer_set_active";
463  }
464  $consumer->saveGlobalToolConsumerSettings($this->dataConnector);
465  $this->tpl->setOnScreenMessage('success', $this->lng->txt($msg), true);
466 
467  $this->ctrl->redirect($this, 'listConsumers');
468  }
469 
473  protected function releasedObjects(): void
474  {
475  $this->tabs_gui->activateSubTab('releasedObjects');
476 
477  $table = new ilLTIProviderReleasedObjectsTableGUI($this, 'releasedObjects', 'ltireleases');
478  $table->init();
479  $table->parse();
480 
481  $this->tpl->setContent($table->getHTML());
482  }
483 }
Class ilObjRole.
editConsumer(ilPropertyFormGUI $a_form=null)
Edit consumer.
changeStatusLTIConsumer()
Change activation status.
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...
createLTIConsumer()
Create new lti consumer.
const ROOT_FOLDER_ID
Definition: constants.php:32
prepareOutput(bool $show_sub_objects=true)
__construct(?array $a_data, int $a_id, bool $a_call_by_reference=true, bool $a_prepare_output=true)
This class represents a checkbox property in a property form.
updateLTIConsumer()
Update lti consumer settings.
initSettingsForm(ilPropertyFormGUI $form=null)
initConsumerForm(ilPropertyFormGUI $form=null)
global $DIC
Definition: feed.php:28
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
LTI provider for LTI launch.
Class ilObjectGUI Basic methods of all Output classes.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
Definition: PEAR.php:64
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...
static _getIdsForTitle(string $title, string $type='', bool $partial_match=false)
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
__construct(Container $dic, ilPlugin $plugin)
const MODE_UNPROTECTED_KEEP_LOCAL_POLICIES
static fromExternalConsumerId(int $id, ilLTIDataConnector $dataConnector)
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
static _lookupEntry(string $a_lang_key, string $a_mod, string $a_id)
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)