67512aae55b403e231f6b2f15373ffd9b13b4da0
[shibboleth/sp.git] / shibsp / handler / impl / ChainingLogoutInitiator.cpp
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 /**
22  * ChainingLogoutInitiator.cpp
23  * 
24  * Chains together multiple LogoutInitiator handlers in sequence.
25  */
26
27 #include "internal.h"
28 #include "exceptions.h"
29 #include "handler/AbstractHandler.h"
30 #include "handler/LogoutInitiator.h"
31 #include "util/SPConstants.h"
32
33 #include <xercesc/util/XMLUniDefs.hpp>
34 #include <xmltooling/util/XMLHelper.h>
35
36 using namespace shibsp;
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 ChainingLogoutInitiator : public AbstractHandler, public LogoutInitiator
48     {
49     public:
50         ChainingLogoutInitiator(const DOMElement* e, const char* appId);
51         virtual ~ChainingLogoutInitiator() {
52             for_each(m_handlers.begin(), m_handlers.end(), xmltooling::cleanup<Handler>());
53         }
54         
55         pair<bool,long> run(SPRequest& request, bool isHandler=true) const;
56
57 #ifndef SHIBSP_LITE
58         void generateMetadata(opensaml::saml2md::SPSSODescriptor& role, const char* handlerURL) const {
59             for (vector<Handler*>::const_iterator i = m_handlers.begin(); i!=m_handlers.end(); ++i)
60                 (*i)->generateMetadata(role, handlerURL);
61         }
62 #endif
63
64     private:
65         vector<Handler*> m_handlers;
66     };
67
68 #if defined (_MSC_VER)
69     #pragma warning( pop )
70 #endif
71
72     static const XMLCh _LogoutInitiator[] =     UNICODE_LITERAL_15(L,o,g,o,u,t,I,n,i,t,i,a,t,o,r);
73     static const XMLCh _type[] =                UNICODE_LITERAL_4(t,y,p,e);
74
75     class SHIBSP_DLLLOCAL LogoutInitiatorNodeFilter : public DOMNodeFilter
76     {
77     public:
78 #ifdef SHIBSP_XERCESC_SHORT_ACCEPTNODE
79         short
80 #else
81         FilterAction
82 #endif
83         acceptNode(const DOMNode* node) const {
84             if (XMLHelper::isNodeNamed(node,shibspconstants::SHIB2SPCONFIG_NS,_LogoutInitiator))
85                 return FILTER_REJECT;
86             return FILTER_ACCEPT;
87         }
88     };
89
90     static SHIBSP_DLLLOCAL LogoutInitiatorNodeFilter g_LINFilter;
91
92     Handler* SHIBSP_DLLLOCAL ChainingLogoutInitiatorFactory(const pair<const DOMElement*,const char*>& p)
93     {
94         return new ChainingLogoutInitiator(p.first, p.second);
95     }
96 };
97
98 ChainingLogoutInitiator::ChainingLogoutInitiator(const DOMElement* e, const char* appId)
99     : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".LogoutInitiator.Chaining"), &g_LINFilter)
100 {
101     SPConfig& conf = SPConfig::getConfig();
102
103     // Load up the chain of handlers.
104     e = XMLHelper::getFirstChildElement(e, _LogoutInitiator);
105     while (e) {
106         string t(XMLHelper::getAttrString(e, nullptr, _type));
107         if (!t.empty()) {
108             try {
109                 m_handlers.push_back(conf.LogoutInitiatorManager.newPlugin(t.c_str(), make_pair(e, appId)));
110                 m_handlers.back()->setParent(this);
111             }
112             catch (exception& ex) {
113                 m_log.error("caught exception processing embedded LogoutInitiator element: %s", ex.what());
114             }
115         }
116         e = XMLHelper::getNextSiblingElement(e, _LogoutInitiator);
117     }
118 }
119
120 pair<bool,long> ChainingLogoutInitiator::run(SPRequest& request, bool isHandler) const
121 {
122     // Defer to base class first.
123     pair<bool,long> ret = LogoutHandler::run(request, isHandler);
124     if (ret.first)
125         return ret;
126
127     for (vector<Handler*>::const_iterator i = m_handlers.begin(); i!=m_handlers.end(); ++i) {
128         ret = (*i)->run(request, isHandler);
129         if (ret.first)
130             return ret;
131     }
132     throw ConfigurationException("None of the configured LogoutInitiators handled the request.");
133 }