elementName = $elementName; if ($xml === NULL) { return; } if ($xml->hasAttribute('ID')) { $this->ID = $xml->getAttribute('ID'); } if ($xml->hasAttribute('validUntil')) { $this->validUntil = SimpleSAML_Utilities::parseSAML2Time($xml->getAttribute('validUntil')); } if ($xml->hasAttribute('cacheDuration')) { $this->cacheDuration = $xml->getAttribute('cacheDuration'); } if (!$xml->hasAttribute('protocolSupportEnumeration')) { throw new Exception('Missing protocolSupportEnumeration attribute on ' . $xml->localName); } $this->protocolSupportEnumeration = preg_split('/[\s]+/', $xml->getAttribute('protocolSupportEnumeration')); if ($xml->hasAttribute('errorURL')) { $this->errorURL = $xml->getAttribute('errorURL'); } $this->Extensions = SAML2_XML_md_Extensions::getList($xml); foreach (SAML2_Utils::xpQuery($xml, './saml_metadata:KeyDescriptor') as $kd) { $this->KeyDescriptor[] = new SAML2_XML_md_KeyDescriptor($kd); } $organization = SAML2_Utils::xpQuery($xml, './saml_metadata:Organization'); if (count($organization) > 1) { throw new Exception('More than one Organization in the entity.'); } elseif (!empty($organization)) { $this->Organization = new SAML2_XML_md_Organization($organization[0]); } foreach (SAML2_Utils::xpQuery($xml, './saml_metadata:ContactPerson') as $cp) { $this->contactPersons[] = new SAML2_XML_md_ContactPerson($cp); } } /** * Add this RoleDescriptor to an EntityDescriptor. * * @param DOMElement $parent The EntityDescriptor we should append this endpoint to. * @param string $name The name of the element we should create. */ protected function toXML(DOMElement $parent) { assert('is_null($this->ID) || is_string($this->ID)'); assert('is_null($this->validUntil) || is_int($this->validUntil)'); assert('is_null($this->cacheDuration) || is_string($this->cacheDuration)'); assert('is_array($this->protocolSupportEnumeration)'); assert('is_null($this->errorURL) || is_string($this->errorURL)'); assert('is_array($this->Extensions)'); assert('is_array($this->KeyDescriptor)'); assert('is_null($this->Organization) || $this->Organization instanceof SAML2_XML_md_Organization'); assert('is_array($this->ContactPerson)'); $e = $parent->ownerDocument->createElementNS(SAML2_Const::NS_MD, $this->elementName); $parent->appendChild($e); if (isset($this->ID)) { $e->setAttribute('ID', $this->ID); } if (isset($this->validUntil)) { $e->setAttribute('validUntil', gmdate('Y-m-d\TH:i:s\Z', $this->validUntil)); } if (isset($this->cacheDuration)) { $e->setAttribute('cacheDuration', $this->cacheDuration); } $e->setAttribute('protocolSupportEnumeration', implode(' ', $this->protocolSupportEnumeration)); if (isset($this->errorURL)) { $e->setAttribute('errorURL', $this->errorURL); } SAML2_XML_md_Extensions::addList($e, $this->Extensions); foreach ($this->KeyDescriptor as $kd) { $kd->toXML($e); } if (isset($this->Organization)) { $this->Organization->toXML($e); } foreach ($this->ContactPerson as $cp) { $cp->toXML($e); } return $e; } }