Change license header.
[shibboleth/sp.git] / shibsp / attribute / filtering / impl / AttributeRequesterInEntityGroupFunctor.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  * AttributeRequesterInEntityGroupFunctor.cpp
23  * 
24  * A match function that evaluates to true if the attribute requester is found in metadata and is a member
25  * of the given entity group.
26  */
27
28 #include "internal.h"
29 #include "exceptions.h"
30 #include "attribute/filtering/FilteringContext.h"
31 #include "attribute/filtering/FilterPolicyContext.h"
32 #include "attribute/filtering/MatchFunctor.h"
33
34 #include <saml/saml2/metadata/Metadata.h>
35
36 using namespace opensaml::saml2md;
37
38 namespace shibsp {
39
40     static const XMLCh groupID[] = UNICODE_LITERAL_7(g,r,o,u,p,I,D);
41
42     /**
43      * A match function that evaluates to true if the attribute requester is found in metadata and is a member
44      * of the given entity group.
45      */
46     class SHIBSP_DLLLOCAL AttributeRequesterInEntityGroupFunctor : public MatchFunctor
47     {
48         const XMLCh* m_group;
49     public:
50         AttributeRequesterInEntityGroupFunctor(const DOMElement* e) {
51             m_group = e ? e->getAttributeNS(nullptr,groupID) : nullptr;
52             if (!m_group || !*m_group)
53                 throw ConfigurationException("AttributeRequesterInEntityGroup MatchFunctor requires non-empty groupID attribute.");
54         }
55
56         bool evaluatePolicyRequirement(const FilteringContext& filterContext) const {
57             const RoleDescriptor* req = filterContext.getAttributeRequesterMetadata();
58             if (!req)
59                 return false;
60             const EntitiesDescriptor* group = dynamic_cast<const EntitiesDescriptor*>(req->getParent()->getParent());
61             while (group) {
62                 if (XMLString::equals(group->getName(), m_group))
63                     return true;
64                 group = dynamic_cast<const EntitiesDescriptor*>(group->getParent());
65             }
66             return false;
67         }
68
69         bool evaluatePermitValue(const FilteringContext& filterContext, const Attribute& attribute, size_t index) const {
70             return evaluatePolicyRequirement(filterContext);
71         }
72     };
73
74     MatchFunctor* SHIBSP_DLLLOCAL AttributeRequesterInEntityGroupFactory(const std::pair<const FilterPolicyContext*,const DOMElement*>& p)
75     {
76         return new AttributeRequesterInEntityGroupFunctor(p.second);
77     }
78
79 };