1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
# IVLE - Informatics Virtual Learning Environment
# Copyright (C) 2007-2008 The University of Melbourne
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# Module: dispatch.request
# Author: Matt Giuca
# Date: 12/12/2007
# Builds an IVLE request object from a mod_python request object.
# See design notes/apps/dispatch.txt for a full specification of this request
# object.
import common.util
import mod_python
from mod_python import (util, Session)
class Request:
"""An IVLE request object. This is presented to the IVLE apps as a way of
interacting with the web server and the dispatcher.
Request object attributes:
method (read)
String. The request method (eg. 'GET', 'POST', etc)
uri (read)
String. The path portion of the URI.
app (read)
String. Name of the application specified in the URL, or None.
path (read)
String. The path specified in the URL *not including* the
application or the IVLE location prefix. eg. a URL of
"/ivle/files/joe/myfiles" has a path of "joe/myfiles".
username (read)
String. Login name of the user who is currently logged in, or
None.
headers_in (read)
Table object representing headers sent by the client.
headers_out (read, can be written to)
Table object representing headers to be sent to the client.
status (write)
Int. Response status number. Use one of the status codes defined
in class Request.
content_type (write)
String. The Content-Type (mime type) header value.
location (write)
String. Response "Location" header value. Used with HTTP redirect
responses.
title (write)
String. HTML page title. Used if write_html_head_foot is True, in
the HTML title element text.
styles (write)
List of strings. Write a list of URLs to CSS files here, and they
will be incorporated as <link rel="stylesheet" type="text/css">
elements in the head, if write_html_head_foot is True.
URLs should be relative to the IVLE root; they will be fixed up
to be site-relative.
scripts (write)
List of strings. Write a list of URLs to JS files here, and they
will be incorporated as <script type="text/javascript"> elements
in the head, if write_html_head_foot is True.
URLs should be relative to the IVLE root; they will be fixed up
to be site-relative.
write_html_head_foot (write)
Boolean. If True, dispatch assumes that this is an XHTML page, and
will immediately write a full HTML head, open the body element,
and write heading contents to the page, before any bytes are
written. It will then write footer contents and close the body and
html elements at the end of execution.
This value should be set to true by all applications for all HTML
output (unless there is a good reason, eg. exec). The
applications should therefore output HTML content assuming that
it will be written inside the body tag. Do not write opening or
closing <html> or <body> tags.
"""
# Special code for an OK response.
# Do not use HTTP_OK; for some reason Apache produces an "OK" error
# message if you do that.
OK = 0
# HTTP status codes
HTTP_CONTINUE = 100
HTTP_SWITCHING_PROTOCOLS = 101
HTTP_PROCESSING = 102
HTTP_OK = 200
HTTP_CREATED = 201
HTTP_ACCEPTED = 202
HTTP_NON_AUTHORITATIVE = 203
HTTP_NO_CONTENT = 204
HTTP_RESET_CONTENT = 205
HTTP_PARTIAL_CONTENT = 206
HTTP_MULTI_STATUS = 207
HTTP_MULTIPLE_CHOICES = 300
HTTP_MOVED_PERMANENTLY = 301
HTTP_MOVED_TEMPORARILY = 302
HTTP_SEE_OTHER = 303
HTTP_NOT_MODIFIED = 304
HTTP_USE_PROXY = 305
HTTP_TEMPORARY_REDIRECT = 307
HTTP_BAD_REQUEST = 400
HTTP_UNAUTHORIZED = 401
HTTP_PAYMENT_REQUIRED = 402
HTTP_FORBIDDEN = 403
HTTP_NOT_FOUND = 404
HTTP_METHOD_NOT_ALLOWED = 405
HTTP_NOT_ACCEPTABLE = 406
HTTP_PROXY_AUTHENTICATION_REQUIRED= 407
HTTP_REQUEST_TIME_OUT = 408
HTTP_CONFLICT = 409
HTTP_GONE = 410
HTTP_LENGTH_REQUIRED = 411
HTTP_PRECONDITION_FAILED = 412
HTTP_REQUEST_ENTITY_TOO_LARGE = 413
HTTP_REQUEST_URI_TOO_LARGE = 414
HTTP_UNSUPPORTED_MEDIA_TYPE = 415
HTTP_RANGE_NOT_SATISFIABLE = 416
HTTP_EXPECTATION_FAILED = 417
HTTP_UNPROCESSABLE_ENTITY = 422
HTTP_LOCKED = 423
HTTP_FAILED_DEPENDENCY = 424
HTTP_INTERNAL_SERVER_ERROR = 500
HTTP_NOT_IMPLEMENTED = 501
HTTP_BAD_GATEWAY = 502
HTTP_SERVICE_UNAVAILABLE = 503
HTTP_GATEWAY_TIME_OUT = 504
HTTP_VERSION_NOT_SUPPORTED = 505
HTTP_VARIANT_ALSO_VARIES = 506
HTTP_INSUFFICIENT_STORAGE = 507
HTTP_NOT_EXTENDED = 510
def __init__(self, req, write_html_head):
"""Builds an IVLE request object from a mod_python request object.
This results in an object with all of the necessary methods and
additional fields.
req: A mod_python request object.
write_html_head: Function which is called when writing the automatic
HTML header. Accepts a single argument, the IVLE request object.
"""
# Methods are mostly wrappers around the Apache request object
self.apache_req = req
self.func_write_html_head = write_html_head
self.headers_written = False
# Inherit values for the input members
self.method = req.method
self.uri = req.uri
# Split the given path into the app (top-level dir) and sub-path
# (after first stripping away the root directory)
(self.app, self.path) = (
common.util.split_path(common.util.unmake_path(req.uri)))
self.username = None
self.headers_in = req.headers_in
self.headers_out = req.headers_out
# Default values for the output members
self.status = Request.HTTP_OK
self.content_type = None # Use Apache's default
self.location = None
self.title = None # Will be set by dispatch before passing to app
self.styles = []
self.scripts = []
self.write_html_head_foot = False
def __writeheaders(self):
"""Writes out the HTTP and HTML headers before any real data is
written."""
self.headers_written = True
# Prepare the HTTP and HTML headers before the first write is made
if self.content_type != None:
self.apache_req.content_type = self.content_type
self.apache_req.status = self.status
if self.location != None:
self.apache_req.headers_out['Location'] = self.location
if self.write_html_head_foot:
# Write the HTML header, pass "self" (request object)
self.func_write_html_head(self)
def ensure_headers_written(self):
"""Writes out the HTTP and HTML headers if they haven't already been
written."""
if not self.headers_written:
self.__writeheaders()
def write(self, string, flush=1):
"""Writes string directly to the client, then flushes the buffer,
unless flush is 0."""
if not self.headers_written:
self.__writeheaders()
self.apache_req.write(string, flush)
def flush(self):
"""Flushes the output buffer."""
self.apache_req.flush()
def sendfile(self, filename):
"""Sends the named file directly to the client."""
if not self.headers_written:
self.__writeheaders()
self.apache_req.sendfile(filename)
def read(self, len=None):
"""Reads at most len bytes directly from the client. (See mod_python
Request.read)."""
if len is None:
self.apache_req.read()
else:
self.apache_req.read(len)
def throw_error(self, httpcode):
"""Writes out an HTTP error of the specified code. Raises an exception
which is caught by the dispatch or web server, so any code following
this call will not be executed.
httpcode: An HTTP response status code. Pass a constant from the
Request class.
"""
raise mod_python.apache.SERVER_RETURN, httpcode
def throw_redirect(self, location):
"""Writes out an HTTP redirect to the specified URL. Raises an
exception which is caught by the dispatch or web server, so any
code following this call will not be executed.
httpcode: An HTTP response status code. Pass a constant from the
Request class.
"""
mod_python.util.redirect(self.apache_req, location)
def get_session(self):
"""Returns a mod_python Session object for this request.
Note that this is dependent on mod_python and may need to change
interface if porting away from mod_python."""
# Cache the session object
if not hasattr(self, 'session'):
self.session = Session.Session(self.apache_req)
return self.session
def get_fieldstorage(self):
"""Returns a mod_python FieldStorage object for this request.
Note that this is dependent on mod_python and may need to change
interface if porting away from mod_python."""
# Cache the fieldstorage object
if not hasattr(self, 'fields'):
self.fields = util.FieldStorage(self.apache_req)
return self.fields
|