Basic assertion validator.
[shibboleth/opensaml2.git] / saml / saml2 / profile / AssertionValidator.h
diff --git a/saml/saml2/profile/AssertionValidator.h b/saml/saml2/profile/AssertionValidator.h
new file mode 100644 (file)
index 0000000..0c03284
--- /dev/null
@@ -0,0 +1,77 @@
+/*
+ *  Copyright 2001-2007 Internet2
+ * 
+ * Licensed 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.
+ */
+
+/**
+ * @file saml/saml2/profile/AssertionValidator.h
+ * 
+ * SAML 2.0 basic assertion validator
+ */
+
+#ifndef __saml2_assval_h__
+#define __saml2_assval_h__
+
+#include <saml/base.h>
+#include <xmltooling/validation/Validator.h>
+
+namespace opensaml {
+    namespace saml2 {
+        
+        class SAML_API Assertion;
+        class SAML_API Condition;
+        
+        /**
+         * SAML 2.0 basic assertion validator provides time and audience condition checking.
+         */
+        class SAML_API AssertionValidator : public virtual xmltooling::Validator
+        {
+        public:
+            /**
+             * Constructor
+             * 
+             * @param audiences set of audience values representing recipient
+             * @param ts        timestamp to evaluate assertion conditions, or 0 to bypass check
+             */
+            AssertionValidator(const std::vector<const XMLCh*>& audiences, time_t ts=0) : m_ts(ts), m_audiences(audiences) {}
+            virtual ~AssertionValidator() {}
+    
+            void validate(const xmltooling::XMLObject* xmlObject) const;
+
+            /**
+             * Type-safe validation method.
+             * 
+             * @param assertion assertion to validate
+             */
+            virtual void validateAssertion(const Assertion& assertion) const;
+
+            /**
+             * Condition validation.
+             *
+             * <p>Base class version only understands AudienceRestrictionConditions.
+             * 
+             * @param condition condition to validate
+             * @return true iff condition was understood
+             */
+            virtual bool validateCondition(const Condition* condition) const;
+
+        private:
+            time_t m_ts;
+            const std::vector<const XMLCh*>& m_audiences;
+        };
+        
+    };
+};
+
+#endif /* __saml2_assval_h__ */