f419280edd0a85d99fdbc0bb40cc55fa93e71b1d
[shibboleth/cpp-sp.git] / shibsp / handler / impl / FormSessionInitiator.cpp
1 /*
2  *  Copyright 2001-2010 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  * FormSessionInitiator.cpp
19  * 
20  * HTML form-based IdP discovery.
21  */
22
23 #include "internal.h"
24 #include "Application.h"
25 #include "exceptions.h"
26 #include "handler/AbstractHandler.h"
27 #include "handler/SessionInitiator.h"
28 #include "util/TemplateParameters.h"
29
30 #include <fstream>
31 #include <xmltooling/XMLToolingConfig.h>
32 #include <xmltooling/util/PathResolver.h>
33 #include <xmltooling/util/URLEncoder.h>
34
35 using namespace shibsp;
36 using namespace opensaml;
37 using namespace xmltooling;
38 using namespace std;
39
40 namespace shibsp {
41
42 #if defined (_MSC_VER)
43     #pragma warning( push )
44     #pragma warning( disable : 4250 )
45 #endif
46
47     class SHIBSP_DLLLOCAL FormSessionInitiator : public SessionInitiator, public AbstractHandler
48     {
49     public:
50         FormSessionInitiator(const DOMElement* e, const char* appId)
51             : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".SessionInitiator.Form")), m_template(getString("template").second) {
52             if (!m_template)
53                 throw ConfigurationException("Form SessionInitiator requires a template property.");
54         }
55         virtual ~FormSessionInitiator() {}
56         
57         pair<bool,long> run(SPRequest& request, string& entityID, bool isHandler=true) const;
58
59     private:
60         const char* m_template;
61     };
62
63 #if defined (_MSC_VER)
64     #pragma warning( pop )
65 #endif
66
67     SessionInitiator* SHIBSP_DLLLOCAL FormSessionInitiatorFactory(const pair<const DOMElement*,const char*>& p)
68     {
69         return new FormSessionInitiator(p.first, p.second);
70     }
71
72 };
73
74 pair<bool,long> FormSessionInitiator::run(SPRequest& request, string& entityID, bool isHandler) const
75 {
76     if (!checkCompatibility(request, isHandler))
77         return make_pair(false,0L);
78
79     string target;
80     const char* option;
81     const Application& app=request.getApplication();
82
83     if (isHandler) {
84         option = request.getParameter("target");
85         if (option)
86             target = option;
87         recoverRelayState(app, request, request, target, false);
88     }
89     else {
90         // We're running as a "virtual handler" from within the filter.
91         // The target resource is the current one.
92         target=request.getRequestURL();
93     }
94
95     // Compute the return URL. We start with a self-referential link.
96     string returnURL=request.getHandlerURL(target.c_str());
97     pair<bool,const char*> thisloc = getString("Location");
98     if (thisloc.first) returnURL += thisloc.second;
99
100     if (isHandler) {
101         // We may already have RelayState set if we looped back here,
102         // but just in case target is a resource, we reset it back.
103         option = request.getParameter("target");
104         if (option)
105             target = option;
106     }
107     preserveRelayState(app, request, target);
108
109     request.setContentType("text/html");
110     request.setResponseHeader("Expires","01-Jan-1997 12:00:00 GMT");
111     request.setResponseHeader("Cache-Control","private,no-store,no-cache");
112     string fname(m_template);
113     ifstream infile(XMLToolingConfig::getConfig().getPathResolver()->resolve(fname, PathResolver::XMLTOOLING_CFG_FILE).c_str());
114     if (!infile)
115         throw ConfigurationException("Unable to access HTML template ($1).", params(1, m_template));
116     TemplateParameters tp;
117     tp.m_request = &request;
118     tp.setPropertySet(app.getPropertySet("Errors"));
119     tp.m_map["action"] = returnURL;
120     if (!target.empty())
121         tp.m_map["target"] = target;
122     stringstream str;
123     XMLToolingConfig::getConfig().getTemplateEngine()->run(infile, str, tp);
124     return make_pair(true,request.sendResponse(str));
125 }