ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilAuthProviderCAS.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
28 
30  {
31  parent::__construct($credentials);
33  }
34 
35  protected function getSettings(): ilCASSettings
36  {
37  return $this->settings;
38  }
39 
40  public function doAuthentication(ilAuthStatus $status): bool
41  {
42  $this->getLogger()->debug('Starting cas authentication attempt... ');
43 
44  try {
45  // Uncomment the following line to get trace-level loggin by CAS
46  //phpCAS::setLogger($this->getLogger());
47  // Caution: If you set this to "true", there might be output
48  // and the redirect won't work and you get an ILIAS Whoopsy
49  // Though, you may need to for debugging other issues.
50  phpCAS::setVerbose(false);
51  $this->getLogger()->debug('Create client... ');
53  CAS_VERSION_2_0,
54  $this->getSettings()->getServer(),
55  $this->getSettings()->getPort(),
56  $this->getSettings()->getUri(),
58  );
59 
60  phpCAS::setNoCasServerValidation();
61  $this->getLogger()->debug('Fore CAS auth... ');
62  phpCAS::forceAuthentication();
63  $this->getLogger()->debug('Fore CAS auth done.');
64  } catch (Exception $e) {
65  $this->getLogger()->error('Cas authentication failed with message: ' . $e->getMessage());
66  $this->handleAuthenticationFail($status, 'err_wrong_login');
67  return false;
68  }
69 
70  if (phpCAS::getUser() === '') {
71  $this->getLogger()->debug('CAS user is empty.');
72  return $this->handleAuthenticationFail($status, 'err_wrong_login');
73  }
74  $this->getCredentials()->setUsername(phpCAS::getUser());
75  $this->getLogger()->debug('user name set to CAS user.');
76 
77  // check and handle ldap data sources
79  return $this->handleLDAPDataSource($status);
80  }
81 
82  // Check account available
83  $local_user = ilObjUser::_checkExternalAuthAccount("cas", $this->getCredentials()->getUsername());
84  if ($local_user !== '' && $local_user !== null) {
85  $this->getLogger()->debug('CAS authentication successful.');
87  $status->setAuthenticatedUserId(ilObjUser::_lookupId($local_user));
88  return true;
89  }
90 
91  if (!$this->getSettings()->isUserCreationEnabled()) {
92  $this->getLogger()->debug('User creation disabled. No valid local account found');
93  $this->handleAuthenticationFail($status, 'err_auth_cas_no_ilias_user');
94  return false;
95  }
96 
97  $importer = new ilCASAttributeToUser($this->getSettings());
98  $new_name = $importer->create($this->getCredentials()->getUsername());
99 
100  if ($new_name === '') {
101  $this->getLogger()->debug('User creation failed.');
102  $this->handleAuthenticationFail($status, 'err_auth_cas_no_ilias_user');
103  return false;
104  }
105 
107  $status->setAuthenticatedUserId(ilObjUser::_lookupId($new_name));
108  return true;
109  }
110 
111  protected function handleLDAPDataSource(ilAuthStatus $status): bool
112  {
115  );
116 
117  $this->getLogger()->debug('Using ldap data source for user: ' . $this->getCredentials()->getUsername());
118 
119  $sync = new ilLDAPUserSynchronisation('cas', $server->getServerId());
120  $sync->setExternalAccount($this->getCredentials()->getUsername());
121  $sync->setUserData(array());
122  $sync->forceCreation(true);
123 
124  try {
125  $internal_account = $sync->sync();
126  } catch (UnexpectedValueException $e) {
127  $this->getLogger()->warning('Authentication failed with message: ' . $e->getMessage());
128  $this->handleAuthenticationFail($status, 'err_wrong_login');
129  return false;
131  $this->handleAuthenticationFail($status, 'err_auth_ldap_failed');
132  return false;
134  // No syncronisation allowed => create Error
135  $this->getLogger()->warning('User creation disabled. No valid local account found');
136  $this->handleAuthenticationFail($status, 'err_auth_cas_no_ilias_user');
137  return false;
138  }
140  $status->setAuthenticatedUserId(ilObjUser::_lookupId($internal_account));
141  return true;
142  }
143 }
static getDataSource(int $a_auth_mode)
Interface of auth credentials.
CAS authentication provider.
static getInstanceByServerId(int $a_server_id)
Get instance by server id.
Thrown in case of failed synchronisation settings.
Synchronization of user accounts used in auth container ldap, cas,...
static _lookupId($a_user_str)
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
doAuthentication(ilAuthStatus $status)
CAS user creation helper.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
handleAuthenticationFail(ilAuthStatus $status, string $a_reason)
Handle failed authentication.
Base class for authentication providers (ldap, apache, ...)
static isDataSourceActive(int $a_auth_mode)
Check if a data source is active for a specific auth mode.
setExternalAccount(string $a_ext)
Set external account (unique for each auth mode)
setStatus(int $a_status)
Set auth status.
ilAuthCredentials $credentials
getUser()
getLogger()
Get logger.
handleLDAPDataSource(ilAuthStatus $status)
client()
description: > This example shows how a Progress Bar can be rendered and used on the client...
Definition: client.php:37
__construct(ilAuthCredentials $credentials)
static _getHttpPath()
__construct(Container $dic, ilPlugin $plugin)
setAuthenticatedUserId(int $a_id)
$server
Definition: shib_login.php:24
Auth status implementation.
static getInstance()
Get singleton instance.