~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/dispatch/request.py

  • Committer: me at id
  • Date: 2009-01-15 03:02:36 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1150
ivle.makeuser.make_jail: Just take an ivle.database.User, rather than some
    attributes.

services/usrmgt-server: Give make_jail a User.

bin/ivle-remakeuser: Rewrite to use ivle.database.User.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
object.
26
26
"""
27
27
 
28
 
try:
29
 
    import mod_python.Session
30
 
    import mod_python.Cookie
31
 
    import mod_python.util
32
 
except ImportError:
33
 
    # This needs to be importable from outside Apache.
34
 
    pass
 
28
import mod_python
 
29
from mod_python import (util, Session, Cookie)
35
30
 
36
31
import ivle.util
37
32
import ivle.conf
38
33
import ivle.database
39
 
from ivle.webapp.base.plugins import CookiePlugin
 
34
import plugins.console # XXX: Relies on www/ being in the Python path.
40
35
 
41
36
class Request:
42
37
    """An IVLE request object. This is presented to the IVLE apps as a way of
78
73
        location (write)
79
74
            String. Response "Location" header value. Used with HTTP redirect
80
75
            responses.
 
76
        title (write)
 
77
            String. HTML page title. Used if write_html_head_foot is True, in
 
78
            the HTML title element text.
81
79
        styles (write)
82
80
            List of strings. Write a list of URLs to CSS files here, and they
83
81
            will be incorporated as <link rel="stylesheet" type="text/css">
96
94
            in the head, if write_html_head_foot is True.
97
95
            This is the propper way to specify functions that need to run at 
98
96
            page load time.
 
97
        write_html_head_foot (write)
 
98
            Boolean. If True, dispatch assumes that this is an XHTML page, and
 
99
            will immediately write a full HTML head, open the body element,
 
100
            and write heading contents to the page, before any bytes are
 
101
            written. It will then write footer contents and close the body and
 
102
            html elements at the end of execution.  
 
103
 
 
104
            This value should be set to true by all applications for all HTML
 
105
            output (unless there is a good reason, eg. exec). The
 
106
            applications should therefore output HTML content assuming that
 
107
            it will be written inside the body tag. Do not write opening or
 
108
            closing <html> or <body> tags.
99
109
    """
100
110
 
101
111
    # Special code for an OK response.
154
164
    HTTP_INSUFFICIENT_STORAGE         = 507
155
165
    HTTP_NOT_EXTENDED                 = 510
156
166
 
157
 
    def __init__(self, req):
 
167
    def __init__(self, req, write_html_head):
158
168
        """Builds an IVLE request object from a mod_python request object.
159
169
        This results in an object with all of the necessary methods and
160
170
        additional fields.
161
171
 
162
172
        req: A mod_python request object.
 
173
        write_html_head: Function which is called when writing the automatic
 
174
            HTML header. Accepts a single argument, the IVLE request object.
163
175
        """
164
176
 
165
177
        # Methods are mostly wrappers around the Apache request object
166
178
        self.apache_req = req
 
179
        self.func_write_html_head = write_html_head
167
180
        self.headers_written = False
168
181
 
169
182
        # Determine if the browser used the public host name to make the
193
206
        self.status = Request.HTTP_OK
194
207
        self.content_type = None        # Use Apache's default
195
208
        self.location = None
 
209
        self.title = None     # Will be set by dispatch before passing to app
196
210
        self.styles = []
197
211
        self.scripts = []
198
212
        self.scripts_init = []
 
213
        self.write_html_head_foot = False
199
214
        # In some cases we don't want the template JS (such as the username
200
215
        # and public FQDN) in the output HTML. In that case, set this to 0.
201
216
        self.write_javascript_settings = True
209
224
        """Writes out the HTTP and HTML headers before any real data is
