19 declare(strict_types=1);
96 $query_wrapper = $DIC->http()->wrapper()->query();
97 return $query_wrapper->has(
'ecs_hash') || $query_wrapper->has(
'ecs_hash_url');
103 $query_wrapper = $DIC->http()->wrapper()->query();
104 $string_refinery = $DIC->refinery()->kindlyTo()->string();
105 if ($query_wrapper->has(
'ecs_hash') || $query_wrapper->has(
'ecs_hash_url')) {
107 $credentials->setUsername($query_wrapper->retrieve(
'ecs_login', $string_refinery));
108 $credentials->setAuthMode((
string) self::AUTH_ECS);
111 $providers = $provider_factory->getProviders($credentials);
117 $frontend = $frontend_factory->getFrontend(
124 $frontend->authenticate();
126 switch ($status->getStatus()) {
146 if (null === $a_auth_mode) {
150 if (strpos($a_auth_mode,
'_') !==
false) {
151 $auth_arr = explode(
'_', $a_auth_mode);
152 $auth_switch = $auth_arr[0];
154 $auth_switch = $a_auth_mode;
156 switch ($auth_switch) {
158 return self::AUTH_LOCAL;
168 return self::AUTH_SCRIPT;
172 return self::AUTH_SHIBBOLETH;
176 return self::AUTH_OPENID_CONNECT;
183 return self::AUTH_CAS;
187 return self::AUTH_SOAP;
191 return self::AUTH_ECS;
194 return self::AUTH_APACHE;
207 switch ((
int) $a_auth_key) {
208 case self::AUTH_LOCAL:
212 case self::AUTH_LDAP:
217 case self::AUTH_PROVIDER_LTI:
224 case self::AUTH_SCRIPT:
228 case self::AUTH_SHIBBOLETH:
232 case self::AUTH_SAML:
235 case self::AUTH_SOAP:
242 case self::AUTH_APACHE:
245 case self::AUTH_OPENID_CONNECT:
266 'local' => self::AUTH_LOCAL
270 $modes[
'ldap_' . $sid] = (self::AUTH_LDAP .
'_' . $sid);
274 $modes[
'lti_' . $sid] = (self::AUTH_PROVIDER_LTI .
'_' . $sid);
278 $modes[
'oidc'] = self::AUTH_OPENID_CONNECT;
282 $modes[
'shibboleth'] = self::AUTH_SHIBBOLETH;
285 $modes[
'script'] = self::AUTH_SCRIPT;
288 $modes[
'cas'] = self::AUTH_CAS;
291 $modes[
'soap'] = self::AUTH_SOAP;
294 $modes[
'apache'] = self::AUTH_APACHE;
298 $modes[
'ecs'] = self::AUTH_ECS;
302 $idpId = $idp->getIdpId();
303 $modes[
'saml_' . $idpId] = self::AUTH_SAML .
'_' . $idpId;
307 foreach (self::getAuthPlugins() as $pl) {
308 foreach ($pl->getAuthIds() as $auth_id) {
309 if ($pl->isAuthActive($auth_id)) {
310 $modes[$pl->getAuthName($auth_id)] = $auth_id;
326 self::AUTH_SHIBBOLETH,
331 self::AUTH_PROVIDER_LTI,
332 self::AUTH_OPENID_CONNECT,
336 foreach ($modes as $mode) {
337 if ($mode === self::AUTH_PROVIDER_LTI) {
339 $id = self::AUTH_PROVIDER_LTI .
'_' . $sid;
340 $ret[
$id] = self::_getAuthModeName(
$id);
346 if ($mode === self::AUTH_LDAP) {
348 $id = self::AUTH_LDAP .
'_' . $ldap_id;
349 $ret[
$id] = self::_getAuthModeName(
$id);
354 if ($mode === self::AUTH_SAML) {
356 $id = self::AUTH_SAML .
'_' . $idp->getIdpId();
357 $ret[
$id] = self::_getAuthModeName(
$id);
361 $ret[$mode] = self::_getAuthModeName($mode);
374 $ilDB = $DIC[
'ilDB'];
381 $r =
$ilDB->query(
"SELECT login FROM usr_data WHERE login = " .
382 $ilDB->quote($c_login));
383 if ($r->numRows() > 0) {
385 $c_login = $a_login . $postfix;
409 foreach (self::getAuthPlugins() as $pl) {
410 foreach ($pl->getAuthIds() as $auth_id) {
411 if ($pl->getMultipleAuthModeOptions($auth_id)) {
434 $options[self::AUTH_LOCAL][
'txt'] = $lng->
txt(
'authenticate_ilias');
439 $options[self::AUTH_LDAP .
'_' . $sid][
'txt'] =
$server->getName();
446 $apache_settings =
new ilSetting(
'apache_auth');
447 $options[self::AUTH_APACHE][
'txt'] = $apache_settings->get(
'name', $lng->
txt(
'apache_auth'));
448 $options[self::AUTH_APACHE][
'hide_in_ui'] =
true;
451 if (
$ilSetting->get(
'auth_mode', (
string) self::AUTH_LOCAL) === (string) self::AUTH_LDAP) {
452 $default = self::AUTH_LDAP;
454 $default = self::AUTH_LOCAL;
457 $default =
$ilSetting->get(
'default_auth_mode', (
string) $default);
460 $pls = self::getAuthPlugins();
461 foreach ($pls as $pl) {
462 $auths = $pl->getAuthIds();
463 foreach ($auths as $auth_id) {
464 $pl_auth_option = $pl->getMultipleAuthModeOptions($auth_id);
465 if ($pl_auth_option) {
466 $options += $pl_auth_option;
472 if (array_key_exists($default, $options)) {
473 $options[$default][
'checked'] =
true;
515 foreach (self::getAuthPlugins() as $pl) {
516 foreach ($pl->getAuthIds() as $auth_id) {
517 if ($pl->isAuthActive($auth_id) && $pl->isExternalAccountNameRequired($auth_id)) {
533 switch ((
int) $a_auth_mode) {
534 case self::AUTH_LDAP:
536 case self::AUTH_PROVIDER_LTI:
537 case self::AUTH_OPENID_CONNECT:
551 switch ($a_auth_mode) {
552 case self::AUTH_LOCAL:
553 case self::AUTH_APACHE:
563 public static function isPasswordModificationHidden():
bool 570 return $ilSetting->get(
'usr_settings_hide_password') ||
$ilSetting->get(
'usr_settings_disable_password');
584 switch ((
int) $a_authmode) {
586 case self::AUTH_LOCAL:
587 case self::AUTH_APACHE:
591 case self::AUTH_LDAP:
593 case self::AUTH_SCRIPT:
594 case self::AUTH_PROVIDER_LTI:
595 case self::AUTH_OPENID_CONNECT:
598 case self::AUTH_SAML:
600 return $idp->isActive() && $idp->allowLocalAuthentication();
602 case self::AUTH_SHIBBOLETH:
603 return (
bool)
$ilSetting->get(
"shib_auth_allow_local",
'0');
604 case self::AUTH_SOAP:
605 return (
bool)
$ilSetting->get(
"soap_auth_allow_local",
'0');
607 return (
bool)
$ilSetting->get(
"cas_allow_local",
'0');
621 if (self::isPasswordModificationHidden()) {
625 return self::isLocalPasswordEnabledForAuthMode($a_authmode);
635 switch ((
int) $a_authmode) {
636 case self::AUTH_LDAP:
637 case self::AUTH_LOCAL:
638 return self::LOCAL_PWV_FULL;
640 case self::AUTH_SHIBBOLETH:
641 case self::AUTH_OPENID_CONNECT:
642 case self::AUTH_SAML:
643 case self::AUTH_SOAP:
645 if (!self::isPasswordModificationEnabled($a_authmode)) {
646 return self::LOCAL_PWV_NO;
648 return self::LOCAL_PWV_USER;
650 case self::AUTH_PROVIDER_LTI:
652 case self::AUTH_SCRIPT:
653 case self::AUTH_APACHE:
655 return self::LOCAL_PWV_USER;
664 return $GLOBALS[
'DIC'][
'component.factory']->getActivePluginsInSlot(
'authhk');
674 switch ((
int) $a_auth_key) {
675 case self::AUTH_LDAP:
679 case self::AUTH_PROVIDER_LTI:
684 case self::AUTH_SAML:
689 $lng->loadLanguageModule(
'auth');
690 if (!empty($auth_name)) {
691 return $lng->txt(
'auth_' . $auth_name);
694 return $lng->txt(
'auth_' . self::_getAuthModeName($a_auth_key));
const AUTH_OPENID_CONNECT
static getAuthModeByKey(string $a_auth_key)
Get auth mode by key.
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
const CONTEXT_STANDARD_FORM
static getAuthModeTranslation(string $a_auth_key, string $auth_name='')
static _getAuthMode(?string $a_auth_mode)
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
static _hasMultipleAuthenticationMethods()
static _getServerList()
Get list of all configured servers.
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
const AUTH_USER_SIMULTANEOUS_LOGIN
const STATUS_AUTHENTICATION_FAILED
static getInstance()
Get singleton instance.
static getKeyByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
Factory for auth frontend classes.
static getServerIdByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
static isAuthenticationForced()
Check if authentication is should be forced.
static goToPublicSection()
go to public section
static supportsLocalPasswordValidation($a_authmode)
Check if local password validation is supported.
static _getActiveAuthModes()
static lookupConsumer(int $a_sid)
Lookup consumer title.
static _getActiveServerList()
Get active server list.
static _needsExternalAccountByAuthMode($a_auth_mode)
Check if chosen auth mode needs an external account entry.
static getInstanceByIdpId(int $a_idp_id)
static getIdpIdByAuthMode(string $a_auth_mode)
static _getAuthModeName($a_auth_key)
static _allowPasswordModificationByAuthMode($a_auth_mode)
Allow password modification.
const AUTH_SOAP_NO_ILIAS_USER_BUT_EMAIL
static utility functions used to manage authentication modes
static getServerIdByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
const AUTH_USER_TIME_LIMIT_EXCEEDED
static getAuthPlugins()
Get active enabled auth plugins.
static handleForcedAuthentication()
static getActiveAuthModes()
get all active authmode server ids
static getKeyByAuthMode(string $a_auth_mode)
Get auth id by auth mode.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static _isExternalAccountEnabled()
Check if an external account name is required.
static getKeyByAuthMode(string $a_auth_mode)
const STATUS_AUTHENTICATED
const AUTH_CAS_NO_ILIAS_USER
static isLocalPasswordEnabledForAuthMode($a_authmode)
Check if local password validation is enabled for a specific auth_mode.
static _getAllAuthModes()
static getAuthModeByKey(string $a_auth_key)
static getInstance()
Get status instance.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static _getMultipleAuthModeOptions(ilLanguage $lng)
static getActiveIdpList()
static isPasswordModificationEnabled($a_authmode)
Check if password modification is enabled.
const AUTH_LDAP_NO_ILIAS_USER
const AUTH_SOAP_NO_ILIAS_USER
static getAuthModeByKey(string $a_auth_key)
get auth mode by key