Missed parameter to log validator exceptions.
[shibboleth/cpp-opensaml.git] / saml / saml2 / metadata / MetadataFilter.h
1 /*
2  *  Copyright 2001-2007 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  * @file saml/saml2/metadata/MetadataFilter.h
19  * 
20  * Processes metadata after it's been unmarshalled.
21  */
22
23 #include <saml/base.h>
24 #include <saml/exceptions.h>
25 #include <saml/saml2/metadata/MetadataProvider.h>
26
27 #include <xmltooling/XMLObject.h>
28
29 #ifndef __saml2_metadatafilt_h__
30 #define __saml2_metadatafilt_h__
31
32 namespace opensaml {
33
34     namespace saml2md {
35         
36         /**
37          * A metadata filter is used to process metadata after resolution and unmarshalling.
38          * 
39          * Some filters might remove everything but identity provider roles, decreasing the data a service provider
40          * needs to work with, or a filter could be used to perform integrity checking on the retrieved metadata by
41          * verifying a digital signature.
42          */
43         class SAML_API MetadataFilter
44         {
45             MAKE_NONCOPYABLE(MetadataFilter);
46         protected:
47             MetadataFilter() {}
48         public:
49             virtual ~MetadataFilter() {}
50             
51             /**
52              * Returns an identifying string for the filter.
53              * 
54              * @return the ID string
55              */
56             virtual const char* getId() const=0;
57             
58             /**
59              * Filters the given metadata. Exceptions should generally not be thrown to
60              * signal the removal of information, only for systemic processing failure.
61              * 
62              * @param xmlObject the metadata to be filtered.
63              */
64             virtual void doFilter(xmltooling::XMLObject& xmlObject) const=0;
65         };
66
67         /**
68          * Registers MetadataFilter classes into the runtime.
69          */
70         void SAML_API registerMetadataFilters();
71         
72         /** MetadataFilter that deletes blacklisted entities. */
73         #define BLACKLIST_METADATA_FILTER  "Blacklist"
74
75         /** MetadataFilter that deletes all but whitelisted entities. */
76         #define WHITELIST_METADATA_FILTER  "Whitelist"
77
78         /** MetadataFilter that verifies signatures and filters out any that don't pass. */
79         #define SIGNATURE_METADATA_FILTER  "Signature"
80
81         /** MetadataFilter that enforces expiration requirements. */
82         #define REQUIREVALIDUNTIL_METADATA_FILTER  "RequireValidUntil"
83         
84         DECL_XMLTOOLING_EXCEPTION(MetadataFilterException,SAML_EXCEPTIONAPI(SAML_API),opensaml::saml2md,MetadataException,Exceptions related to metadata filtering);
85     };
86 };
87
88 #endif /* __saml2_metadatafilt_h__ */