19 declare(strict_types=1);
34 private \ilGlobalTemplateInterface
$tpl;
44 $this->tpl = $DIC->ui()->mainTemplate();
46 $this->
ctrl = $DIC->ctrl();
47 $this->rbacSystem = $DIC->rbac()->system();
48 $this->rbacReview = $DIC->rbac()->review();
49 $this->ilErr = $DIC[
'ilErr'];
50 $this->
lng = $DIC->language();
51 $this->
lng->loadLanguageModule(
'registration');
52 $this->
lng->loadLanguageModule(
'auth');
54 $this->
renderer = $DIC->ui()->renderer();
55 $this->
factory = $DIC->ui()->factory();
57 $this->ref_id = $a_auth_ref_id;
69 $next_class = $this->
ctrl->getNextClass($this);
70 $cmd = $this->
ctrl->getCmd(
"settings");
72 if (!$this->rbacSystem->checkAccess(
"visible,read", $this->ref_id)) {
73 $this->ilErr->raiseError($this->
lng->txt(
'msg_no_perm_read'), $this->ilErr->WARNING);
76 switch ($next_class) {
89 $this->
lng->loadLanguageModule(
'auth');
92 $form->setFormAction($this->
ctrl->getFormAction($this));
94 $form->setTitle($this->
lng->txt(
'auth_cas_auth'));
96 $drop_in_replacements_url =
'https://github.com/ILIAS-eLearning/ILIAS/tree/trunk/components/ILIAS/HTTP#dropinreplacements';
97 $drop_in_replacements_link = $this->
factory->link()->standard(
98 $this->
lng->txt(
"auth_cas_auth_desc"),
99 $drop_in_replacements_url
101 $form->setDescription($this->
renderer->render(
102 $drop_in_replacements_link
112 $text->setValue($this->
getSettings()->getServer());
113 $text->setRequired(
true);
114 $text->setInfo($this->
lng->txt(
'auth_cas_server_desc'));
116 $text->setMaxLength(255);
117 $form->addItem($text);
121 $port->setRequired(
true);
122 $port->setMinValue(0);
123 $port->setMaxValue(65535);
125 $port->setMaxLength(5);
126 $port->setInfo($this->
lng->txt(
'auth_cas_port_desc'));
127 $form->addItem($port);
131 $text->setRequired(
true);
132 $text->setInfo($this->
lng->txt(
'auth_cas_uri_desc'));
134 $text->setMaxLength(255);
135 $form->addItem($text);
143 $form->addItem($sync);
147 $this->
lng->txt(
'disabled'),
148 (string) self::SYNC_DISABLED,
151 $sync->addOption($dis);
155 $this->
lng->txt(
'auth_sync_cas'),
156 (string) self::SYNC_CAS,
159 $rad->setInfo($this->
lng->txt(
'auth_sync_cas_info'));
160 $sync->addOption($rad);
164 $select->setValue($this->
getSettings()->getDefaultRole());
165 $rad->addSubItem($select);
171 if (count($server_ids)) {
173 $this->
lng->txt(
'auth_css_ldap'),
177 $ldap->setInfo($this->
lng->txt(
'auth_cas_ldap_info'));
178 $sync->addOption($ldap);
180 $ldap_server_select =
new ilSelectInputGUI($this->
lng->txt(
'auth_ldap_server_ds'),
'ldap_sid');
181 $options[0] = $this->
lng->txt(
'select_one');
182 foreach ($server_ids as $ldap_sid) {
184 $options[$ldap_sid] = $ldap_server->getName();
187 $ldap_server_select->setRequired(
true);
189 $ldap_server_select->setValue($ds);
191 $ldap->addSubItem($ldap_server_select);
206 $instruction->setRows(6);
207 $instruction->setValue($this->
getSettings()->getLoginInstruction());
208 $form->addItem($instruction);
211 $create->setInfo($this->
lng->txt(
'auth_cas_allow_local_desc'));
212 $create->setChecked($this->
getSettings()->isLocalAuthenticationEnabled());
213 $create->setValue(
"1");
214 $form->addItem($create);
216 if ($this->rbacSystem->checkAccess(
'write', $this->ref_id)) {
217 $form->addCommandButton(
'save', $this->
lng->txt(
'save'));
226 $this->tpl->setContent($form->getHTML());
232 if ($form->checkInput()) {
233 $this->
getSettings()->setActive((
bool) $form->getInput(
'active'));
234 $this->
getSettings()->setServer($form->getInput(
'server'));
235 $this->
getSettings()->setPort((
int) $form->getInput(
'port'));
236 $this->
getSettings()->setUri($form->getInput(
'uri'));
237 $this->
getSettings()->setDefaultRole((
int) $form->getInput(
'role'));
238 $this->
getSettings()->enableLocalAuthentication((
bool) $form->getInput(
'local'));
239 $this->
getSettings()->setLoginInstruction($form->getInput(
'instruction'));
243 switch ((
int) $form->getInput(
'sync')) {
250 if (!(
int) $form->getInput(
'ldap_sid')) {
251 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
261 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
262 $this->
ctrl->redirect($this,
'settings');
265 $form->setValuesByPost();
266 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_ceck_input'));
267 $this->tpl->setContent($form->getHTML());
273 $this->rbacReview->getGlobalRoles(),
279 $select[0] = $this->
lng->txt(
'links_select_one');
280 foreach ($global_roles as $role_id) {
This class represents an option in a radio group.
static disableDataSourceForAuthMode(int $a_authmode)
Disable data source.
static getDataSource(int $a_auth_mode)
__construct(int $a_auth_ref_id)
static getAvailableDataSources(int $a_auth_mode)
static toggleDataSource(int $a_ldap_server_id, int $a_auth_mode, int $a_status)
Toggle Data Source.
ilGlobalTemplateInterface $tpl
static isDataSourceActive(int $a_auth_mode)
Check if a data source is active for a specific auth mode.
static _lookupTitle(int $obj_id)
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.
This class represents a text area property in a property form.
static getInstance()
Get singleton instance.