X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=saml%2Fsaml1%2Fbinding%2Fimpl%2FSAML1POSTDecoder.cpp;h=ef39d628967da4e92ed8c0a84a074854a033920f;hb=1c199e2d851bf77015ce0b1d80ac2cc6ef60cda3;hp=1c7e5390c5c11e221b56337d378c4c64dbd0f871;hpb=3e40c0e62375c069e7860a87ca4f65fb2003f018;p=shibboleth%2Fcpp-opensaml.git diff --git a/saml/saml1/binding/impl/SAML1POSTDecoder.cpp b/saml/saml1/binding/impl/SAML1POSTDecoder.cpp index 1c7e539..ef39d62 100644 --- a/saml/saml1/binding/impl/SAML1POSTDecoder.cpp +++ b/saml/saml1/binding/impl/SAML1POSTDecoder.cpp @@ -1,5 +1,5 @@ /* - * Copyright 2001-2006 Internet2 + * Copyright 2001-2007 Internet2 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,14 +22,15 @@ #include "internal.h" #include "exceptions.h" -#include "binding/HTTPRequest.h" +#include "binding/MessageDecoder.h" #include "saml1/core/Assertions.h" -#include "saml1/binding/SAML1POSTDecoder.h" +#include "saml1/core/Protocols.h" #include "saml2/metadata/Metadata.h" #include "saml2/metadata/MetadataProvider.h" #include #include +#include #include #include @@ -43,6 +44,19 @@ using namespace std; namespace opensaml { namespace saml1p { + class SAML_DLLLOCAL SAML1POSTDecoder : public MessageDecoder + { + public: + SAML1POSTDecoder(const DOMElement* e) {} + virtual ~SAML1POSTDecoder() {} + + xmltooling::XMLObject* decode( + std::string& relayState, + const GenericRequest& genericRequest, + SecurityPolicy& policy + ) const; + }; + MessageDecoder* SAML_DLLLOCAL SAML1POSTDecoderFactory(const DOMElement* const & e) { return new SAML1POSTDecoder(e); @@ -50,8 +64,6 @@ namespace opensaml { }; }; -SAML1POSTDecoder::SAML1POSTDecoder(const DOMElement* e) {} - XMLObject* SAML1POSTDecoder::decode( string& relayState, const GenericRequest& genericRequest, @@ -65,16 +77,14 @@ XMLObject* SAML1POSTDecoder::decode( log.debug("validating input"); const HTTPRequest* httpRequest=dynamic_cast(&genericRequest); - if (!httpRequest) { - log.error("unable to cast request to HTTPRequest type"); - return NULL; - } + if (!httpRequest) + throw BindingException("Unable to cast request object to HTTPRequest type."); if (strcmp(httpRequest->getMethod(),"POST")) - return NULL; + throw BindingException("Invalid HTTP method ($1).", params(1, httpRequest->getMethod())); const char* samlResponse = httpRequest->getParameter("SAMLResponse"); const char* TARGET = httpRequest->getParameter("TARGET"); if (!samlResponse || !TARGET) - return NULL; + throw BindingException("Request missing SAMLResponse or TARGET parameters."); relayState = TARGET; // Decode the base64 into SAML. @@ -87,7 +97,7 @@ XMLObject* SAML1POSTDecoder::decode( XMLString::release(&decoded); // Parse and bind the document into an XMLObject. - DOMDocument* doc = (m_validate ? XMLToolingConfig::getConfig().getValidatingParser() + DOMDocument* doc = (policy.getValidating() ? XMLToolingConfig::getConfig().getValidatingParser() : XMLToolingConfig::getConfig().getParser()).parse(is); XercesJanitor janitor(doc); auto_ptr xmlObject(XMLObjectBuilder::buildOneFromElement(doc->getDocumentElement(), true)); @@ -97,8 +107,11 @@ XMLObject* SAML1POSTDecoder::decode( if (!response) throw BindingException("Decoded message was not a SAML 1.x Response."); - if (!m_validate) + if (!policy.getValidating()) SchemaValidators.validate(xmlObject.get()); + + // Run through the policy. + policy.evaluate(*response, &genericRequest); // Check recipient URL. auto_ptr_char recipient(response->getRecipient()); @@ -112,8 +125,5 @@ XMLObject* SAML1POSTDecoder::decode( throw BindingException("SAML message delivered with POST to incorrect server URL."); } - // Run through the policy. - policy.evaluate(*response, &genericRequest); - return xmlObject.release(); }