' . '' . ''; foreach ($artifacts as $a) { $msg .= '' . htmlspecialchars($a) . ''; } $msg .= '' . '' . ''; return $msg; } /** * Extract the response element from the SOAP response. * * @param string $soapResponse The SOAP response. * @return string The element, as a string. * @throws \SimpleSAML_Error_Exception */ private static function extractResponse($soapResponse) { assert(is_string($soapResponse)); try { $doc = DOMDocumentFactory::fromString($soapResponse); } catch (\Exception $e) { throw new \SimpleSAML_Error_Exception('Error parsing SAML 1 artifact response.'); } $soapEnvelope = $doc->firstChild; if (!XML::isDOMNodeOfType($soapEnvelope, 'Envelope', 'http://schemas.xmlsoap.org/soap/envelope/')) { throw new \SimpleSAML_Error_Exception('Expected artifact response to contain a element.'); } $soapBody = XML::getDOMChildren($soapEnvelope, 'Body', 'http://schemas.xmlsoap.org/soap/envelope/'); if (count($soapBody) === 0) { throw new \SimpleSAML_Error_Exception('Couldn\'t find in .'); } $soapBody = $soapBody[0]; $responseElement = XML::getDOMChildren($soapBody, 'Response', 'urn:oasis:names:tc:SAML:1.0:protocol'); if (count($responseElement) === 0) { throw new \SimpleSAML_Error_Exception('Couldn\'t find in .'); } $responseElement = $responseElement[0]; /* * Save the element. Note that we need to import it * into a new document, in order to preserve namespace declarations. */ $newDoc = DOMDocumentFactory::create(); $newDoc->appendChild($newDoc->importNode($responseElement, true)); $responseXML = $newDoc->saveXML(); return $responseXML; } /** * This function receives a SAML 1.1 artifact. * * @param \SimpleSAML_Configuration $spMetadata The metadata of the SP. * @param \SimpleSAML_Configuration $idpMetadata The metadata of the IdP. * @return string The element, as an XML string. * @throws \SimpleSAML_Error_Exception */ public static function receive(\SimpleSAML_Configuration $spMetadata, \SimpleSAML_Configuration $idpMetadata) { $artifacts = self::getArtifacts(); $request = self::buildRequest($artifacts); XML::debugSAMLMessage($request, 'out'); $url = $idpMetadata->getDefaultEndpoint('ArtifactResolutionService', array('urn:oasis:names:tc:SAML:1.0:bindings:SOAP-binding')); $url = $url['Location']; $peerPublicKeys = $idpMetadata->getPublicKeys('signing', true); $certData = ''; foreach ($peerPublicKeys as $key) { if ($key['type'] !== 'X509Certificate') { continue; } $certData .= "-----BEGIN CERTIFICATE-----\n" . chunk_split($key['X509Certificate'], 64) . "-----END CERTIFICATE-----\n"; } $file = System::getTempDir() . DIRECTORY_SEPARATOR . sha1($certData) . '.crt'; if (!file_exists($file)) { System::writeFile($file, $certData); } $spKeyCertFile = Config::getCertPath($spMetadata->getString('privatekey')); $opts = array( 'ssl' => array( 'verify_peer' => true, 'cafile' => $file, 'local_cert' => $spKeyCertFile, 'capture_peer_cert' => true, 'capture_peer_chain' => true, ), 'http' => array( 'method' => 'POST', 'content' => $request, 'header' => 'SOAPAction: http://www.oasis-open.org/committees/security' . "\r\n" . 'Content-Type: text/xml', ), ); // Fetch the artifact $response = HTTP::fetch($url, $opts); /** @var string $response */ XML::debugSAMLMessage($response, 'in'); // Find the response in the SOAP message $response = self::extractResponse($response); return $response; } }