59 $this->
access = $DIC->access();
60 $this->component_repository = $DIC[
"component.repository"];
61 $this->
ctrl = $DIC->ctrl();
62 $this->global_settings = $DIC->settings();
63 $this->
lng = $DIC->language();
64 $this->
lng->loadLanguageModule(
'shib');
65 $this->
rbac = $DIC->rbac();
66 $this->rbac_review = $DIC->rbac()->review();
69 $this->tabs_gui = $DIC->tabs();
70 $this->tpl = $DIC->ui()->mainTemplate();
71 $this->wrapper = $DIC->http()->wrapper();
80 $cmd = $this->
ctrl->getCmd();
81 if (!$this->
access->checkAccess(
'read',
'', $this->ref_id)) {
84 if ($cmd !==
"settings" && !$this->
access->checkAccess(
'write',
'', $this->ref_id)) {
85 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_perm_write'),
true);
86 $this->
ctrl->redirect($this,
"settings");
100 $this->tabs_gui->activateSubTab(
'shib_settings');
102 $this->shib_settings,
103 $this->
ctrl->getLinkTarget($this,
'save')
106 $this->tpl->setContent($form->
getHTML());
115 $this->shib_settings,
116 $this->
ctrl->getLinkTarget($this,
'save')
119 if ($form->saveObject()) {
120 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"shib_settings_saved"),
true);
121 $this->
ctrl->redirect($this,
'settings');
123 $this->tpl->setContent($form->
getHTML());
131 $this->tabs_gui->activateSubTab(
'shib_role_assignment');
133 $this->tpl->addBlockFile(
136 'tpl.shib_role_assignment.html',
137 'components/ILIAS/AuthShibboleth' 139 $this->tpl->setVariable(
'NEW_RULE_TABLE', $this->
form->getHTML());
141 $this->tpl->setVariable(
'RULE_TABLE', $html);
156 $rules_table->setTitle($this->
lng->txt(
'shib_rules_tables'));
157 $rules_table->parse(ilShibbolethRoleAssignmentRules::getAllRules());
158 $rules_table->addMultiCommand(
"confirmDeleteRules", $this->
lng->txt(
"delete"));
159 $rules_table->setSelectAllCheckbox(self::PARAM_RULE_ID);
161 return $rules_table->getHTML();
169 if (!$this->wrapper->post()->has(
'rule_ids')) {
170 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_one'));
175 $this->tabs_gui->activateTab(
'shib_role_assignment');
178 $c_gui->setFormAction($this->
ctrl->getFormAction($this,
"deleteRules"));
179 $c_gui->setHeaderText($this->
lng->txt(
"shib_confirm_del_role_ass"));
180 $c_gui->setCancel($this->
lng->txt(
"cancel"),
"roleAssignment");
181 $c_gui->setConfirm($this->
lng->txt(
"confirm"),
"deleteRules");
183 $rule_ids = $this->wrapper->post()->retrieve(
187 foreach ($rule_ids as $rule_id) {
193 $c_gui->addItem(
'rule_ids[]', $rule_id, $info);
195 $this->tpl->setContent($c_gui->getHTML());
204 if (!$this->wrapper->post()->has(
'rule_ids')) {
205 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'select_once'));
210 $rule_ids = $this->wrapper->post()->retrieve(
214 foreach ($rule_ids as $rule_id) {
218 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'shib_deleted_rule'));
230 $this->
form->setFormAction($this->
ctrl->getFormAction($this,
'cancel'));
231 $this->
form->setTitle($this->
lng->txt(
'shib_role_ass_table'));
232 if ($a_mode ===
'default') {
233 $this->
form->setTitle($this->
lng->txt(
'shib_role_ass_table'));
234 $this->
form->addCommandButton(
'addRoleAssignmentRule', $this->
lng->txt(
'shib_new_rule'));
235 $this->
form->addCommandButton(
'settings', $this->
lng->txt(
'cancel'));
237 $this->
form->setTitle($this->
lng->txt(
'shib_update_role_ass_table'));
238 $this->
form->addCommandButton(
'updateRoleAssignmentRule', $this->
lng->txt(
'save'));
239 $this->
form->addCommandButton(
'roleAssignment', $this->
lng->txt(
'cancel'));
245 $role->addOption($global);
248 $global->addSubItem($role_select);
250 $role->addOption($local);
252 $role_search->setSize(40);
253 $local->addSubItem($role_search);
254 $role->setInfo($this->
lng->txt(
'shib_role_name_info'));
255 $this->
form->addItem($role);
258 $update->setValue($this->
lng->txt(
'shib_check_role_assignment'));
260 $add->setOptionTitle($this->
lng->txt(
'shib_add_missing'));
262 $update->addSubItem($add);
264 $remove->setOptionTitle($this->
lng->txt(
'shib_remove_deprecated'));
265 $remove->setValue(1);
266 $update->addSubItem($remove);
267 $this->
form->addItem($update);
271 $kind->setRequired(
true);
273 $attr->
setInfo($this->
lng->txt(
'shib_attr_info'));
276 $attr->addSubItem($name);
277 $value =
new ilTextInputGUI($this->
lng->txt(
'shib_attribute_value'),
'attr_value');
279 $attr->addSubItem($value);
280 $kind->addOption($attr);
281 $pl_active = $this->component_repository->getPluginSlotById(
'shibhk')->hasActivePlugins();
283 $pl->
setInfo($this->
lng->txt(
'shib_plugin_info'));
284 $pl->setDisabled(!$pl_active);
286 $id->setDisabled(!$pl_active);
288 $id->setMaxLength(3);
289 $id->setMaxValue(999);
291 $pl->addSubItem(
$id);
292 $kind->addOption($pl);
293 $this->
form->addItem($kind);
306 if (!$this->
access->checkAccess(
'write',
'', $this->ref_id)) {
307 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
315 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($err));
317 $this->tabs_gui->activateSubTab(
'shib_role_assignment');
318 $this->
form->setValuesByPost();
319 $this->tpl->addBlockFile(
322 'tpl.shib_role_assignment.html',
323 'components/ILIAS/AuthShibboleth' 325 $this->tpl->setVariable(
'NEW_RULE_TABLE', $this->
form->getHTML());
327 $this->tpl->setVariable(
'RULE_TABLE', $html);
333 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'));
344 $this->
ctrl->saveParameter($this, self::PARAM_RULE_ID);
345 $this->tabs_gui->activateSubTab(
'shib_role_assignment');
348 $this->tpl->addBlockFile(
351 'tpl.shib_role_assignment.html',
352 'components/ILIAS/AuthShibboleth' 354 $this->tpl->setVariable(
'NEW_RULE_TABLE', $this->
form->getHTML());
364 if (!$this->
access->checkAccess(
'write',
'', $this->ref_id)) {
365 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'permission_denied'),
true);
372 $role_id = $this->wrapper->query()->retrieve(self::PARAM_RULE_ID, $this->
refinery->kindlyTo()->int());
374 if (!$this->
form->checkInput() || $err = $this->
checkInput($role_id)) {
376 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt($err));
378 $this->tabs_gui->activateSubTab(
'shib_role_assignment');
379 $this->
form->setValuesByPost();
380 $this->tpl->addBlockFile(
383 'tpl.shib_role_assignment.html',
384 'components/ILIAS/AuthShibboleth' 386 $this->tpl->setVariable(
'NEW_RULE_TABLE', $this->
form->getHTML());
390 $this->rule->update();
391 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'));
400 if ((
int) $this->
form->getInput(
'role_name') === 0) {
401 $this->rule->setRoleId($this->
form->getInput(
'role_id'));
402 } elseif ($this->
form->getInput(
'role_search')) {
409 $object_search->setFilter([
'role']);
410 $res = $object_search->performSearch();
411 $entries =
$res->getEntries();
412 if (count($entries) === 1) {
413 $role = current($entries);
414 $this->rule->setRoleId($role[
'obj_id']);
415 } elseif (count($entries) > 1) {
416 $this->rule->setRoleId(-1);
419 $this->rule->setName($this->
form->getInput(
'attr_name'));
420 $this->rule->setValue($this->
form->getInput(
'attr_value'));
421 $this->rule->enableAddOnUpdate($this->
form->getInput(
'add_missing'));
422 $this->rule->enableRemoveOnUpdate($this->
form->getInput(
'remove_deprecated'));
423 $this->rule->enablePlugin((
int) $this->
form->getInput(
'kind') === 2);
424 $this->rule->setPluginId($this->
form->getInput(
'plugin_id'));
431 $rule_id = $this->wrapper->query()->has(self::PARAM_RULE_ID)
432 ? $this->wrapper->query()->retrieve(self::PARAM_RULE_ID, $this->
refinery->kindlyTo()->int())
437 if ($this->
rbac->review()->isGlobalRole($role)) {
438 $values[
'role_name'] = 0;
439 $values[
'role_id'] = $role;
441 $values[
'role_name'] = 1;
446 $values[
'attr_name'] = $rule->
getName();
447 $values[
'attr_value'] = $rule->
getValue();
454 $this->
form->setValuesByArray($values);
461 return $this->rule->validate();
469 $global_roles =
ilUtil::_sortIds($this->rbac_review->getGlobalRoles(),
'object_data',
'title',
'obj_id');
470 $select[0] = $this->
lng->txt(
'links_select_one');
471 foreach ($global_roles as $role_id) {
483 if (!$this->global_settings->get(
'shib_active',
'0')) {
486 $this->tabs_gui->addSubTabTarget(
'shib_settings', $this->
ctrl->getLinkTarget($this,
'settings'));
487 $this->tabs_gui->addSubTabTarget(
'shib_role_assignment', $this->
ctrl->getLinkTarget($this,
'roleAssignment'));
This class represents an option in a radio group.
Readable part of repository interface to ilComponentDataDB.
Class ilAuthShibbolethSettingsGUI.
updateRoleAssignmentRule()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilShibbolethSettings $shib_settings
ilSetting $global_settings
ilComponentRepository $component_repository
initFormRoleAssignment(string $a_mode='default')
__construct(private int $ref_id)
ilRbacReview $rbac_review
isRemoveOnUpdateEnabled()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setMinWordLength(int $a_length)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
ilGlobalTemplateInterface $tpl
loadRule(int $a_rule_id=0)
Provides fluid interface to RBAC services.
checkInput(int $a_rule_id=0)
static _sortIds(array $a_ids, string $a_table, string $a_field, string $a_id_name)
Function that sorts ids by a given table field using WHERE IN E.g: __sort(array(6,7),'usr_data','lastname','usr_id') => sorts by lastname.
form( $class_path, string $cmd, string $submit_caption="")
ilShibbolethRoleAssignmentRule $rule
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Class ilShibbolethSettings.
Shibboleth role assignment rule.
addRoleAutoCompleteObject()