a0b9ac41d5d46fcf035c713656cb8de66c34c2a2
[shibboleth/sp.git] / shibsp / SPRequest.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/SPRequest.h
19  * 
20  * Interface to server request being processed  
21  */
22
23 #ifndef __shibsp_req_h__
24 #define __shibsp_req_h__
25
26 #include <shibsp/RequestMapper.h>
27 #include <xmltooling/io/HTTPRequest.h>
28 #include <xmltooling/io/HTTPResponse.h>
29
30 namespace shibsp {
31     
32     class SHIBSP_API Application;
33     class SHIBSP_API ServiceProvider;
34     class SHIBSP_API Session;
35     
36     /**
37      * Interface to server request being processed
38      * 
39      * <p>To supply information from the surrounding web server environment,
40      * a shim must be supplied in the form of this interface to adapt the
41      * library to different proprietary server APIs.
42      * 
43      * <p>This interface need not be threadsafe.
44      */
45     class SHIBSP_API SPRequest : public virtual xmltooling::HTTPRequest, public virtual xmltooling::HTTPResponse
46     {
47     protected:
48         SPRequest() {}
49     public:
50         virtual ~SPRequest() {}
51         
52         /**
53          * Returns the locked ServiceProvider processing the request.
54          * 
55          * @return reference to ServiceProvider
56          */
57         virtual const ServiceProvider& getServiceProvider() const=0;
58
59         /**
60          * Returns RequestMapper Settings associated with the request, guaranteed
61          * to be valid for the request's duration.
62          * 
63          * @return copy of settings
64          */
65         virtual RequestMapper::Settings getRequestSettings() const=0;
66         
67         /**
68          * Returns the Application governing the request.
69          * 
70          * @return reference to Application
71          */
72         virtual const Application& getApplication() const=0;
73
74         /**
75          * Returns a locked Session associated with the request.
76          *
77          * @param touch true iff the last-used timestamp should be updated and any timeout policy enforced
78          * @return pointer to Session, or NULL
79          */
80         virtual Session* getSession(bool checkTimeout=true) const=0;
81
82         /**
83          * Returns the effective base Handler URL for a resource,
84          * or the current request URL.
85          * 
86          * @param resource  resource URL to compute handler for
87          * @return  base location of handler
88          */
89         virtual const char* getHandlerURL(const char* resource=NULL) const=0;
90
91         /**
92          * Get a cookie value supplied by the client.
93          * 
94          * @param name  name of cookie
95          * @return  cookie value or NULL
96          */
97         virtual const char* getCookie(const char* name) const=0;
98         
99         /**
100          * Returns a non-spoofable request header value, if possible.
101          * Platforms that support environment export can redirect header
102          * lookups by overriding this method.
103          * 
104          * @param name  the name of the secure header to return
105          * @return the header's value, or an empty string
106          */
107         virtual std::string getSecureHeader(const char* name) const {
108             return getHeader(name);
109         }
110
111         /**
112          * Ensures no value exists for a request header.
113          * 
114          * @param rawname  raw name of header to clear
115          * @param cginame  CGI-equivalent name of header
116          */
117         virtual void clearHeader(const char* rawname, const char* cginame)=0;
118
119         /**
120          * Sets a value for a request header.
121          * 
122          * @param name  name of header to set
123          * @param value value to set
124          */
125         virtual void setHeader(const char* name, const char* value)=0;
126
127         /**
128          * Establish REMOTE_USER identity in request.
129          * 
130          * @param user  REMOTE_USER value to set or NULL to clear
131          */
132         virtual void setRemoteUser(const char* user)=0;
133         
134         /** Portable logging levels. */
135         enum SPLogLevel {
136           SPDebug,
137           SPInfo,
138           SPWarn,
139           SPError,
140           SPCrit
141         };
142
143         /**
144          * Log to native server environment.
145          * 
146          * @param level logging level
147          * @param msg   message to log
148          */
149         virtual void log(SPLogLevel level, const std::string& msg) const=0;
150
151         /**
152          * Test logging level.
153          * 
154          * @param level logging level
155          * @return true iff logging level is enabled
156          */
157         virtual bool isPriorityEnabled(SPLogLevel level) const=0;
158
159         /**
160          * Indicates that processing was declined, meaning no action is required during this phase of processing.
161          * 
162          * @return  a status code to pass back to the server-specific layer
163          */        
164         virtual long returnDecline()=0;
165
166         /**
167          * Indicates that processing was completed.
168          * 
169          * @return  a status code to pass back to the server-specific layer
170          */        
171         virtual long returnOK()=0;
172     };
173 };
174
175 #endif /* __shibsp_req_h__ */