From c2d3df7c5c6b9e4d672bef8535df835e1e70041c Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Thu, 5 Nov 2009 11:27:23 +0000 Subject: [PATCH] SAMLBuilder: Support for adding AttributeAuthorityDescriptor. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1961 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/Metadata/SAMLBuilder.php | 34 +++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/lib/SimpleSAML/Metadata/SAMLBuilder.php b/lib/SimpleSAML/Metadata/SAMLBuilder.php index 1c93c61a2..3944c43d8 100644 --- a/lib/SimpleSAML/Metadata/SAMLBuilder.php +++ b/lib/SimpleSAML/Metadata/SAMLBuilder.php @@ -283,6 +283,9 @@ class SimpleSAML_Metadata_SAMLBuilder { case 'shib13-idp-remote': $this->addMetadataIdP11($metadata); break; + case 'attributeauthority-remote': + $this->addAttributeAuthority($metadata); + break; default: SimpleSAML_Logger::warning('Unable to generate metadata for unknown type \'' . $set . '\'.'); } @@ -488,6 +491,37 @@ class SimpleSAML_Metadata_SAMLBuilder { } + /** + * Add a AttributeAuthorityDescriptor. + * + * @param array $metadata The AttributeAuthorityDescriptor, in the format returned by SAMLParser. + */ + public function addAttributeAuthority(array $metadata) { + assert('is_array($metadata)'); + assert('isset($metadata["entityid"])'); + assert('isset($metadata["metadata-set"])'); + + $metadata = SimpleSAML_Configuration::loadFromArray($metadata, $metadata['entityid']); + + $e = $this->createElement('AttributeAuthorityDescriptor'); + $e->setAttribute('protocolSupportEnumeration', implode(' ', $metadata->getArray('protocols', array()))); + + $this->addExtensions($metadata, $e); + $this->addCertificate($e, $metadata); + + $this->addEndpoints($e, 'AttributeService', $metadata->getEndpoints('AttributeService')); + $this->addEndpoints($e, 'AssertionIDRequestService', $metadata->getEndpoints('AssertionIDRequestService')); + + foreach ($metadata->getArray('NameIDFormat', array()) as $format) { + $t = $this->createElement('NameIDFormat'); + $t->appendChild($this->document->createTextNode($format)); + $e->appendChild($t); + } + + $this->entityDescriptor->appendChild($e); + } + + /** * Add contact information. * -- GitLab