Change audience handling and validators to separate out entityID.
[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
28 #include <set>
29 #ifndef SHIBSP_LITE
30 # include <saml/binding/MessageEncoder.h>
31 # include <saml/saml2/metadata/MetadataProvider.h>
32 # include <xmltooling/security/CredentialResolver.h>
33 # include <xmltooling/security/TrustEngine.h>
34 #endif
35 #include <xmltooling/io/HTTPRequest.h>
36 #include <xmltooling/util/Threads.h>
37
38 namespace shibsp {
39     
40 #ifndef SHIBSP_LITE
41     class SHIBSP_API AttributeExtractor;
42     class SHIBSP_API AttributeFilter;
43     class SHIBSP_API AttributeResolver;
44 #endif
45     class SHIBSP_API Attribute;
46     class SHIBSP_API Handler;
47     class SHIBSP_API ServiceProvider;
48     class SHIBSP_API SessionInitiator;
49     class SHIBSP_API SPRequest;
50
51 #if defined (_MSC_VER)
52     #pragma warning( push )
53     #pragma warning( disable : 4251 )
54 #endif
55
56     /**
57      * Interface to a Shibboleth Application instance.
58      * 
59      * <p>An Application is a logical set of resources that act as a unit
60      * of session management and policy.
61      */
62     class SHIBSP_API Application : public virtual PropertySet
63 #ifndef SHIBSP_LITE
64         ,public virtual opensaml::MessageEncoder::ArtifactGenerator
65 #endif
66     {
67         MAKE_NONCOPYABLE(Application);
68     protected:
69         /**
70          * Constructor.
71          *
72          * @param sp    parent ServiceProvider instance
73          */
74         Application(const ServiceProvider* sp);
75         
76         /** Pointer to parent SP instance. */
77         const ServiceProvider* m_sp;
78
79         /** Shared lock for manipulating application state. */
80         mutable xmltooling::RWLock* m_lock;
81
82         /** Pairs of raw and normalized CGI header names to clear. */
83         mutable std::vector< std::pair<std::string,std::string> > m_unsetHeaders;
84
85     public:
86         virtual ~Application();
87
88         /**
89          * Returns the owning ServiceProvider instance.
90          *
91          * @return a locked ServiceProvider
92          */
93         const ServiceProvider& getServiceProvider() const {
94             return *m_sp;
95         }
96
97         /**
98          * Returns the Application's ID.
99          * 
100          * @return  the ID
101          */        
102         virtual const char* getId() const {
103             return getString("id").second;
104         }
105
106         /**
107          * Returns a unique hash for the Application.
108          * 
109          * @return a value resulting from a computation over the Application's configuration
110          */
111         virtual const char* getHash() const=0;
112
113         /**
114          * Returns the name and cookie properties to use for this Application.
115          * 
116          * @param prefix    a value to prepend to the base cookie name
117          * @return  a pair containing the cookie name and the string to append to the cookie value
118          */
119         virtual std::pair<std::string,const char*> getCookieNameProps(const char* prefix) const;
120
121 #ifndef SHIBSP_LITE
122         /**
123          * Returns a MetadataProvider for use with this Application.
124          * 
125          * @param required  true iff an exception should be thrown if no MetadataProvider is available
126          * @return  a MetadataProvider instance, or NULL
127          */
128         virtual opensaml::saml2md::MetadataProvider* getMetadataProvider(bool required=true) const=0;
129         
130         /**
131          * Returns a TrustEngine for use with this Application.
132          * 
133          * @param required  true iff an exception should be thrown if no TrustEngine is available
134          * @return  a TrustEngine instance, or NULL
135          */
136         virtual xmltooling::TrustEngine* getTrustEngine(bool required=true) const=0;
137
138         /**
139          * Returns an AttributeExtractor for use with this Application.
140          * 
141          * @return  an AttributeExtractor, or NULL
142          */
143         virtual AttributeExtractor* getAttributeExtractor() const=0;
144
145         /**
146          * Returns an AttributeFilter for use with this Application.
147          * 
148          * @return  an AttributeFilter, or NULL
149          */
150         virtual AttributeFilter* getAttributeFilter() const=0;
151
152         /**
153          * Returns an AttributeResolver for use with this Application.
154          * 
155          * @return  an AttributeResolver, or NULL
156          */
157         virtual AttributeResolver* getAttributeResolver() const=0;
158
159         /**
160          * Returns the CredentialResolver instance associated with this Application.
161          * 
162          * @return  a CredentialResolver, or NULL
163          */
164         virtual xmltooling::CredentialResolver* getCredentialResolver() const=0;
165
166         /**
167          * Returns configuration properties governing security interactions with a peer.
168          * 
169          * @param provider  a peer entity's metadata
170          * @return  the applicable PropertySet
171          */
172         virtual const PropertySet* getRelyingParty(const opensaml::saml2md::EntityDescriptor* provider) const=0;
173
174         /**
175          * Returns any additional audience values associated with this Application.
176          * 
177          * @return additional audience values associated with the Application, or NULL
178          */
179         virtual const std::vector<const XMLCh*>* getAudiences() const=0;
180 #endif
181
182         /**
183          * Returns the designated notification URL, or an empty string if no more locations are specified.
184          *
185          * @param request   requested URL to use to fill in missing pieces of notification URL
186          * @param front     true iff front channel notification is desired, false iff back channel is desired
187          * @param index     zero-based index of URL to return
188          * @return  the designated URL, or an empty string
189          */
190         virtual std::string getNotificationURL(const char* request, bool front, unsigned int index) const=0;
191
192         /**
193          * Returns an array of attribute IDs to use as a REMOTE_USER value, in order of preference.
194          *
195          * @return  an array of attribute IDs, possibly empty
196          */
197         virtual const std::vector<std::string>& getRemoteUserAttributeIds() const=0;
198
199         /**
200          * Clears any headers that may be used to hold attributes after export.
201          *
202          * @param request   SP request to clear
203          */
204         virtual void clearAttributeHeaders(SPRequest& request) const;
205
206         /**
207          * Returns the default SessionInitiator when automatically requesting a session.
208          * 
209          * @return the default SessionInitiator, or NULL
210          */
211         virtual const SessionInitiator* getDefaultSessionInitiator() const=0;
212         
213         /**
214          * Returns a SessionInitiator with a particular ID when automatically requesting a session.
215          * 
216          * @param id    an identifier unique to the Application
217          * @return the designated SessionInitiator, or NULL
218          */
219         virtual const SessionInitiator* getSessionInitiatorById(const char* id) const=0;
220
221         /**
222          * Returns the default AssertionConsumerService Handler
223          * for use in AuthnRequest messages.
224          * 
225          * @return the default AssertionConsumerService, or NULL
226          */
227         virtual const Handler* getDefaultAssertionConsumerService() const=0;
228
229         /**
230          * Returns an AssertionConsumerService Handler with a particular index
231          * for use in AuthnRequest messages.
232          * 
233          * @param index an index unique to an application
234          * @return the designated AssertionConsumerService, or NULL
235          */
236         virtual const Handler* getAssertionConsumerServiceByIndex(unsigned short index) const=0;
237
238         /**
239          * Returns one or more AssertionConsumerService Handlers that support
240          * a particular protocol binding.
241          * 
242          * @param binding   a protocol binding identifier
243          * @return a set of qualifying AssertionConsumerServices
244          */
245         virtual const std::vector<const Handler*>& getAssertionConsumerServicesByBinding(const XMLCh* binding) const=0;
246         
247         /**
248          * Returns the Handler associated with a particular path/location.
249          * 
250          * @param path  the PATH_INFO appended to the end of a base Handler location
251          *              that invokes the Handler
252          * @return the mapped Handler, or NULL 
253          */
254         virtual const Handler* getHandler(const char* path) const=0;
255
256         /**
257          * Returns all registered Handlers.
258          *
259          * @param handlers  array to populate
260          */
261         virtual void getHandlers(std::vector<const Handler*>& handlers) const=0;
262     };
263
264 #if defined (_MSC_VER)
265     #pragma warning( pop )
266 #endif
267
268 };
269
270 #endif /* __shibsp_app_h__ */