19 declare(strict_types=1);
40 public function __construct($a_data,
int $a_id,
bool $a_call_by_reference,
bool $a_prepare_output =
true)
46 $this->
logger = $DIC->logger()->auth();
48 $this->
http = $DIC->http();
50 $this->
lng->loadLanguageModule(
'registration');
51 $this->
lng->loadLanguageModule(
'auth');
52 $this->
lng->loadLanguageModule(
'content');
53 $this->content_style_gui = $DIC->contentStyle()->gui();
65 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
66 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
69 $this->tabs_gui->setTabActive(
'authentication_settings');
71 $this->tabs_gui->setSubTabActive(
'auth_settings');
73 $generalSettingsTpl =
new ilTemplate(
'tpl.auth_general.html',
true,
true,
'components/ILIAS/Authentication');
75 $generalSettingsTpl->setVariable(
'FORMACTION', $this->
ctrl->getFormAction($this));
77 $generalSettingsTpl->setVariable(
'TXT_AUTH_MODE', $this->
lng->txt(
'auth_mode'));
78 $generalSettingsTpl->setVariable(
'TXT_AUTH_DEFAULT', $this->
lng->txt(
'default'));
79 $generalSettingsTpl->setVariable(
'TXT_AUTH_ACTIVE', $this->
lng->txt(
'active'));
80 $generalSettingsTpl->setVariable(
'TXT_AUTH_NUM_USERS', $this->
lng->txt(
'num_users'));
82 $generalSettingsTpl->setVariable(
'TXT_LOCAL', $this->
lng->txt(
'auth_local'));
83 $generalSettingsTpl->setVariable(
'TXT_LDAP', $this->
lng->txt(
'auth_ldap'));
84 $generalSettingsTpl->setVariable(
'TXT_SHIB', $this->
lng->txt(
'auth_shib'));
86 $generalSettingsTpl->setVariable(
'TXT_CAS', $this->
lng->txt(
'auth_cas'));
88 $generalSettingsTpl->setVariable(
'TXT_SCRIPT', $this->
lng->txt(
'auth_script'));
90 $generalSettingsTpl->setVariable(
'TXT_APACHE', $this->
lng->txt(
'auth_apache'));
104 $icon_ok = $this->ui_renderer->render(
105 $this->ui_factory->symbol()->icon()->custom(
107 $this->
lng->txt(
'enabled')
110 $icon_not_ok = $this->ui_renderer->render(
111 $this->ui_factory->symbol()->icon()->custom(
113 $this->
lng->txt(
'disabled')
117 $this->
logger->debug(print_r($auth_modes,
true));
118 foreach ($auth_modes as $mode => $mode_name) {
125 $generalSettingsTpl->setCurrentBlock(
'auth_mode');
129 $generalSettingsTpl->setVariable(
'AUTH_NAME',
$server->getName());
130 $generalSettingsTpl->setVariable(
'AUTH_ACTIVE',
$server->isActive() ? $icon_ok : $icon_not_ok);
133 $generalSettingsTpl->setVariable(
'AUTH_NAME', $idp->getEntityId());
134 $generalSettingsTpl->setVariable(
'AUTH_ACTIVE', $idp->isActive() ? $icon_ok : $icon_not_ok);
136 $generalSettingsTpl->setVariable(
'AUTH_NAME', $this->
lng->txt(
'auth_' . $mode_name));
137 $generalSettingsTpl->setVariable(
142 $generalSettingsTpl->setVariable(
'AUTH_NAME', $this->
lng->txt(
'auth_' . $mode_name));
143 $generalSettingsTpl->setVariable(
145 $this->
ilias->getSetting(
146 $mode_name .
'_active' 151 $auth_cnt_mode = $auth_cnt[$mode_name] ?? 0;
152 if ($this->
settings->get(
'auth_mode') === (string) $mode) {
153 $generalSettingsTpl->setVariable(
'AUTH_CHECKED',
'checked="checked"');
154 $auth_cnt_default = $auth_cnt[
'default'] ?? 0;
155 $generalSettingsTpl->setVariable(
157 ((
int) $auth_cnt_mode + $auth_cnt_default) .
' (' . $this->
lng->txt(
'auth_per_default') .
158 ': ' . $auth_cnt_default .
')' 161 $generalSettingsTpl->setVariable(
166 $generalSettingsTpl->setVariable(
'AUTH_ID', $mode_name);
167 $generalSettingsTpl->setVariable(
'AUTH_VAL', $mode);
168 $generalSettingsTpl->parseCurrentBlock();
171 $generalSettingsTpl->setVariable(
'TXT_CONFIGURE', $this->
lng->txt(
'auth_configure'));
173 if ($this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
174 $generalSettingsTpl->setVariable(
'TXT_AUTH_REMARK', $this->
lng->txt(
'auth_remark_non_local_auth'));
175 $generalSettingsTpl->setCurrentBlock(
'auth_mode_submit');
176 $generalSettingsTpl->setVariable(
'TXT_SUBMIT', $this->
lng->txt(
'save'));
177 $generalSettingsTpl->setVariable(
'CMD_SUBMIT',
'setAuthMode');
178 $generalSettingsTpl->parseCurrentBlock();
182 $this->ui_factory->panel()->standard(
183 $this->
lng->txt(
'auth_select'),
184 $this->ui_factory->legacy()->content($generalSettingsTpl->get()),
189 if ($auth_mode_determination_form !==
null) {
190 $page_content[] = $this->ui_factory->panel()->standard(
191 $this->
lng->txt(
'auth_auth_mode_determination'),
192 $auth_mode_determination_form
196 $page_content[] = $this->ui_factory->panel()->standard(
197 $this->
lng->txt(
'auth_active_roles'),
201 $this->tpl->setContent(
202 $this->ui_renderer->render($page_content)
208 $disabled_fields = !$this->rbac_system->checkAccess(
'write', $this->
object->getRefId());
213 $excluded_auth_names = [
'default',
'cas',
'saml',
'shibboleth',
'ldap',
'apache',
'ecs',
'openid'];
217 $active_auth_modes = array_filter(
219 static fn(
string $auth_name):
bool => in_array($auth_name, $excluded_auth_names,
true),
223 foreach ($reg_roles as $role) {
226 foreach ($active_auth_modes as $auth_name => $auth_key) {
227 if ($auth_name ===
'default') {
228 $name = $this->
lng->txt(
'auth_' . $auth_name) .
' (' . $this->
lng->txt(
236 $name = $idp->getEntityId();
238 $name = $this->
lng->txt(
'auth_' . $auth_name);
241 $options[$auth_name] = $name;
243 if ($role[
'auth_mode'] === $auth_name) {
248 if ($options === []) {
254 $fields[
'r_' . $role[
'id']] = $this->ui_factory
260 $this->
lng->txt(
'auth_role_auth_mode')
264 ->withDedicatedName(
'r_' . $role[
'id'])
265 ->withDisabled($disabled_fields);
268 return $this->ui_factory
272 ->standard($this->
ctrl->getFormAction($this,
'updateRegistrationRoleMapping'), $fields)
273 ->withDedicatedName(
'registration_role_mapping');
278 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
279 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
285 if ($this->
http->request()->getMethod() ===
'POST') {
286 $form = $form->withRequest($this->
http->request());
287 $form_data = $form->getData();
288 $form_valid = $form_data !==
null;
292 $this->tpl->setOnScreenMessage(
293 $this->tpl::MESSAGE_TYPE_FAILURE,
294 $this->
lng->txt(
'err_wrong_login')
301 foreach ($form_data as $role_id => $auth_mode) {
302 $f_object[substr($role_id, 2)] = $auth_mode;
306 $this->tpl->setOnScreenMessage(
307 $this->tpl::MESSAGE_TYPE_SUCCESS,
308 $this->
lng->txt(
'auth_mode_roles_changed'),
311 $this->
ctrl->redirect($this,
'authSettings');
317 if ($det->getCountActiveAuthModes() <= 1) {
321 $disabled_fields = !$this->rbac_system->checkAccess(
'write', $this->
object->getRefId());
323 $automatic_options = [];
325 $auth_sequenced = $det->getAuthModeSequence();
326 foreach ($auth_sequenced as $auth_mode) {
328 switch ($auth_mode) {
335 $text = $this->
lng->txt(
'auth_local');
338 $text = $this->
lng->txt(
'auth_soap');
341 $text = $this->
lng->txt(
'auth_apache');
345 $option = $pl->getMultipleAuthModeOptions($auth_mode);
346 $text = $option[$auth_mode][
'txt'];
351 $automatic_options[
'm' . $auth_mode] = $this->ui_factory
355 ->withDedicatedName(
'm' . $auth_mode)
356 ->withValue($counter++)
357 ->withDisabled($disabled_fields);
366 $this->
lng->txt(
'auth_by_user')
369 ->withDisabled($disabled_fields),
375 $this->
lng->txt(
'auth_automatic')
378 ->withDisabled($disabled_fields)
382 self::PROP_AUTH_MODE_KIND => $this->ui_factory
387 $this->
lng->txt(
'auth_kind_determination'),
388 $this->
lng->txt(
'auth_mode_determination_info')
390 ->withDedicatedName(self::PROP_AUTH_MODE_KIND)
391 ->withValue((
string) $det->getKind())
392 ->withDisabled($disabled_fields)
396 return $this->ui_factory
400 ->standard($this->
ctrl->getFormAction($this,
'updateAuthModeDetermination'), $sections)
401 ->withDedicatedName(
'auth_mode_determination')
402 ->withAdditionalTransformation(
403 $this->
refinery->custom()->transformation(
function ($value): array {
407 $sequence = (array) ($value[self::PROP_AUTH_MODE_KIND][1] ?? []);
410 $merged_values = array_merge(
412 self::PROP_AUTH_MODE_KIND => $auth_mode_kind,
415 self::PROP_AUTH_MODE_SEQUENCE => $sequence
419 return $merged_values;
426 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
427 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
431 if ($form ===
null) {
438 if ($this->
http->request()->getMethod() ===
'POST') {
439 $form = $form->withRequest($this->
http->request());
440 $form_data = $form->getData();
441 $form_valid = $form_data !==
null;
445 $this->tpl->setOnScreenMessage(
446 $this->tpl::MESSAGE_TYPE_FAILURE,
447 $this->
lng->txt(
'err_wrong_login')
454 $kind = (
int) $form_data[self::PROP_AUTH_MODE_KIND];
455 $det->setKind($kind);
457 $sequence = $form_data[self::PROP_AUTH_MODE_SEQUENCE];
458 $this->
logger->debug(
'pos mode:' . print_r($sequence,
true));
459 asort($sequence, SORT_NUMERIC);
460 $this->
logger->debug(
'pos mode:' . print_r($sequence,
true));
463 foreach (array_keys($sequence) as $auth_mode) {
464 $position[$counter++] = substr($auth_mode, 1);
466 $this->
logger->debug(
'position mode:' . print_r($position,
true));
467 $det->setAuthModeSequence($position);
471 $this->tpl->setOnScreenMessage(
472 $this->tpl::MESSAGE_TYPE_SUCCESS,
473 $this->
lng->txt(
'settings_saved'),
476 $this->
ctrl->redirect($this,
'authSettings');
481 $this->
ctrl->redirect($this,
'authSettings');
486 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
487 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
489 $this->
logger->debug(
'auth mode available:' . $this->request_wrapper->has(
'auth_mode'));
491 if (!$this->
http->wrapper()->post()->has(
'auth_mode')) {
492 $this->
ilias->raiseError($this->
lng->txt(
'auth_err_no_mode_selected'), $this->
ilias->error_obj->MESSAGE);
494 $new_auth_mode = $this->
http->wrapper()->post()->retrieve(
'auth_mode', $this->
refinery->to()->string());
495 $this->
logger->debug(
'auth mode:' . $new_auth_mode);
496 $current_auth_mode = $this->
settings->get(
'auth_mode',
'');
497 if ($new_auth_mode === $current_auth_mode) {
498 $this->tpl->setOnScreenMessage(
501 'auth_mode_not_changed' 505 $this->
ctrl->redirect($this,
'authSettings');
508 switch ((
int) $new_auth_mode) {
514 if ($this->
object->checkAuthSHIB() !==
true) {
515 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'auth_shib_not_configured'),
true);
519 $this->
ctrl->getLinkTargetByClass(
520 ilAuthShibbolethSettingsGUI::class,
532 if ($this->
object->checkAuthScript() !==
true) {
533 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'auth_script_not_configured'),
true);
537 $this->
ctrl->getLinkTarget($this,
'editScript',
'',
false,
false)
544 $this->
ilias->setSetting(
'auth_mode', $new_auth_mode);
546 $this->tpl->setOnScreenMessage(
551 $this->
ctrl->redirect($this,
'authSettings');
555 string $submit_action
557 $role_list = $this->rbac_review->getRolesByFilter(2, $this->
object->getId());
560 foreach ($role_list as $role) {
561 $roles[$role[
'obj_id']] = $role[
'title'];
564 $active = $this->ui_factory
567 ->checkbox($this->
lng->txt(
'active'))
574 $this->
lng->txt(
'server'),
575 $this->
lng->txt(
'auth_soap_server_desc')
579 ->withValue($this->
settings->get(
'soap_auth_server',
''));
581 $port = $this->ui_factory
585 $this->
lng->txt(
'port'),
586 $this->
lng->txt(
'auth_soap_port_desc')
590 $this->
refinery->int()->isLessThan(65536)
594 $use_https = $this->ui_factory
597 ->checkbox($this->
lng->txt(
'auth_soap_use_https'))
600 $uri = $this->ui_factory
604 $this->
lng->txt(
'uri'),
605 $this->
lng->txt(
'auth_soap_uri_desc')
608 ->withValue($this->
settings->get(
'soap_auth_uri',
''));
614 $this->
lng->txt(
'auth_soap_namespace'),
615 $this->
lng->txt(
'auth_soap_namespace_desc')
618 ->withValue($this->
settings->get(
'soap_auth_namespace',
''));
620 $dotnet = $this->ui_factory
623 ->checkbox($this->
lng->txt(
'auth_soap_use_dotnet'))
626 $createuser = $this->ui_factory
630 $this->
lng->txt(
'auth_create_users'),
631 $this->
lng->txt(
'auth_soap_create_users_desc')
635 $sendmail = $this->ui_factory
639 $this->
lng->txt(
'user_send_new_account_mail'),
640 $this->
lng->txt(
'auth_new_account_mail_desc')
644 $defaultrole = $this->ui_factory
648 $this->
lng->txt(
'auth_user_default_role'),
650 $this->
lng->txt(
'auth_soap_user_default_role_desc')
655 $allowlocal = $this->ui_factory
659 $this->
lng->txt(
'auth_allow_local'),
660 $this->
lng->txt(
'auth_soap_allow_local_desc')
664 $form = $this->ui_factory->input()->container()->form()->standard(
670 'use_https' => $use_https,
674 'createuser' => $createuser,
675 'sendmail' => $sendmail,
676 'defaultrole' => $defaultrole,
677 'allowlocal' => $allowlocal
684 string $submit_action
686 $ext_uid = $this->ui_factory->input()->field()->text(
689 $soap_pw = $this->ui_factory->input()->field()->text(
692 $new_user = $this->ui_factory->input()->field()
693 ->checkbox(
'new_user');
694 return $this->ui_factory->input()->container()->form()->standard(
701 )->withSubmitLabel(
'Send');
706 if (!$this->rbac_system->checkAccess(
'read', $this->object->getRefId())) {
707 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
710 $soap_form = $this->
buildSOAPForm($this->
ctrl->getFormAction($this,
'saveSOAP'));
713 $this->tabs_gui->setTabActive(
'auth_soap');
714 $panel = $this->ui_factory->panel()->standard(
'SOAP', [$soap_form, $test_form]);
715 $this->tpl->setContent($this->ui_renderer->render($panel));
720 if (!$this->rbac_system->checkAccess(
'read', $this->object->getRefId())) {
721 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
724 $soap_form = $this->
buildSOAPForm($this->
ctrl->getFormAction($this,
'saveSOAP'));
726 $panel_content = [$soap_form, $test_form];
727 if ($this->request->getMethod() ===
'POST') {
728 $test_form = $test_form->withRequest($this->request);
729 $result = $test_form->getData();
730 if (!is_null($result)) {
731 $panel_content[] = $this->ui_factory->legacy()->content(
736 $this->tabs_gui->setTabActive(
'auth_soap');
737 $panel = $this->ui_factory->panel()->standard(
'SOAP', $panel_content);
738 $this->tpl->setContent($this->ui_renderer->render($panel));
743 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
744 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
747 $soap_form = $this->
buildSOAPForm($this->
ctrl->getFormAction($this,
'saveSOAP'));
749 if ($this->request->getMethod() ===
'POST') {
750 $soap_form = $soap_form->withRequest($this->request);
751 $result = $soap_form->getData();
752 if (!is_null($result)) {
753 $this->
settings->set(
'soap_auth_active', (
string) $result[
'active']);
754 $this->
settings->set(
'soap_auth_server', $result[
'server']);
755 $this->
settings->set(
'soap_auth_port', (
string) $result[
'port']);
756 $this->
settings->set(
'soap_auth_use_https', (
string) $result[
'use_https']);
757 $this->
settings->set(
'soap_auth_uri', $result[
'uri']);
758 $this->
settings->set(
'soap_auth_namespace', $result[
'namespace']);
759 $this->
settings->set(
'soap_auth_use_dotnet', (
string) $result[
'dotnet']);
760 $this->
settings->set(
'soap_auth_create_users', (
string) $result[
'createuser']);
761 $this->
settings->set(
'soap_auth_account_mail', (
string) $result[
'sendmail']);
762 $this->
settings->set(
'soap_auth_user_default_role', (
string) $result[
'defaultrole']);
763 $this->
settings->set(
'soap_auth_allow_local', (
string) $result[
'allowlocal']);
765 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'auth_soap_settings_saved'),
true);
766 $this->
logger->info(
'data' . print_r($result,
true));
767 $this->
ctrl->redirect($this,
'editSOAP');
771 $this->tabs_gui->setTabActive(
'auth_soap');
772 $panel = $this->ui_factory->panel()->standard(
'SOAP', [$soap_form, $test_form]);
773 $this->tpl->setContent($this->ui_renderer->render($panel));
778 if (!$this->rbac_system->checkAccess(
'write', $this->object->getRefId())) {
779 $this->
ilias->raiseError($this->
lng->txt(
'permission_denied'), $this->
ilias->error_obj->MESSAGE);
782 if ($_SESSION[
'error_post_vars']) {
783 $this->tpl->setVariable(
'AUTH_SCRIPT_NAME', $_SESSION[
'error_post_vars'][
'auth_script'][
'name']);
787 $this->tpl->setVariable(
'AUTH_SCRIPT_NAME',
$settings[
'auth_script_name']);
790 $this->tabs_gui->setTabActive(
'auth_script');
792 $this->tpl->addBlockFile(
795 'tpl.auth_script.html',
796 'components/ILIAS/Authentication' 799 $this->tpl->setVariable(
'FORMACTION', $this->
ctrl->getFormAction($this));
800 $this->tpl->setVariable(
'COLSPAN', 3);
801 $this->tpl->setVariable(
'TXT_AUTH_SCRIPT_TITLE', $this->
lng->txt(
'auth_script_configure'));
802 $this->tpl->setVariable(
'TXT_OPTIONS', $this->
lng->txt(
'options'));
803 $this->tpl->setVariable(
'TXT_AUTH_SCRIPT_NAME', $this->
lng->txt(
'auth_script_name'));
805 $this->tpl->setVariable(
'TXT_REQUIRED_FLD', $this->
lng->txt(
'required_field'));
806 $this->tpl->setVariable(
'TXT_CANCEL', $this->
lng->txt(
'cancel'));
807 $this->tpl->setVariable(
'TXT_SUBMIT', $this->
lng->txt(
'save'));
808 $this->tpl->setVariable(
'CMD_SUBMIT',
'saveScript');
813 if (!$_POST[
'auth_script'][
'name']) {
814 $this->
ilias->raiseError($this->
lng->txt(
'fill_out_all_required_fields'), $this->
ilias->error_obj->MESSAGE);
817 $this->
ilias->setSetting(
'auth_script_name', $_POST[
'auth_script'][
'name']);
820 $this->tpl->setOnScreenMessage(
825 $this->
ctrl->redirect($this,
'editScript');
830 return match ((
int) $this->
ilias->getSetting(
'auth_mode')) {
837 default => $this->
lng->txt(
'unknown'),
843 $next_class = $this->
ctrl->getNextClass($this) ??
'';
844 $cmd = $this->
ctrl->getCmd() ??
'';
847 if (!$this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
848 $this->error->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->error->WARNING);
851 switch ($next_class) {
852 case 'ilopenidconnectsettingsgui':
853 $this->tabs_gui->activateTab(
'auth_oidconnect');
856 $this->
ctrl->forwardCommand($oid);
859 case 'ilsamlsettingsgui':
860 $this->tabs_gui->setTabActive(
'auth_saml');
863 $this->
ctrl->forwardCommand($os);
866 case 'ilregistrationsettingsgui':
867 $this->tabs_gui->setTabActive(
'registration_settings');
870 $this->
ctrl->forwardCommand($registration_gui);
873 case 'ilpermissiongui':
874 $this->tabs_gui->setTabActive(
'perm_settings');
877 $this->
ctrl->forwardCommand($perm_gui);
880 case 'illdapsettingsgui':
881 $this->tabs_gui->setTabActive(
'auth_ldap');
884 $this->
ctrl->forwardCommand($ldap_settings_gui);
887 case 'ilauthshibbolethsettingsgui':
888 $this->tabs_gui->setTabActive(
'auth_shib');
891 $this->
ctrl->forwardCommand($shib_settings_gui);
894 case 'ilcassettingsgui':
895 $this->tabs_gui->setTabActive(
'auth_cas');
898 $this->
ctrl->forwardCommand($cas_settings);
901 case strtolower(ilAuthPageEditorGUI::class):
903 $this->tabs_gui->setTabActive(
'authentication_settings');
904 $this->tabs_gui->setSubTabActive(
'auth_login_editor');
907 $this->
ctrl->forwardCommand($lpe);
910 case strtolower(ilObjectContentStyleSettingsGUI::class):
914 $this->tabs_gui->activateTab(
'authentication_settings');
915 $this->tabs_gui->activateSubTab(
'style');
917 $settings_gui = $this->content_style_gui
918 ->objectSettingsGUIForRefId(
922 $this->
ctrl->forwardCommand($settings_gui);
925 case strtolower(ilAuthLogoutBehaviourGUI::class):
927 $this->tabs_gui->setTabActive(
'authentication_settings');
928 $this->tabs_gui->setSubTabActive(
'logout_behaviour');
931 $this->
ctrl->forwardCommand($gui);
936 $cmd =
'authSettings';
952 $this->
ctrl->setParameter($this,
'ref_id', $this->
object->getRefId());
954 if ($this->rbac_system->checkAccess(
'visible,read', $this->object->getRefId())) {
955 $this->tabs_gui->addTarget(
956 'authentication_settings',
957 $this->
ctrl->getLinkTarget($this,
'authSettings'),
963 $this->tabs_gui->addTarget(
964 'registration_settings',
965 $this->
ctrl->getLinkTargetByClass(
'ilregistrationsettingsgui',
'view')
968 $this->tabs_gui->addTarget(
970 $this->
ctrl->getLinkTargetByClass(
'illdapsettingsgui',
'serverList'),
976 $this->tabs_gui->addTarget(
978 $this->
ctrl->getLinkTargetByClass(
'ilauthshibbolethsettingsgui',
'settings')
981 $this->tabs_gui->addTarget(
983 $this->
ctrl->getLinkTargetByClass(
'ilcassettingsgui',
'settings')
986 $this->tabs_gui->addTarget(
988 $this->
ctrl->getLinkTarget($this,
'editSOAP'),
994 $this->tabs_gui->addTarget(
995 'apache_auth_settings',
996 $this->
ctrl->getLinkTarget($this,
'apacheAuthSettings'),
1002 $this->tabs_gui->addTarget(
1010 $this->tabs_gui->addTab(
1012 $this->
lng->txt(
'auth_oidconnect'),
1013 $this->
ctrl->getLinkTargetByClass(
'ilopenidconnectsettingsgui')
1017 if ($this->rbac_system->checkAccess(
'edit_permission', $this->object->getRefId())) {
1018 $this->tabs_gui->addTarget(
1020 $this->
ctrl->getLinkTargetByClass([get_class($this),
'ilpermissiongui'],
'perm'),
1021 [
'perm',
'info',
'owner'],
1029 $this->
lng->loadLanguageModule(
'auth');
1031 if ($a_tab ===
'authSettings' && $this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
1032 $this->tabs_gui->addSubTabTarget(
1034 $this->
ctrl->getLinkTarget($this,
'authSettings'),
1038 foreach (AuthPageEditorContext::cases() as $auth_ipe_context) {
1039 $this->
ctrl->setParameterByClass(
1040 ilAuthPageEditorGUI::class,
1042 $auth_ipe_context->value
1044 $this->tabs_gui->addSubTabTarget(
1045 $auth_ipe_context->tabIdentifier(),
1046 $this->
ctrl->getLinkTargetByClass(
1047 ilAuthPageEditorGUI::class,
1051 $this->
ctrl->setParameterByClass(
1052 ilAuthPageEditorGUI::class,
1058 $this->tabs_gui->addSubTabTarget(
1060 $this->
ctrl->getLinkTargetByClass(ilAuthLogoutBehaviourGUI::class,
''),
1064 $this->tabs_gui->addSubTab(
1066 $this->
lng->txt(
'cont_style'),
1067 $this->
ctrl->getLinkTargetByClass(ilObjectContentStyleSettingsGUI::class)
1074 $this->tabs_gui->setTabActive(
'apache_auth_settings');
1076 if ($form ===
null) {
1083 if (file_exists(
$path) && is_readable(
$path)) {
1084 $settingsMap[
'apache_auth_domains'] = file_get_contents(
$path);
1087 $form->setValuesByArray($settingsMap);
1089 $this->tpl->setVariable(
'ADM_CONTENT', $form->getHtml());
1095 $form->setValuesByPost();
1096 if ($form->checkInput()) {
1099 'apache_auth_indicator_name',
1100 'apache_auth_indicator_value',
1101 'apache_enable_auth',
1102 'apache_enable_local',
1103 'apache_local_autocreate',
1104 'apache_enable_ldap',
1105 'apache_auth_username_config_type',
1106 'apache_auth_username_direct_mapping_fieldname',
1107 'apache_default_role',
1108 'apache_auth_target_override_login_page',
1109 'apache_auth_enable_override_login_page',
1110 'apache_auth_authenticate_on_login_page',
1114 foreach ($fields as $field) {
1115 $settings->
set($field, (
string) $form->getInput($field));
1118 if ($form->getInput(
'apache_enable_auth')) {
1119 $this->
ilias->setSetting(
'apache_active',
'1');
1121 $this->
ilias->setSetting(
'apache_active',
'0');
1133 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'apache_settings_changed_success'),
true);
1134 $this->
ctrl->redirect($this,
'apacheAuthSettings');
1143 $form->setFormAction($this->
ctrl->getFormAction($this));
1144 $form->setTitle($this->
lng->txt(
'apache_settings'));
1147 $chb_enabled->setValue(
'1');
1148 $form->addItem($chb_enabled);
1151 $this->
lng->txt(
'apache_autocreate'),
1152 'apache_local_autocreate' 1154 $chb_local_create_account->setValue(
'1');
1155 $chb_enabled->addSubitem($chb_local_create_account);
1157 $roles = $this->rbac_review->getGlobalRolesArray();
1158 $select =
new ilSelectInputGUI($this->
lng->txt(
'apache_default_role'),
'apache_default_role');
1160 foreach ($roles as $role) {
1163 $select->setOptions($roleOptions);
1164 $select->setValue(4);
1166 $chb_local_create_account->addSubitem($select);
1169 $chb_local->setValue(
'1');
1170 $form->addItem($chb_local);
1173 $chb_local->setValue(
'1');
1175 $chb_ldap->setInfo($this->
lng->txt(
'apache_ldap_hint_ldap_must_be_configured'));
1177 $this->
lng->loadLanguageModule(
'auth');
1180 if (count($servers)) {
1181 $ldap_server_select =
new ilSelectInputGUI($this->
lng->txt(
'auth_ldap_server_ds'),
'apache_ldap_sid');
1182 $options[0] = $this->
lng->txt(
'select_one');
1183 foreach ($servers as $server_id) {
1185 $options[$server_id] = $ldap_server->getName();
1188 $ldap_server_select->setRequired(
true);
1191 $ldap_server_select->setValue($ds);
1193 $chb_ldap->addSubItem($ldap_server_select);
1195 $form->addItem($chb_ldap);
1197 $txt =
new ilTextInputGUI($this->
lng->txt(
'apache_auth_indicator_name'),
'apache_auth_indicator_name');
1198 $txt->setRequired(
true);
1199 $form->addItem(
$txt);
1201 $txt =
new ilTextInputGUI($this->
lng->txt(
'apache_auth_indicator_value'),
'apache_auth_indicator_value');
1202 $txt->setRequired(
true);
1203 $form->addItem(
$txt);
1206 $this->
lng->txt(
'apache_auth_enable_override_login'),
1207 'apache_auth_enable_override_login_page' 1209 $chb->setValue(
'1');
1210 $form->addItem($chb);
1213 $this->
lng->txt(
'apache_auth_target_override_login'),
1214 'apache_auth_target_override_login_page' 1216 $txt->setRequired(
true);
1217 $chb->addSubItem(
$txt);
1220 $this->
lng->txt(
'apache_auth_authenticate_on_login_page'),
1221 'apache_auth_authenticate_on_login_page' 1223 $chb->setValue(
'1');
1224 $form->addItem($chb);
1227 $sec->setTitle($this->
lng->txt(
'apache_auth_username_config'));
1228 $form->addItem($sec);
1231 $this->
lng->txt(
'apache_auth_username_config_type'),
1232 'apache_auth_username_config_type' 1234 $form->addItem($rag);
1236 $rao =
new ilRadioOption($this->
lng->txt(
'apache_auth_username_direct_mapping'),
'1');
1237 $rag->addOption($rao);
1240 $this->
lng->txt(
'apache_auth_username_direct_mapping_fieldname'),
1241 'apache_auth_username_direct_mapping_fieldname' 1243 $rao->addSubItem(
$txt);
1245 $rao =
new ilRadioOption($this->
lng->txt(
'apache_auth_username_extended_mapping'),
'2');
1247 $rag->addOption($rao);
1249 $rao =
new ilRadioOption($this->
lng->txt(
'apache_auth_username_by_function'),
'3');
1250 $rag->addOption($rao);
1253 $sec->setTitle($this->
lng->txt(
'apache_auth_security'));
1254 $form->addItem($sec);
1257 $txt->setInfo($this->
lng->txt(
'apache_auth_domains_description'));
1259 $form->addItem(
$txt);
1261 if ($this->
access->checkAccess(
'write',
'', $this->ref_id)) {
1262 $form->addCommandButton(
'saveApacheSettings', $this->
lng->txt(
'save'));
1264 $form->addCommandButton(
'cancel', $this->
lng->txt(
'cancel'));
1271 return implode(
"\n", preg_split(
"/[\r\n]+/", $text));
1277 $this->
ctrl->redirect($registration_gui);
if($err=$client->getError()) $namespace
const AUTH_OPENID_CONNECT
This class represents an option in a radio group.
static isAuthModeSaml(string $a_auth_mode)
static getDataSource(int $a_auth_mode)
registrationSettingsObject()
Class ilAuthShibbolethSettingsGUI.
static _lookupRegisterAllowed()
get all roles that are activated in user registration
setDisabled(bool $a_disabled)
buildAuthModeDeterminationForm()
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
prepareOutput(bool $show_sub_objects=true)
Interface Observer Contains several chained tasks and infos about them.
set(string $a_key, string $a_val)
__construct($a_data, int $a_id, bool $a_call_by_reference, bool $a_prepare_output=true)
Facade for consumer gui interface.
static _getActiveAuthModes()
buildSOAPTestForm(string $submit_action)
validateApacheAuthAllowedDomains(string $text)
static getInstanceByIdpId(int $a_idp_id)
static getIdpIdByAuthMode(string $a_auth_mode)
static _getAuthModeName($a_auth_key)
ilAuthLogoutBehaviourGUI: ilObjAuthSettingsGUI ilAuthLogoutBehaviourGUI: ilLoginPageGUI ...
buildSOAPForm(string $submit_action)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getServerIdByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
static getAuthPlugins()
Get active enabled auth plugins.
static http()
Fetches the global http state from ILIAS.
static getServerIds()
Get all server ids.
static _lookupTitle(int $obj_id)
apacheAuthSettingsObject(?ilPropertyFormGUI $form=null)
authSettingsObject(?ILIAS\UI\Component\Input\Container\Form\Form $auth_mode_determination_form=null, ?ILIAS\UI\Component\Input\Container\Form\Form $registration_role_mapping_form=null)
static _getNumberOfUsersPerAuthMode()
get number of users per auth mode
Class ilObjectGUI Basic methods of all Output classes.
ilAuthPageEditorGUI: ilObjAuthSettingsGUI ilAuthPageEditorGUI: ilLoginPageGUI, ilLogoutPageGUI ...
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
Class ilRegistrationSettingsGUI.
Class ilObjForumAdministration.
getApacheAuthSettingsForm()
buildRegistrationRoleMappingForm()
static redirect(string $a_script)
static testConnection(string $a_ext_uid, string $a_soap_pw, bool $a_new_user)
static _getAllAuthModes()
static _getInstance()
Get instance.
testSoapAuthConnectionObject()
updateAuthModeDeterminationObject()
ilObjAuthSettingsGUI: ilPermissionGUI, ilRegistrationSettingsGUI, ilLDAPSettingsGUI ilObjAuthSetting...
static _updateAuthMode(array $a_roles)
__construct(Container $dic, ilPlugin $plugin)
getReturnLocation(string $cmd, string $default_location="")
Get return location for command (command is method name without "Object", e.g.
This class represents a text area property in a property form.
final const CONTEXT_HTTP_PARAM
static isAuthModeLDAP(string $a_auth_mode)
Check if user auth mode is LDAP.
updateRegistrationRoleMappingObject()
ILIAS HTTP GlobalHttpState $http
saveApacheSettingsObject()
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
const PROP_AUTH_MODE_SEQUENCE
final const DEFAULT_COMMAND
GUIService $content_style_gui
const PROP_AUTH_MODE_KIND
setSubTabs(string $a_tab)