VS10 solution files, convert from NULL macro to nullptr.
[shibboleth/sp.git] / shibsp / attribute / filtering / impl / AttributeValueStringFunctor.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  * AttributeValueStringFunctor.cpp
19  * 
20  * A match function that matches the value of an attribute against the
21  * specified value.
22  */
23
24 #include "internal.h"
25 #include "exceptions.h"
26 #include "attribute/Attribute.h"
27 #include "attribute/filtering/FilteringContext.h"
28 #include "attribute/filtering/FilterPolicyContext.h"
29 #include "attribute/filtering/MatchFunctor.h"
30
31 using namespace shibsp;
32 using namespace std;
33
34 namespace shibsp {
35
36     static const XMLCh attributeID[] =  UNICODE_LITERAL_11(a,t,t,r,i,b,u,t,e,I,D);
37     static const XMLCh value[] =        UNICODE_LITERAL_5(v,a,l,u,e);
38     static const XMLCh ignoreCase[] =   UNICODE_LITERAL_10(i,g,n,o,r,e,C,a,s,e);
39
40     /**
41      * A match function that matches the value of an attribute against the specified value.
42      */
43     class SHIBSP_DLLLOCAL AttributeValueStringFunctor : public MatchFunctor
44     {
45         xmltooling::auto_ptr_char m_attributeID;
46         char* m_value;
47
48         bool hasValue(const FilteringContext& filterContext) const;
49         bool matches(const Attribute& attribute, size_t index) const;
50
51     public:
52         AttributeValueStringFunctor(const DOMElement* e)
53             : m_value(e ? xmltooling::toUTF8(e->getAttributeNS(nullptr,value)) : nullptr), m_attributeID(e ? e->getAttributeNS(nullptr,attributeID) : nullptr) {
54             if (!m_value || !*m_value) {
55                 delete[] m_value;
56                 throw ConfigurationException("AttributeValueString MatchFunctor requires non-empty value attribute.");
57             }
58             if (e && e->hasAttributeNS(nullptr,ignoreCase)) {
59                 xmltooling::logging::Category::getInstance(SHIBSP_LOGCAT".AttributeFilter").warn(
60                     "ignoreCase property ignored by AttributeValueString MatchFunctor in favor of attribute's caseSensitive property"
61                     );
62             }
63         }
64
65         virtual ~AttributeValueStringFunctor() {
66             delete[] m_value;
67         }
68
69         bool evaluatePolicyRequirement(const FilteringContext& filterContext) const {
70             if (!m_attributeID.get() || !*m_attributeID.get())
71                 throw AttributeFilteringException("No attributeID specified.");
72             return hasValue(filterContext);
73         }
74
75         bool evaluatePermitValue(const FilteringContext& filterContext, const Attribute& attribute, size_t index) const {
76             if (!m_attributeID.get() || !*m_attributeID.get() || XMLString::equals(m_attributeID.get(), attribute.getId()))
77                 return matches(attribute, index);
78             return hasValue(filterContext);
79         }
80     };
81
82     MatchFunctor* SHIBSP_DLLLOCAL AttributeValueStringFactory(const std::pair<const FilterPolicyContext*,const DOMElement*>& p)
83     {
84         return new AttributeValueStringFunctor(p.second);
85     }
86
87 };
88
89 bool AttributeValueStringFunctor::hasValue(const FilteringContext& filterContext) const
90 {
91     size_t count;
92     pair<multimap<string,Attribute*>::const_iterator,multimap<string,Attribute*>::const_iterator> attrs =
93         filterContext.getAttributes().equal_range(m_attributeID.get());
94     for (; attrs.first != attrs.second; ++attrs.first) {
95         count = attrs.first->second->valueCount();
96         for (size_t index = 0; index < count; ++index) {
97             if (matches(*(attrs.first->second), index))
98                 return true;
99         }
100     }
101     return false;
102 }
103
104 bool AttributeValueStringFunctor::matches(const Attribute& attribute, size_t index) const
105 {
106     const char* val = attribute.getString(index);
107     if (!val)
108         return false;
109     if (attribute.isCaseSensitive())
110         return !strcmp(m_value, val);
111
112 #ifdef HAVE_STRCASECMP
113     return !strcasecmp(m_value, val);
114 #else
115     return !stricmp(m_value, val);
116 #endif
117 }