Skip to content

Commit

Permalink
choice for auth mode of external users
Browse files Browse the repository at this point in the history
  • Loading branch information
Fred Neumann committed Jan 24, 2021
1 parent 78f9ae8 commit f847c5a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
13 changes: 11 additions & 2 deletions classes/class.ilVhbShibAuthConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,22 @@ public function __construct($a_plugin_object)
$params[] = ilVhbShibAuthParam::_create(
'local_user_auth_mode',
'Authentifizierungsmodus für lokale Benutzer',
'Authentifizierungsmodus, der für lokale Benutzer gesetzt werden soll.'
. '<br />Bei externen Benutzern wid immer "Shibboleth" eigetragen.',
'Authentifizierungsmodus, der für lokale Benutzer gesetzt werden soll.',
ilVhbShibAuthParam::TYPE_SELECT,
4,
$this->getAuthModes()
);

$params[] = ilVhbShibAuthParam::_create(
'external_user_auth_mode',
'Authentifizierungsmodus für externe Benutzer',
'Authentifizierungsmodus, der für externe Benutzer gesetzt werden soll (normalerweise Shibboleth).',
ilVhbShibAuthParam::TYPE_SELECT,
4,
$this->getAuthModes()
);


$params[] = ilVhbShibAuthParam::_create(
'entitle_settings',
'Kurszuweisungs-Einstellungen',
Expand Down
3 changes: 3 additions & 0 deletions classes/class.ilVhbShibAuthUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,9 @@ protected function returnNewAuthMode()
if ($this->shibServerData->isLocalUser() && $this->config->get('local_user_auth_mode')) {
return $this->config->get('local_user_auth_mode');
}
elseif (!$this->shibServerData->isLocalUser() && $this->config->get('external_user_auth_mode')) {
return $this->config->get('external_user_auth_mode');
}
else {
return 'shibboleth';
}
Expand Down

0 comments on commit f847c5a

Please sign in to comment.