2e143b9ac436a2349d469842ce5c1cc54c519415
[shibboleth/sp.git] / shibsp / attribute / resolver / AttributeResolver.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 shibsp/attribute/resolver/AttributeResolver.h
19  * 
20  * A service that transforms or resolves additional attributes for a particular subject.
21  */
22
23 #ifndef __shibsp_resolver_h__
24 #define __shibsp_resolver_h__
25
26 #include <shibsp/base.h>
27
28 #include <saml/Assertion.h>
29 #include <saml/saml2/metadata/Metadata.h>
30 #include <xmltooling/Lockable.h>
31
32 namespace shibsp {
33
34     class SHIBSP_API Application;
35     class SHIBSP_API Attribute;
36     class SHIBSP_API Session;
37     class SHIBSP_API ResolutionContext;
38
39 #if defined (_MSC_VER)
40     #pragma warning( push )
41     #pragma warning( disable : 4250 4251 )
42 #endif
43
44     /**
45      * The service that resolves the attributes for a particular subject.
46      */
47     class SHIBSP_API AttributeResolver : public virtual xmltooling::Lockable
48     {
49         MAKE_NONCOPYABLE(AttributeResolver);
50     protected:
51         AttributeResolver() {}
52     public:
53         virtual ~AttributeResolver() {}
54
55         /**
56          * Creates a ResolutionContext based on session bootstrap material.
57          * 
58          * <p>This enables resolution to occur ahead of session creation so that
59          * Attributes can be supplied while creating the session.
60          * 
61          * @param application       reference to Application that owns the eventual Session
62          * @param issuer            issuing metadata of assertion issuer, if known
63          * @param nameid            principal identifier, normalized to SAML 2, if any
64          * @param authncontext_class    method/category of authentication event, if known
65          * @param authncontext_decl specifics of authentication event, if known
66          * @param tokens            assertions initiating the session, if any
67          * @param attributes        map of previously resolved attributes, if any
68          * @return  newly created ResolutionContext, owned by caller
69          */
70         virtual ResolutionContext* createResolutionContext(
71             const Application& application,
72             const opensaml::saml2md::EntityDescriptor* issuer,
73             const opensaml::saml2::NameID* nameid,
74             const char* authncontext_class=NULL,
75             const char* authncontext_decl=NULL,
76             const std::vector<const opensaml::Assertion*>* tokens=NULL,
77             const std::multimap<std::string,Attribute*>* attributes=NULL
78             ) const=0;
79
80         /**
81          * Creates a ResolutionContext for an existing Session.
82          * 
83          * @param application   reference to Application that owns the Session
84          * @param session       reference to Session
85          * @return  newly created ResolutionContext, owned by caller
86          */
87         virtual ResolutionContext* createResolutionContext(const Application& application, const Session& session) const=0;
88         
89
90         /**
91          * Resolves attributes for a given subject and returns them in the supplied context.
92          * 
93          * @param ctx           resolution context to use to resolve attributes
94          * 
95          * @throws AttributeResolutionException thrown if there is a problem resolving the attributes for the subject
96          */
97         virtual void resolveAttributes(ResolutionContext& ctx) const=0;
98     };
99
100 #if defined (_MSC_VER)
101     #pragma warning( pop )
102 #endif
103
104     /**
105      * Registers AttributeResolver classes into the runtime.
106      */
107     void SHIBSP_API registerAttributeResolvers();
108
109     /** AttributeResolver based on SAML queries to an IdP during SSO. */
110     #define QUERY_ATTRIBUTE_RESOLVER "Query"
111
112     /** AttributeResolver based on chaining together other resolvers. */
113     #define CHAINING_ATTRIBUTE_RESOLVER "Chaining"
114 };
115
116 #endif /* __shibsp_resolver_h__ */