7 define(
"AUTH_LOCAL", 1);
8 define(
"AUTH_LDAP", 2);
9 define(
"AUTH_RADIUS", 3);
10 define(
"AUTH_SCRIPT", 4);
11 define(
"AUTH_SHIBBOLETH", 5);
12 define(
"AUTH_CAS", 6);
13 define(
"AUTH_SOAP", 7);
15 define(
"AUTH_HTTP", 8);
17 define(
"AUTH_ECS", 9);
19 define(
"AUTH_APACHE", 11);
20 define(
"AUTH_SAML", 12);
22 define(
'AUTH_OPENID_CONNECT', 15);
24 define(
"AUTH_INACTIVE", 18);
26 define(
'AUTH_MULTIPLE', 20);
28 define(
'AUTH_SESSION', 21);
30 define(
'AUTH_PROVIDER_LTI', 22);
32 define(
'AUTH_SOAP_NO_ILIAS_USER', -100);
33 define(
'AUTH_LDAP_NO_ILIAS_USER', -200);
34 define(
'AUTH_RADIUS_NO_ILIAS_USER', -300);
39 define(
'AUTH_APACHE_FAILED', -500);
40 define(
'AUTH_SAML_FAILED', -501);
42 define(
'AUTH_MODE_INACTIVE', -1000);
46 define(
'AUTH_SOAP_NO_ILIAS_USER_BUT_EMAIL', -101);
47 define(
'AUTH_CAS_NO_ILIAS_USER', -90);
50 define(
'AUTH_USER_WRONG_IP', -600);
51 define(
'AUTH_USER_INACTIVE', -601);
52 define(
'AUTH_USER_TIME_LIMIT_EXCEEDED', -602);
53 define(
'AUTH_USER_SIMULTANEOUS_LOGIN', -603);
54 define(
'AUTH_CAPTCHA_INVALID', -604);
57 include_once
'./Services/Authentication/classes/class.ilAuthFactory.php';
58 require_once(
'Services/Authentication/classes/class.ilSessionControl.php');
79 if (isset(
$_GET[
'ecs_hash']) or isset(
$_GET[
'ecs_hash_url'])) {
87 if (isset(
$_GET[
'ecs_hash']) or isset(
$_GET[
'ecs_hash_url'])) {
88 include_once
'./Services/Authentication/classes/Frontend/class.ilAuthFrontendCredentials.php';
90 $credentials->setUsername(
$_GET[
'ecs_login']);
93 include_once
'./Services/Authentication/classes/Provider/class.ilAuthProviderFactory.php';
95 $providers = $provider_factory->getProviders($credentials);
97 include_once
'./Services/Authentication/classes/class.ilAuthStatus.php';
100 include_once
'./Services/Authentication/classes/Frontend/class.ilAuthFrontendFactory.php';
103 $frontend = $frontend_factory->getFrontend(
110 $frontend->authenticate();
112 switch ($status->getStatus()) {
127 $ilDB = $DIC[
'ilDB'];
132 if ($a_db_handler !=
'') {
133 $db = &$a_db_handler;
137 if (strpos($a_auth_mode,
'_') !==
false) {
138 $auth_arr = explode(
'_', $a_auth_mode);
139 $auth_switch = $auth_arr[0];
141 $auth_switch = $a_auth_mode;
143 switch ($auth_switch) {
150 include_once
'./Services/LDAP/classes/class.ilLDAPServer.php';
155 include_once
'./Services/LTI/classes/InternalProvider/class.ilAuthProviderLTI.php';
175 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
202 $ilias = $DIC[
'ilias'];
205 switch ((
int) $a_auth_key) {
212 include_once
'./Services/LDAP/classes/class.ilLDAPServer.php';
217 include_once
'./Services/LTI/classes/InternalProvider/class.ilAuthProviderLTI.php';
237 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
264 $ilias = $DIC[
'ilias'];
271 include_once(
'Services/LDAP/classes/class.ilLDAPServer.php');
273 $modes[
'ldap_' . $sid] = (
AUTH_LDAP .
'_' . $sid);
276 include_once
'./Services/LTI/classes/InternalProvider/class.ilAuthProviderLTI.php';
304 include_once
'./Services/WebServices/ECS/classes/class.ilECSServerSettings.php';
309 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
311 $modes[
'saml_' . $idp->getIdpId()] =
AUTH_SAML .
'_' . $idp->getIdpId();
315 foreach (self::getAuthPlugins() as $pl) {
316 foreach ($pl->getAuthIds() as $auth_id) {
317 if ($pl->isAuthActive($auth_id)) {
318 $modes[$pl->getAuthName($auth_id)] = $auth_id;
342 foreach ($modes as $mode) {
344 include_once
'./Services/LTI/classes/InternalProvider/class.ilAuthProviderLTI.php';
360 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
362 $id =
AUTH_SAML .
'_' . $idp->getIdpId();
380 $ilDB = $DIC[
'ilDB'];
387 $r =
$ilDB->query(
"SELECT login FROM usr_data WHERE login = " .
388 $ilDB->quote($c_login));
389 if ($r->numRows() > 0) {
391 $c_login = $a_login . $postfix;
402 include_once(
'Services/Radius/classes/class.ilRadiusSettings.php');
405 if ($rad_settings->isActive()) {
408 include_once(
'Services/LDAP/classes/class.ilLDAPServer.php');
424 foreach ($pl->getAuthIds() as $auth_id) {
425 if ($pl->getMultipleAuthModeOptions($auth_id)) {
443 include_once(
'Services/LDAP/classes/class.ilLDAPServer.php');
455 include_once(
'Services/Radius/classes/class.ilRadiusSettings.php');
457 if ($rad_settings->isActive()) {
458 $options[
AUTH_RADIUS][
'txt'] = $rad_settings->getName();
465 $apache_settings =
new ilSetting(
'apache_auth');
466 $options[
AUTH_APACHE][
'txt'] = $apache_settings->get(
'name',
$lng->txt(
'apache_auth'));
478 $default =
$ilSetting->get(
'default_auth_mode', $default);
479 $default = (int) $_REQUEST[
'auth_mode'] ? (
int) $_REQUEST[
'auth_mode'] : $default;
484 foreach ($pls as $pl) {
485 $auths = $pl->getAuthIds();
486 foreach ($auths as $auth_id) {
487 $pl_auth_option = $pl->getMultipleAuthModeOptions($auth_id);
488 if ($pl_auth_option) {
489 $options = $options + $pl_auth_option;
495 if (array_key_exists($default, $options)) {
496 $options[$default][
'checked'] =
true;
499 return $options ? $options : array();
529 include_once(
'Services/LDAP/classes/class.ilLDAPServer.php');
534 include_once
'./Services/LTI/classes/InternalProvider/class.ilAuthProviderLTI.php';
539 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
549 foreach (self::getAuthPlugins() as $pl) {
550 foreach ($pl->getAuthIds() as $auth_id) {
551 if ($pl->isAuthActive($auth_id) and $pl->isExternalAccountNameRequired($auth_id)) {
571 switch ((
int) $a_auth_mode) {
593 switch ($a_auth_mode) {
605 public static function isPasswordModificationHidden()
612 if (
$ilSetting->get(
'usr_settings_hide_password') ||
$ilSetting->get(
'usr_settings_disable_password')) {
630 switch ((
int) $a_authmode) {
646 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
648 return $idp->isActive() && $idp->allowLocalAuthentication();
651 return $ilSetting->get(
"shib_auth_allow_local");
653 return $ilSetting->get(
"soap_auth_allow_local");
674 if (self::isPasswordModificationHidden()) {
680 switch ((
int) $a_authmode) {
691 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
693 return $idp->isActive() && $idp->allowLocalAuthentication();
702 return $ilSetting->get(
"shib_auth_allow_local");
704 return $ilSetting->get(
"soap_auth_allow_local");
719 switch ((
int) $a_authmode) {
751 $pls =
$GLOBALS[
'DIC'][
'ilPluginAdmin']->getActivePluginsForSlot(
757 foreach ($pls as $pl) {
758 $pl_objs[] =
$GLOBALS[
'DIC'][
'ilPluginAdmin']->getPluginObject(
779 switch ((
int) $a_auth_key) {
781 include_once
'./Services/LDAP/classes/class.ilLDAPServer.php';
787 include_once
'./Services/LTI/classes/InternalProvider/class.ilAuthProviderLTI.php';
793 require_once
'Services/Saml/classes/class.ilSamlIdp.php';
796 return $idp->getEntityId();
799 $lng->loadLanguageModule(
'auth');
800 if (!empty($auth_name)) {
801 return $lng->txt(
'auth_' . $auth_name);
803 return $lng->txt(
'auth_' . self::_getAuthModeName($a_auth_key));
const CONTEXT_STANDARD_FORM
static _hasMultipleAuthenticationMethods()
static _getServerList()
Get list of all configured servers.
static getKeyByAuthMode($a_auth_mode)
Get auth id by auth mode.
static getServerIdByAuthMode($a_auth_mode)
Get auth id by auth mode.
const STATUS_AUTHENTICATION_FAILED
static getInstance()
Get singleton instance.
static getAuthModeByKey($a_auth_key)
get auth mode by key
const AUTH_OPENID_CONNECT
Factory for auth frontend classes.
static _generateLogin($a_login)
generate free login by starting with a default string and adding postfix numbers
static isAuthenticationForced()
Check if authentication is should be forced.
static lookupConsumer($a_sid)
Lookup consumer title.
static goToPublicSection()
go to public section
static supportsLocalPasswordValidation($a_authmode)
Check if local password validation is supported.
static _getActiveAuthModes()
static _getActiveServerList()
Get active server list.
static getAuthModeTranslation($a_auth_key, $auth_name='')
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 _getAuthMode($a_auth_mode, $a_db_handler='')
static _getAuthModeName($a_auth_key)
static getInstanceByServerId($a_server_id)
Get instance by server id.
static getInstance()
Get singleton instance.
static _allowPasswordModificationByAuthMode($a_auth_mode)
Allow password modification.
static utility functions used to manage authentication modes
static getAuthPlugins()
Get active enabled auth plugins.
static handleForcedAuthentication()
static getActiveAuthModes()
get all active authmode server ids
static _getMultipleAuthModeOptions($lng)
static _getInstance()
singleton get instance
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
static _isExternalAccountEnabled()
Check if an external account name is required.
static getServerIdByAuthMode($a_auth_mode)
Get auth id by auth mode.
static getKeyByAuthMode(string $a_auth_mode)
const STATUS_AUTHENTICATED
static getKeyByAuthMode($a_auth_mode)
Get auth id by auth mode.
static isLocalPasswordEnabledForAuthMode($a_authmode)
Check if local password validation is enabled for a specific auth_mode.
static _getAllAuthModes()
static getAuthModeByKey($a_auth_key)
Get auth mode by key.
static getAuthModeByKey(string $a_auth_key)
static getInstance()
Get status instance.
static getActiveIdpList()
static isPasswordModificationEnabled($a_authmode)
Check if password modification is enabled.
Description of class class.