Change license header.
[shibboleth/cpp-sp.git] / shibsp / attribute / StringAttributeDecoder.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  * StringAttributeDecoder.cpp
23  *
24  * Decodes SAML into SimpleAttributes.
25  */
26
27 #include "internal.h"
28 #include "attribute/AttributeDecoder.h"
29 #include "attribute/SimpleAttribute.h"
30
31 #include <saml/saml1/core/Assertions.h>
32 #include <saml/saml2/core/Assertions.h>
33
34 using namespace shibsp;
35 using namespace opensaml::saml1;
36 using namespace opensaml::saml2;
37 using namespace xmltooling;
38 using namespace std;
39
40 namespace shibsp {
41     class SHIBSP_DLLLOCAL StringAttributeDecoder : virtual public AttributeDecoder
42     {
43     public:
44         StringAttributeDecoder(const DOMElement* e) : AttributeDecoder(e) {}
45         ~StringAttributeDecoder() {}
46
47         shibsp::Attribute* decode(
48             const vector<string>& ids, const XMLObject* xmlObject, const char* assertingParty=nullptr, const char* relyingParty=nullptr
49             ) const;
50     };
51
52     AttributeDecoder* SHIBSP_DLLLOCAL StringAttributeDecoderFactory(const DOMElement* const & e)
53     {
54         return new StringAttributeDecoder(e);
55     }
56 };
57
58 shibsp::Attribute* StringAttributeDecoder::decode(
59     const vector<string>& ids, const XMLObject* xmlObject, const char* assertingParty, const char* relyingParty
60     ) const
61 {
62     char* val;
63     auto_ptr<SimpleAttribute> simple(new SimpleAttribute(ids));
64     vector<string>& dest = simple->getValues();
65     vector<XMLObject*>::const_iterator v,stop;
66
67     Category& log = Category::getInstance(SHIBSP_LOGCAT".AttributeDecoder.String");
68
69     if (xmlObject && XMLString::equals(opensaml::saml1::Attribute::LOCAL_NAME,xmlObject->getElementQName().getLocalPart())) {
70         const opensaml::saml2::Attribute* saml2attr = dynamic_cast<const opensaml::saml2::Attribute*>(xmlObject);
71         if (saml2attr) {
72             const vector<XMLObject*>& values = saml2attr->getAttributeValues();
73             v = values.begin();
74             stop = values.end();
75             if (log.isDebugEnabled()) {
76                 auto_ptr_char n(saml2attr->getName());
77                 log.debug(
78                     "decoding SimpleAttribute (%s) from SAML 2 Attribute (%s) with %lu value(s)",
79                     ids.front().c_str(), n.get() ? n.get() : "unnamed", values.size()
80                     );
81             }
82         }
83         else {
84             const opensaml::saml1::Attribute* saml1attr = dynamic_cast<const opensaml::saml1::Attribute*>(xmlObject);
85             if (saml1attr) {
86                 const vector<XMLObject*>& values = saml1attr->getAttributeValues();
87                 v = values.begin();
88                 stop = values.end();
89                 if (log.isDebugEnabled()) {
90                     auto_ptr_char n(saml1attr->getAttributeName());
91                 log.debug(
92                     "decoding SimpleAttribute (%s) from SAML 1 Attribute (%s) with %lu value(s)",
93                     ids.front().c_str(), n.get() ? n.get() : "unnamed", values.size()
94                     );
95                 }
96             }
97             else {
98                 log.warn("XMLObject type not recognized by StringAttributeDecoder, no values returned");
99                 return nullptr;
100             }
101         }
102
103         for (; v!=stop; ++v) {
104             if (!(*v)->hasChildren()) {
105                 val = toUTF8((*v)->getTextContent());
106                 if (val && *val)
107                     dest.push_back(val);
108                 else
109                     log.warn("skipping empty AttributeValue");
110                 delete[] val;
111             }
112             else {
113                 log.warn("skipping complex AttributeValue");
114             }
115         }
116
117         return dest.empty() ? nullptr : _decode(simple.release());
118     }
119
120     const NameID* saml2name = dynamic_cast<const NameID*>(xmlObject);
121     if (saml2name) {
122         if (log.isDebugEnabled()) {
123             auto_ptr_char f(saml2name->getFormat());
124             log.debug("decoding SimpleAttribute (%s) from SAML 2 NameID with Format (%s)", ids.front().c_str(), f.get() ? f.get() : "unspecified");
125         }
126         val = toUTF8(saml2name->getName());
127     }
128     else {
129         const NameIdentifier* saml1name = dynamic_cast<const NameIdentifier*>(xmlObject);
130         if (saml1name) {
131             if (log.isDebugEnabled()) {
132                 auto_ptr_char f(saml1name->getFormat());
133                 log.debug(
134                     "decoding SimpleAttribute (%s) from SAML 1 NameIdentifier with Format (%s)",
135                     ids.front().c_str(), f.get() ? f.get() : "unspecified"
136                     );
137             }
138             val = toUTF8(saml1name->getName());
139         }
140         else {
141             log.warn("XMLObject type not recognized by StringAttributeDecoder, no values returned");
142             return nullptr;
143         }
144     }
145
146     if (val && *val)
147         dest.push_back(val);
148     else
149         log.warn("ignoring empty NameID");
150     delete[] val;
151     return dest.empty() ? nullptr : _decode(simple.release());
152 }