19 declare(strict_types=1);
45 $this->
lng = $DIC->language();
47 if (
null === $a_idp_id || 0 === $a_idp_id) {
54 $this->attributes = $credentials->getAttributes();
55 $this->return_to = $credentials->getReturnTo();
63 !is_array($this->attributes[$this->idp->getUidClaim()]) ||
64 !array_key_exists(0, $this->attributes[$this->idp->getUidClaim()]) ||
65 $this->attributes[$this->idp->getUidClaim()][0] ===
'' 68 'Could not find unique SAML attribute for the configured identifier: %s',
69 print_r($this->idp->getUidClaim(),
true)
73 $this->uid = $this->attributes[$this->idp->getUidClaim()][0];
78 if ([] === $this->attributes) {
79 $this->
getLogger()->warning(
'Could not parse any attributes from SAML response.');
90 $this->
getLogger()->warning($e->getMessage());
99 $update_auth_mode =
false;
102 'Login observer called for SAML authentication request of ext_account "%s" and auth_mode "%s".',
108 'Trying to find ext_account "%s" for auth_mode "%s".',
119 if (!is_string($internal_account) || $internal_account ===
'') {
120 $update_auth_mode =
true;
123 'Could not find ext_account "%s" for auth_mode "%s".',
128 $fallback_auth_mode =
'local';
130 'Trying to find ext_account "%s" for auth_mode "%s".',
137 if (
$GLOBALS[
'DIC'][
'ilSetting']->
get(
'auth_mode')) {
138 $defaultAuth =
$GLOBALS[
'DIC'][
'ilSetting']->get(
'auth_mode');
142 (!is_string($internal_account) || $internal_account ===
'') &&
146 'Could not find ext_account "%s" for auth_mode "%s".',
151 $fallback_auth_mode =
'default';
153 'Trying to find ext_account "%s" for auth_mode "%s".',
161 if (is_string($internal_account) && $internal_account !==
'') {
163 'Found user "%s" for ext_account "%s" in ILIAS database.',
168 if ($this->idp->isSynchronizationEnabled()) {
170 'SAML user synchronisation is enabled, so update existing user "%s" with ext_account "%s".',
174 $internal_account = $this->
importUser($internal_account, $this->uid, $this->attributes);
177 if ($update_auth_mode) {
182 'SAML Switched auth_mode of user with login "%s" and ext_account "%s" to "%s".',
189 'SAML Could not switch auth_mode of user with login "%s" and ext_account "%s" to "%s".',
198 'Authentication succeeded: Found internal login "%s for ext_account "%s" and auth_mode "%s".',
212 'Could not find an existing user for ext_account "%s" for any relevant auth_mode.',
215 if ($this->idp->isSynchronizationEnabled()) {
217 'SAML user synchronisation is enabled, so determine action for ext_account "%s" and auth_mode "%s".',
221 if (!$this->force_new_account && $this->idp->isAccountMigrationEnabled()) {
226 'Account migration is enabled, so redirecting ext_account "%s" to account migration screen.',
236 $new_name = $this->
importUser(
null, $this->uid, $this->attributes);
238 'Created new user account with login "%s" and ext_account "%s".',
270 $this->
getLogger()->warning(
'Cannot find user id for external account: ' . $this->
getCredentials()->getUsername());
277 $this->return_to = (string)
ilSession::get(self::SESSION_TMP_RETURN_TO);
279 $this->force_new_account =
true;
286 $this->migration_account = $a_name;
301 return 'saml_' . $this->idp->getIdpId();
304 private function importUser(?
string $a_internal_login,
string $a_external_account, array $a_user_data = []): string
309 $xml_writer->xmlStartTag(
'Users');
310 if (
null === $a_internal_login) {
311 $login = $a_user_data[$this->idp->getLoginClaim()][0];
314 $xml_writer->xmlStartTag(
317 'Action' =>
'Insert',
318 'Language' => $this->
lng->getDefaultLanguage()
321 $xml_writer->xmlElement(
'Login', [], $login);
323 $xml_writer->xmlElement(
'Role', [
324 'Id' => $this->idp->getDefaultRoleId(),
329 $xml_writer->xmlElement(
'Active', [],
"true");
331 $xml_writer->xmlElement(
'TimeLimitUnlimited', [], 1);
332 $xml_writer->xmlElement(
'TimeLimitFrom', [], time());
333 $xml_writer->xmlElement(
'TimeLimitUntil', [], time());
334 $xml_writer->xmlElement(
339 $xml_writer->xmlElement(
'ExternalAccount', [], $a_external_account);
343 $login = $a_internal_login;
346 $xml_writer->xmlStartTag(
'User', [
'Action' =>
'Update',
'Id' => $usr_id]);
348 $loginClaim = $a_user_data[$this->idp->getLoginClaim()][0];
351 $xml_writer->xmlElement(
'Login', [], $login);
357 foreach ($mapping as $rule) {
360 $value = $attributeValueParser->parse();
363 $this->
getLogger()->warning($e->getMessage());
368 $xml_writer->xmlEndTag(
'User');
369 $xml_writer->xmlEndTag(
'Users');
372 'Started import of user "%s" with ext_account "%s" and auth_mode "%s".',
378 $importParser->setXMLContent($xml_writer->xmlDumpMem(
false));
379 $importParser->setRoleAssignment([
380 $this->idp->getDefaultRoleId() => $this->idp->getDefaultRoleId(),
384 $importParser->startParsing();
396 $gender_attr =
'Gender';
397 match (strtolower($value)) {
398 'n',
'neutral' => $xml_writer->
xmlElement($gender_attr, [],
'n'),
399 'm',
'male' => $xml_writer->
xmlElement($gender_attr, [],
'm'),
401 default => $xml_writer->
xmlElement($gender_attr, [],
'f'),
406 $xml_writer->
xmlElement(
'Firstname', [], $value);
410 $xml_writer->
xmlElement(
'Lastname', [], $value);
418 $xml_writer->
xmlElement(
'SecondEmail', [], $value);
422 $xml_writer->
xmlElement(
'Institution', [], $value);
426 $xml_writer->
xmlElement(
'Department', [], $value);
438 $xml_writer->
xmlElement(
'Street', [], $value);
446 $xml_writer->
xmlElement(
'PostalCode', [], $value);
450 $xml_writer->
xmlElement(
'Country', [], $value);
454 $xml_writer->
xmlElement(
'PhoneOffice', [], $value);
458 $xml_writer->
xmlElement(
'PhoneHome', [], $value);
462 $xml_writer->
xmlElement(
'PhoneMobile', [], $value);
469 case 'referral_comment':
470 $xml_writer->
xmlElement(
'Comment', [], $value);
473 case 'matriculation':
474 $xml_writer->
xmlElement(
'Matriculation', [], $value);
478 $xml_writer->
xmlElement(
'Birthday', [], $value);
487 if (!isset($udf_data[1])) {
492 if (empty($definition)) {
494 "Invalid/Orphaned UD field mapping detected: %s",
502 [
'Id' => $definition[
'il_id'],
'Name' => $definition[
'field_name']],
doAuthentication(ilAuthStatus $status)
static get(string $a_var)
determineUidFromAttributes()
Class ilExternalAuthUserUpdateAttributeMappingFilter.
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
Interface of auth credentials.
static getLogger(string $a_component_id)
Get component logger.
__construct(ilAuthCredentials $credentials, ?int $a_idp_id=null)
const SESSION_TMP_ATTRIBUTES
importUser(?string $a_internal_login, string $a_external_account, array $a_user_data=[])
getExternalAccountName()
Get external account name.
static _writeAuthMode(int $a_usr_id, string $a_auth_mode)
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
static getInstanceByIdpId(int $a_idp_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const SESSION_TMP_RETURN_TO
handleAuthenticationFail(ilAuthStatus $status, string $a_reason)
Handle failed authentication.
Base class for authentication providers (ldap, apache, ...)
Class ilExternalAuthUserAttributeMapping.
setStatus(int $a_status)
Set auth status.
Class ilExternalAuthUserAttributeMappingRule.
string $migration_account
createNewAccount(ilAuthStatus $status)
Create new ILIAS account for external_account.
static _loginExists(string $a_login, int $a_user_id=0)
check if a login name already exists You may exclude a user from the check by giving his user id as 2...
migrateAccount(ilAuthStatus $status)
Create new account.
ilAuthCredentials $credentials
getUserAuthModeName()
Get user auth mode name ldap_1 for ldap account migration with server id 1 apache for apache auth...
getTriggerAuthMode()
Get auth mode which triggered the account migration 2_1 for ldap account migration with server id 1 1...
handleSamlAuth(ilAuthStatus $status)
const STATUS_AUTHENTICATED
__construct(Container $dic, ilPlugin $plugin)
Class ilExternalAuthUserCreationAttributeMappingFilter.
static strToLower(string $a_string)
buildUserAttributeXml(ilXmlWriter $xml_writer, ilExternalAuthUserAttributeMappingRule $rule, string $value)
setAuthenticatedUserId(int $a_id)
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
Auth status implementation.
const STATUS_ACCOUNT_MIGRATION_REQUIRED
static set(string $a_var, $a_val)
Set a value.
setExternalAccountName(string $a_name)
static getFirstActiveIdp()