19 declare(strict_types=1);
44 preg_match(self::ATTR_REGEX, $this->rule->getExternalAttribute(), $matches);
46 if (is_array($matches) && isset($matches[3]) && is_numeric($matches[3])) {
58 preg_match(self::ATTR_REGEX, $this->rule->getExternalAttribute(), $matches);
60 if (is_array($matches) && isset($matches[1]) && is_string($matches[1])) {
61 $attribute = $matches[1];
71 if (!array_key_exists($attributeKey, $this->userData)) {
73 "Configured external attribute of mapping '%s' -> '%s' does not exist in SAML attribute data.",
74 $this->rule->getAttribute(),
75 $this->rule->getExternalAttribute()
79 $value = $this->userData[$attributeKey];
81 if (is_array($value)) {
84 if (!array_key_exists($valueIndex, $value)) {
86 "Configured external attribute of mapping '%s' -> '%s' does not exist in SAML attribute data.",
87 $this->rule->getAttribute(),
88 $this->rule->getExternalAttribute()
92 $value = $value[$valueIndex];
95 if (!is_scalar($value)) {
97 "Could not parse a scalar value based on the user attribute mapping '%s' -> '%s'.",
98 $this->rule->getAttribute(),
99 $this->rule->getExternalAttribute()
103 return (
string) $value;
ilExternalAuthUserAttributeMappingRule $rule
Class ilExternalAuthUserAttributeMappingRule.
Class ilSamlMappedUserAttributeValueParser.
__construct(ilExternalAuthUserAttributeMappingRule $rule, array $userData)