Basic assertion validator.
[shibboleth/cpp-opensaml.git] / saml / saml1 / profile / AssertionValidator.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/saml1/profile/AssertionValidator.h
19  * 
20  * SAML 1.x basic assertion validator
21  */
22
23 #ifndef __saml1_assval_h__
24 #define __saml1_assval_h__
25
26 #include <saml/base.h>
27 #include <xmltooling/validation/Validator.h>
28
29 namespace opensaml {
30     namespace saml1 {
31         
32         class SAML_API Assertion;
33         class SAML_API Condition;
34         
35         /**
36          * SAML 1.x basic assertion validator provides time and audience condition checking.
37          */
38         class SAML_API AssertionValidator : public virtual xmltooling::Validator
39         {
40         public:
41             /**
42              * Constructor
43              * 
44              * @param audiences set of audience values representing recipient
45              * @param ts        timestamp to evaluate assertion conditions, or 0 to bypass check
46              */
47             AssertionValidator(const std::vector<const XMLCh*>& audiences, time_t ts=0) : m_ts(ts), m_audiences(audiences) {}
48             virtual ~AssertionValidator() {}
49     
50             void validate(const xmltooling::XMLObject* xmlObject) const;
51
52             /**
53              * Type-safe validation method.
54              * 
55              * @param assertion assertion to validate
56              */
57             virtual void validateAssertion(const Assertion& assertion) const;
58
59             /**
60              * Condition validation.
61              *
62              * <p>Base class version only understands AudienceRestrictionConditions.
63              * 
64              * @param condition condition to validate
65              * @return true iff condition was understood
66              */
67             virtual bool validateCondition(const Condition* condition) const;
68
69         private:
70             time_t m_ts;
71             const std::vector<const XMLCh*>& m_audiences;
72         };
73         
74     };
75 };
76
77 #endif /* __saml1_assval_h__ */