X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=shibsp%2Fattribute%2Ffiltering%2Fimpl%2FAttributeRequesterEntityAttributeFunctor.cpp;fp=shibsp%2Fattribute%2Ffiltering%2Fimpl%2FAttributeRequesterEntityAttributeFunctor.cpp;h=5677771febfdcfb859887f439e2a18eb38cf91fe;hb=3c1e801d6539b92d6d3d7fb40d661a7ce630ec44;hp=0000000000000000000000000000000000000000;hpb=f2621219507344852f967e4099e9c341499eb802;p=shibboleth%2Fsp.git diff --git a/shibsp/attribute/filtering/impl/AttributeRequesterEntityAttributeFunctor.cpp b/shibsp/attribute/filtering/impl/AttributeRequesterEntityAttributeFunctor.cpp new file mode 100644 index 0000000..5677771 --- /dev/null +++ b/shibsp/attribute/filtering/impl/AttributeRequesterEntityAttributeFunctor.cpp @@ -0,0 +1,78 @@ +/** + * Licensed to the University Corporation for Advanced Internet + * Development, Inc. (UCAID) under one or more contributor license + * agreements. See the NOTICE file distributed with this work for + * additional information regarding copyright ownership. + * + * UCAID licenses this file to you under the Apache License, + * Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the + * License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, + * either express or implied. See the License for the specific + * language governing permissions and limitations under the License. + */ + +/** + * AttributeRequesterEntityAttributeFunctor.cpp + * + * A match function that checks if the attribute requester contains an entity attribute with the + * specified value or regex. + */ + +#include "internal.h" +#include "exceptions.h" +#include "attribute/filtering/FilteringContext.h" +#include "attribute/filtering/FilterPolicyContext.h" +#include "attribute/filtering/MatchFunctor.h" + +#include +#include +#include + +using namespace opensaml::saml2md; +using opensaml::SAMLConfig; + +namespace shibsp { + + /** + * A match function that checks if the attribute requester contains an entity attribute with the + * specified value or regex. + */ + class SHIBSP_DLLLOCAL AttributeRequesterEntityAttributeFunctor : public MatchFunctor + { + boost::scoped_ptr m_matcher; + public: + AttributeRequesterEntityAttributeFunctor(const DOMElement* e) + : m_matcher(SAMLConfig::getConfig().EntityMatcherManager.newPlugin(ENTITYATTR_ENTITY_MATCHER, e)) { + } + + bool evaluatePolicyRequirement(const FilteringContext& filterContext) const { + if (filterContext.getAttributeRequesterMetadata()) { + const EntityDescriptor* entity = dynamic_cast(filterContext.getAttributeRequesterMetadata()->getParent()); + if (entity) + return m_matcher->matches(*entity); + } + return false; + } + + bool evaluatePermitValue(const FilteringContext& filterContext, const Attribute& attribute, size_t index) const { + return evaluatePolicyRequirement(filterContext); + } + }; + + MatchFunctor* SHIBSP_DLLLOCAL AttributeRequesterEntityAttributeExactMatchFactory(const std::pair& p) + { + return new AttributeRequesterEntityAttributeFunctor(p.second); + } + + MatchFunctor* SHIBSP_DLLLOCAL AttributeRequesterEntityAttributeRegexMatchFactory(const std::pair& p) + { + return new AttributeRequesterEntityAttributeFunctor(p.second); + } +};