From 54de3d5fb2fcf99d479befa1ad43ce725c6a187b Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Sat, 31 Aug 2024 23:25:15 +0200 Subject: [PATCH] Add implementation of SecurityTokenServiceType --- src/XML/fed/SecurityTokenServiceType.php | 158 +++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 src/XML/fed/SecurityTokenServiceType.php diff --git a/src/XML/fed/SecurityTokenServiceType.php b/src/XML/fed/SecurityTokenServiceType.php new file mode 100644 index 00000000..0841fc1b --- /dev/null +++ b/src/XML/fed/SecurityTokenServiceType.php @@ -0,0 +1,158 @@ +localName, 'RoleDescriptor', InvalidDOMElementException::class); + Assert::same($xml->namespaceURI, static::NS, InvalidDOMElementException::class); + + $protocols = self::getAttribute($xml, 'protocolSupportEnumeration'); + $validUntil = self::getOptionalAttribute($xml, 'validUntil', null); + SAMLAssert::nullOrValidDateTime($validUntil); + + $orgs = Organization::getChildrenOfClass($xml); + Assert::maxCount( + $orgs, + 1, + 'More than one Organization found in this descriptor', + TooManyElementsException::class, + ); + + $extensions = Extensions::getChildrenOfClass($xml); + Assert::maxCount( + $extensions, + 1, + 'Only one md:Extensions element is allowed.', + TooManyElementsException::class, + ); + + $logicalServiceNamesOffered = LogicalServiceNamesOffered::getChildrenOfClass($xml); + Assert::maxCount( + $logicalServiceNamesOffered, + 1, + 'Only one fed:LogicalServiceNamesOffered is allowed.', + TooManyElementsException::class, + ); + + $tokenTypesOffered = TokenTypesOffered::getChildrenOfClass($xml); + Assert::maxCount( + $tokenTypesOffered, + 1, + 'Only one fed:TokenTypesOffered is allowed.', + TooManyElementsException::class, + ); + + $claimDialectsOffered = ClaimDialectsOffered::getChildrenOfClass($xml); + Assert::maxCount( + $claimDialectsOffered, + 1, + 'Only one fed:ClaimDialectsOffered is allowed.', + TooManyElementsException::class, + ); + + $claimTypesOffered = ClaimTypesOffered::getChildrenOfClass($xml); + Assert::maxCount( + $claimTypesOffered, + 1, + 'Only one fed:ClaimTypesOffered is allowed.', + TooManyElementsException::class, + ); + + $claimTypesRequested = ClaimTypesRequested::getChildrenOfClass($xml); + Assert::maxCount( + $claimTypesRequested, + 1, + 'Only one fed:ClaimTypesRequested is allowed.', + TooManyElementsException::class, + ); + + $automaticPseudonyms = AutomaticPseudonyms::getChildrenOfClass($xml); + Assert::maxCount( + $automaticPseudonyms, + 1, + 'Only one fed:AutomaticPseudonyms is allowed.', + TooManyElementsException::class, + ); + + $targetScopes = TargetScopes::getChildrenOfClass($xml); + Assert::maxCount( + $targetScopes, + 1, + 'Only one fed:TargetScopes is allowed.', + TooManyElementsException::class, + ); + + $signature = Signature::getChildrenOfClass($xml); + Assert::maxCount( + $signature, + 1, + 'Only one ds:Signature element is allowed.', + TooManyElementsException::class, + ); + + $securityTokenServiceType = new static( + preg_split('/[\s]+/', trim($protocols)), + self::getOptionalAttribute($xml, 'ID', null), + $validUntil !== null ? new DateTimeImmutable($validUntil) : null, + self::getOptionalAttribute($xml, 'cacheDuration', null), + array_pop($extensions), + self::getOptionalAttribute($xml, 'errorURL', null), + KeyDescriptor::getChildrenOfClass($xml), + array_pop($orgs), + ContactPerson::getChildrenOfClass($xml), + self::getAttributesNSFromXML($xml), + array_pop($logicalServiceNamesOffered), + array_pop($tokenTypesOffered), + array_pop($claimDialectsOffered), + array_pop($claimTypesOffered), + array_pop($claimTypesRequested), + array_pop($automaticPseudonyms), + array_pop($targetScopes), + self::getOptionalAttribute($xml, 'ServiceDisplayName', null), + self::getOptionalAttribute($xml, 'ServiceDescription', null), + SecurityTokenServiceEndpoint::getChildrenOfClass($xml), + SingleSignOutSubscriptionEndpoint::getChildrenOfClass($xml), + SingleSignOutNotificationEndpoint::getChildrenOfClass($xml), + PassiveRequestorEndpoint::getChildrenOfClass($xml), + ); + + if (!empty($signature)) { + $securityTokenServiceType->setSignature($signature[0]); + $securityTokenServiceType->setXML($xml); + } + + return $securityTokenServiceType; + } +}