ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthProviderFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
23  private ilLogger $logger;
24 
25  public function __construct()
26  {
27  global $DIC;
28  $this->logger = $DIC->logger()->auth();
29  }
30 
34  public function getProviders(ilAuthCredentials $credentials): array
35  {
36  // Fixed provider selection;
37  if ($credentials->getAuthMode() !== '') {
38  $this->logger->debug('Returning fixed provider for auth mode: ' . $credentials->getAuthMode());
39  return [
40  $this->getProviderByAuthMode($credentials, $credentials->getAuthMode())
41  ];
42  }
43 
44  $auth_determination = ilAuthModeDetermination::_getInstance();
45  $sequence = $auth_determination->getAuthModeSequence($credentials->getUsername());
46 
47  $providers = [];
48  foreach ($sequence as $position => $authmode) {
49  $provider = $this->getProviderByAuthMode($credentials, (string) $authmode);
50  if ($provider instanceof ilAuthProviderInterface) {
51  $providers[] = $provider;
52  }
53  }
54  return $providers;
55  }
56 
60  public function getProviderByAuthMode(ilAuthCredentials $credentials, $a_authmode): ?ilAuthProviderInterface
61  {
62  switch ((int) $a_authmode) {
64  $ldap_info = explode('_', $a_authmode);
65  $this->logger->debug('Using ldap authentication with credentials ');
66  return new ilAuthProviderLDAP($credentials, (int) $ldap_info[1]);
67 
69  $this->logger->debug('Using local database authentication');
70  return new ilAuthProviderDatabase($credentials);
71 
73  $this->logger->debug('Using SOAP authentication.');
74  return new ilAuthProviderSoap($credentials);
75 
77  $this->logger->debug('Using apache authentication.');
78  return new ilAuthProviderApache($credentials);
79 
81  $this->logger->debug('Using CAS authentication');
82  return new ilAuthProviderCAS($credentials);
83 
85  $this->logger->debug('Using shibboleth authentication.');
86  return new ilAuthProviderShibboleth($credentials);
87 
89  $this->logger->debug('Using lti provider authentication.');
90  return new ilAuthProviderLTI($credentials);
91 
93  $this->logger->debug('Using ecs authentication.');
94  return new ilAuthProviderECS($credentials);
95 
97  $this->logger->debug('Using apache authentication.');
98  return new ilAuthProviderSaml($credentials, ilSamlIdp::getIdpIdByAuthMode($a_authmode));
99 
101  $this->logger->debug('Using openid connect authentication.');
102  return new ilAuthProviderOpenIdConnect($credentials);
103 
104  default:
105  $this->logger->debug('Plugin authentication: ' . $a_authmode);
106  foreach (ilAuthUtils::getAuthPlugins() as $pl) {
107  $provider = $pl->getProvider($credentials, $a_authmode);
108  if ($provider instanceof ilAuthProviderInterface) {
109  return $provider;
110  }
111  }
112  break;
113  }
114 
115  return null;
116  }
117 }
const AUTH_OPENID_CONNECT
getProviders(ilAuthCredentials $credentials)
Interface of auth credentials.
CAS authentication provider.
getUsername()
Get username.
static getIdpIdByAuthMode(string $a_auth_mode)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getAuthPlugins()
Get active enabled auth plugins.
$provider
Definition: ltitoken.php:80
Standard interface for auth provider implementations.
Auth prvider for ecs auth.
global $DIC
Definition: shib_login.php:22
OAuth based lti authentication.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getAuthMode()
Get auth mode.
getProviderByAuthMode(ilAuthCredentials $credentials, $a_authmode)