ce99ce108cd5da2a1ed299585e0bc84f33f5b2f1
[shibboleth/cpp-opensaml.git] / saml / saml1 / binding / impl / SAML1POSTEncoder.cpp
1 /*
2  *  Copyright 2001-2006 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * SAML1POSTEncoder.cpp
19  * 
20  * SAML 1.x POST binding/profile message encoder
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "binding/HTTPResponse.h"
26 #include "saml1/binding/SAML1POSTEncoder.h"
27 #include "saml1/core/Protocols.h"
28
29 #include <fstream>
30 #include <sstream>
31 #include <log4cpp/Category.hh>
32 #include <xercesc/util/Base64.hpp>
33 #include <xmltooling/util/NDC.h>
34 #include <xmltooling/util/TemplateEngine.h>
35
36 using namespace opensaml::saml1p;
37 using namespace opensaml;
38 using namespace xmlsignature;
39 using namespace xmltooling;
40 using namespace log4cpp;
41 using namespace std;
42
43 namespace opensaml {
44     namespace saml1p {              
45         MessageEncoder* SAML_DLLLOCAL SAML1POSTEncoderFactory(const DOMElement* const & e)
46         {
47             return new SAML1POSTEncoder(e);
48         }
49     };
50 };
51
52 static const XMLCh templat[] = UNICODE_LITERAL_8(t,e,m,p,l,a,t,e);
53
54 SAML1POSTEncoder::SAML1POSTEncoder(const DOMElement* e)
55 {
56     if (e) {
57         auto_ptr_char t(e->getAttributeNS(NULL, templat));
58         if (t.get())
59             m_template = t.get();
60     }
61     if (m_template.empty())
62         throw XMLToolingException("SAML1POSTEncoder requires template attribute.");
63 }
64
65 SAML1POSTEncoder::~SAML1POSTEncoder() {}
66
67 long SAML1POSTEncoder::encode(
68     GenericResponse& genericResponse,
69     XMLObject* xmlObject,
70     const char* destination,
71     const char* recipientID,
72     const char* relayState,
73     const CredentialResolver* credResolver,
74     const XMLCh* sigAlgorithm
75     ) const
76 {
77 #ifdef _DEBUG
78     xmltooling::NDC ndc("encode");
79 #endif
80     Category& log = Category::getInstance(SAML_LOGCAT".MessageEncoder.SAML1POST");
81
82     log.debug("validating input");
83     HTTPResponse* httpResponse=dynamic_cast<HTTPResponse*>(&genericResponse);
84     if (!httpResponse)
85         throw BindingException("Unable to cast response interface to HTTPResponse type.");
86     if (xmlObject->getParent())
87         throw BindingException("Cannot encode XML content with parent.");
88     Response* response = dynamic_cast<Response*>(xmlObject);
89     if (!response)
90         throw BindingException("XML content for SAML 1.x POST Encoder must be a SAML 1.x <Response>.");
91     if (!relayState)
92         throw BindingException("SAML 1.x POST Encoder requires relay state (TARGET) value.");
93     
94     DOMElement* rootElement = NULL;
95     if (credResolver) {
96         // Signature based on native XML signing.
97         if (response->getSignature()) {
98             log.debug("response already signed, skipping signature operation");
99         }
100         else {
101             log.debug("signing and marshalling the response");
102
103             // Build a Signature.
104             Signature* sig = buildSignature(credResolver, sigAlgorithm);
105             response->setSignature(sig);
106     
107             // Sign response while marshalling.
108             vector<Signature*> sigs(1,sig);
109             rootElement = response->marshall((DOMDocument*)NULL,&sigs);
110         }
111     }
112     else {
113         log.debug("marshalling the response");
114         rootElement = response->marshall();
115     }
116     
117     string xmlbuf;
118     XMLHelper::serialize(rootElement, xmlbuf);
119     unsigned int len=0;
120     XMLByte* out=Base64::encode(reinterpret_cast<const XMLByte*>(xmlbuf.data()),xmlbuf.size(),&len);
121     if (out) {
122         xmlbuf.erase();
123         xmlbuf.append(reinterpret_cast<char*>(out),len);
124         XMLString::release(&out);
125     }
126     else {
127         throw BindingException("Base64 encoding of XML failed.");
128     }
129
130     // Push message into template and send result to client.
131     log.debug("message encoded, sending HTML form template to client");
132     TemplateEngine* engine = XMLToolingConfig::getConfig().getTemplateEngine();
133     if (!engine)
134         throw BindingException("Encoding response using POST requires a TemplateEngine instance.");
135     ifstream infile(m_template.c_str());
136     if (!infile)
137         throw BindingException("Failed to open HTML template for POST response ($1).", params(1,m_template.c_str()));
138     map<string,string> params;
139     params["action"] = destination;
140     params["SAMLResponse"] = xmlbuf;
141     params["TARGET"] = relayState;
142     stringstream s;
143     engine->run(infile, s, params);
144     httpResponse->setContentType("text/html");
145     long ret = httpResponse->sendResponse(s, HTTPResponse::SAML_HTTP_STATUS_OK);
146
147     // Cleanup by destroying XML.
148     delete xmlObject;
149     return ret;
150 }