210
225
        written."""
211
226
        self.headers_written = True
 
227
        
 
228
        # app is the App object for the chosen app
 
229
        try:
 
230
            app = ivle.conf.apps.app_url[self.app]
 
231
        except KeyError:
 
232
            app = None
 
233
 
 
234
        # Write any final modifications to header content
 
235
        if app and app.useconsole and self.user:
 
236
            plugins.console.insert_scripts_styles(self.scripts, self.styles, \
 
237
                self.scripts_init)
212
238
 
213
239
        # Prepare the HTTP and HTML headers before the first write is made
214
240
        if self.content_type != None:
216
242
        self.apache_req.status = self.status
217
243
        if self.location != None:
218
244
            self.apache_req.headers_out['Location'] = self.location
 
245
        if self.write_html_head_foot:
 
246
            # Write the HTML header, pass "self" (request object)
 
247
            self.func_write_html_head(self)
219
248
 
220
249
    def ensure_headers_written(self):
221
250
        """Writes out the HTTP and HTML headers if they haven't already been
238
267
            # This includes binary strings.
239
268
            self.apache_req.write(string, flush)
240
269
 
241
 
    def logout(self):
242
 
        """Log out the current user by destroying the session state.
243
 
        Then redirect to the top-level IVLE page."""
244
 
        if hasattr(self, 'session'):
245
 
            self.session.invalidate()
246
 
            self.session.delete()
247
 
            # Invalidates all IVLE cookies
248
 
            all_cookies = mod_python.Cookie.get_cookies(self)
249
 
 
250
 
            # Create cookies for plugins that might request them.
251
 
            for plugin in self.config.plugin_index[CookiePlugin]:
252
 
                for cookie in plugin.cookies:
253
 
                    self.add_cookie(mod_python.Cookie.Cookie(cookie, '',
254
 
                                                    expires=1, path='/'))
255
 
        self.throw_redirect(ivle.util.make_path('')) 
256
 
 
257
 
 
258
270
    def flush(self):
259
271
        """Flushes the output buffer."""
260
272
        self.apache_req.flush()
273
285
        else:
274
286
            return self.apache_req.read(len)
275
287
 
 
288
    def throw_error(self, httpcode, message=None):
 
289
        """Writes out an HTTP error of the specified code. Raises an exception
 
290
        which is caught by the dispatch or web server, so any code following
 
291
        this call will not be executed.
 
292
 
 
293
        httpcode: An HTTP response status code. Pass a constant from the
 
294
        Request class.
 
295
        """
 
296
        raise ivle.util.IVLEError(httpcode, message)
 
297
 
276
298
    def throw_redirect(self, location):
277
299
        """Writes out an HTTP redirect to the specified URL. Raises an
278
300
        exception which is caught by the dispatch or web server, so any
288
310
    def add_cookie(self, cookie, value=None, **attributes):
289
311
        """Inserts a cookie into this request object's headers."""
290
312
        if value is None:
291
 
            mod_python.Cookie.add_cookie(self.apache_req, cookie)
 
313
            Cookie.add_cookie(self.apache_req, cookie)
292
314
        else:
293
 
            mod_python.Cookie.add_cookie(self.apache_req, cookie, value, **attributes)
 
315
            Cookie.add_cookie(self.apache_req, cookie, value, **attributes)
294
316
 
295
317
    def get_session(self):
296
318
        """Returns a mod_python Session object for this request.
297
319
        Note that this is dependent on mod_python and may need to change
298
 
        interface if porting away from mod_python.
299
 
 
300
 
        IMPORTANT: Call unlock() on the session as soon as you are done with
301
 
                   it! If you don't, all other requests will block!
302
 
        """
 
320
        interface if porting away from mod_python."""
303
321
        # Cache the session object and set the timeout to 24 hours.
304
322
        if not hasattr(self, 'session'):
305
 
            self.session = mod_python.Session.FileSession(self.apache_req,
 
323
            self.session = Session.FileSession(self.apache_req,
306
324
                                               timeout = 60 * 60 * 24)
307
325
        return self.session
308
326
 
312
330
        interface if porting away from mod_python."""
313
331
        # Cache the fieldstorage object
314
332
        if not hasattr(self, 'fields'):
315
 
            self.fields = mod_python.util.FieldStorage(self.apache_req)
 
333
            self.fields = util.FieldStorage(self.apache_req)
316
334
        return self.fields
317
335
 
318
336
    def get_cgi_environ(self):