A "simple" attribute resolver, and token validation.
[shibboleth/sp.git] / shibsp / Application.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/Application.h
19  * 
20  * Interface to a Shibboleth Application instance.
21  */
22
23 #ifndef __shibsp_app_h__
24 #define __shibsp_app_h__
25
26 #include <shibsp/util/PropertySet.h>
27 #include <saml/saml2/metadata/MetadataProvider.h>
28 #include <xmltooling/security/TrustEngine.h>
29 #include <xmltooling/validation/Validator.h>
30
31 namespace shibsp {
32     
33     class SHIBSP_API Handler;
34     class SHIBSP_API ServiceProvider;
35
36     /**
37      * Interface to a Shibboleth Application instance.
38      * 
39      * <p>An Application is a logical set of resources that act as a unit
40      * of session management and policy.
41      */
42     class SHIBSP_API Application : public virtual PropertySet
43     {
44         MAKE_NONCOPYABLE(Application);
45     protected:
46         Application() {}
47     public:
48         virtual ~Application() {}
49
50         /**
51          * Returns the owning ServiceProvider instance.
52          *
53          * @return a locked ServiceProvider
54          */
55         virtual const ServiceProvider& getServiceProvider() const=0;
56
57         /**
58          * Returns the Application's ID.
59          * 
60          * @return  the ID
61          */        
62         virtual const char* getId() const=0;
63
64         /**
65          * Returns a unique hash for the Application.
66          * 
67          * @return a value resulting from a hash of the Application's ID  
68          */
69         virtual const char* getHash() const=0;
70
71         /**
72          * Returns the name and cookie properties to use for this Application.
73          * 
74          * @param prefix    a value to prepend to the base cookie name
75          * @return  a pair containing the cookie name and the string to append to the cookie value
76          */
77         virtual std::pair<std::string,const char*> getCookieNameProps(const char* prefix) const;
78
79         /**
80          * Returns a MetadataProvider for use with this Application.
81          * 
82          * @return  a MetadataProvider instance, or NULL
83          */
84         virtual opensaml::saml2md::MetadataProvider* getMetadataProvider() const=0;
85         
86         /**
87          * Returns a TrustEngine for use with this Application.
88          * 
89          * @return  a TrustEngine instance, or NULL
90          */
91         virtual xmltooling::TrustEngine* getTrustEngine() const=0;
92         
93         /**
94          * Returns configuration properties governing security interactions with a peer entity.
95          * 
96          * @param provider  a peer entity's metadata
97          * @return  the applicable PropertySet
98          */
99         virtual const PropertySet* getCredentialUse(const opensaml::saml2md::EntityDescriptor* provider) const=0;
100
101         /**
102          * Returns the default SessionInitiator Handler when automatically
103          * requesting a session.
104          * 
105          * @return the default SessionInitiator, or NULL
106          */
107         virtual const Handler* getDefaultSessionInitiator() const=0;
108         
109         /**
110          * Returns a SessionInitiator Handler with a particular ID when automatically
111          * requesting a session.
112          * 
113          * @param id    an identifier unique to the Application
114          * @return the designated SessionInitiator, or NULL
115          */
116         virtual const Handler* getSessionInitiatorById(const char* id) const=0;
117         
118         /**
119          * Returns the default AssertionConsumerService Handler
120          * for use in AuthnRequest messages.
121          * 
122          * @return the default AssertionConsumerService, or NULL
123          */
124         virtual const Handler* getDefaultAssertionConsumerService() const=0;
125
126         /**
127          * Returns an AssertionConsumerService Handler with a particular index
128          * for use in AuthnRequest messages.
129          * 
130          * @param index an index unique to an application
131          * @return the designated AssertionConsumerService, or NULL
132          */
133         virtual const Handler* getAssertionConsumerServiceByIndex(unsigned short index) const=0;
134
135         /**
136          * Returns one or more AssertionConsumerService Handlers that support
137          * a particular protocol binding.
138          * 
139          * @param binding   a protocol binding identifier
140          * @return a set of qualifying AssertionConsumerServices
141          */
142         virtual const std::vector<const Handler*>& getAssertionConsumerServicesByBinding(const XMLCh* binding) const=0;
143         
144         /**
145          * Returns the Handler associated with a particular path/location.
146          * 
147          * @param path  the PATH_INFO appended to the end of a base Handler location
148          *              that invokes the Handler
149          * @return the mapped Handler, or NULL 
150          */
151         virtual const Handler* getHandler(const char* path) const=0;
152
153         /**
154          * Returns the set of audience values associated with this Application.
155          * 
156          * @return set of audience values associated with the Application
157          */
158         virtual const std::vector<const XMLCh*>& getAudiences() const=0;
159
160         /**
161          * Returns a validator for applying verification rules to incoming SAML tokens.
162          *
163          * <p>The validator must be freed by the caller.
164          * 
165          * @param ts    timestamp against which to evaluate the token's validity, or 0 to ignore
166          * @param role  metadata role of token issuer, if known
167          * @return a validator
168          */
169         virtual xmltooling::Validator* getTokenValidator(time_t ts=0, const opensaml::saml2md::RoleDescriptor* role=NULL) const=0;
170     };
171 };
172
173 #endif /* __shibsp_app_h__ */