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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
|
# Copyright (c) 2000 Gregory Trubetskoy. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# 3. The end-user documentation included with the redistribution, if
# any, must include the following acknowledgment: "This product
# includes software developed by Gregory Trubetskoy."
# Alternately, this acknowledgment may appear in the software itself,
# if and wherever such third-party acknowledgments normally appear.
#
# 4. The names "mod_python", "modpython" or "Gregory Trubetskoy" must not
# be used to endorse or promote products derived from this software
# without prior written permission. For written permission, please
# contact grisha@modpython.org.
#
# 5. Products derived from this software may not be called "mod_python"
# or "modpython", nor may "mod_python" or "modpython" appear in their
# names without prior written permission of Gregory Trubetskoy.
#
# THIS SOFTWARE IS PROVIDED BY GREGORY TRUBETSKOY ``AS IS'' AND ANY
# EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GREGORY TRUBETSKOY OR
# HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
# OF THE POSSIBILITY OF SUCH DAMAGE.
# ====================================================================
#
# $Id: util.py,v 1.6 2000/12/13 23:45:48 gtrubetskoy Exp $
import apache
import string
import StringIO
parse_qs = apache.parse_qs
parse_qsl = apache.parse_qsl
""" The classes below are a (almost) a drop-in replacement for the
standard cgi.py FieldStorage class. They should have pretty much the
same functionality.
These classes differ in that unlike cgi.FieldStorage, they are not
recursive. The class FieldStorage contains a list of instances of
Field class. Field class is incapable of storing anything in it.
These objects should be considerably faster than the ones in cgi.py
because they do not expect CGI environment, and are
optimized specifically for Apache and mod_python.
"""
class Field:
filename = None
headers = {}
def __init__(self, name, file, ctype, type_options,
disp, disp_options):
self.name = name
self.file = file
self.type = ctype
self.type_options = type_options
self.disposition = disp
self.disposition_options = disp_options
def __repr__(self):
"""Return printable representation."""
return "Field(%s, %s)" % (`self.name`, `self.value`)
def __getattr__(self, name):
if name != 'value':
raise AttributeError, name
if self.file:
self.file.seek(0)
value = self.file.read()
self.file.seek(0)
else:
value = None
return value
def __del__(self):
self.file.close()
class FieldStorage:
def __init__(self, req, keep_blank_values=0, strict_parsing=0):
self._req =_req = req._req
self.list = []
# always process GET-style parameters
if _req.args:
pairs = parse_qsl(req.args, keep_blank_values)
for pair in pairs:
file = StringIO.StringIO(pair[1])
self.list.append(Field(pair[0], file, "text/plain", {},
None, {}))
if _req.method == "POST":
try:
clen = int(_req.headers_in["content-length"])
except (KeyError, ValueError):
# absent content-length is not acceptable
raise apache.SERVER_RETURN, apache.HTTP_LENGTH_REQUIRED
if not _req.headers_in.has_key("content-type"):
ctype = "application/x-www-form-urlencoded"
else:
ctype = _req.headers_in["content-type"]
if ctype == "application/x-www-form-urlencoded":
pairs = parse_qsl(req.read(clen), keep_blank_values)
for pair in pairs:
file = StringIO.StringIO(pair[1])
self.list.append(Field(pair[0], file, "text/plain",
{}, None, {}))
elif ctype[:10] == "multipart/":
# figure out boundary
# XXX what about req.boundary?
try:
i = string.rindex(string.lower(ctype), "boundary=")
boundary = ctype[i+9:]
if len(boundary) >= 2 and boundary[0] == boundary[-1] == '"':
boundary = boundary[1:-1]
boundary = "--" + boundary
except ValueError:
raise apache.SERVER_RETURN, apache.HTTP_BAD_REQUEST
#read until boundary
line = _req.readline()
sline = string.strip(line)
while line and sline != boundary:
line = _req.readline()
while 1:
## parse headers
ctype, type_options = "text/plain", {}
disp, disp_options = None, {}
headers = apache.make_table()
line = _req.readline()
while line and line not in ["\n", "\r\n"]:
h, v = string.split(line, ":", 1)
headers.add(h, v)
h = string.lower(h)
if h == "content-disposition":
disp, disp_options = parse_header(v)
elif h == "content-type":
ctype, type_options = parse_header(v)
line = _req.readline()
if disp_options.has_key("name"):
name = disp_options["name"]
else:
name = None
# is this a file?
if disp_options.has_key("filename"):
file = self.make_file()
else:
file = StringIO.StringIO()
# read it in
self.read_to_boundary(_req, boundary, file)
file.seek(0)
# make a Field
field = Field(name, file, ctype, type_options,
disp, disp_options)
field.headers = headers
if disp_options.has_key("filename"):
field.filename = disp_options["filename"]
self.list.append(field)
if not line or sline == (boundary + "--"):
break
else:
# we don't understand this content-type
raise apache.SERVER_RETURN, apache.HTTP_NOT_IMPLEMENTED
def make_file(self):
import tempfile
return tempfile.TemporaryFile("w+b")
def skip_to_boundary(self, _req, boundary):
line = _req.readline()
sline = string.strip(line)
last_bound = boundary + "--"
while line and sline != boundary and sline != last_bound:
line = _req.readline()
sline = string.strip(line)
def read_to_boundary(self, _req, boundary, file):
delim = ""
line = _req.readline()
sline = string.strip(line)
last_bound = boundary + "--"
while line and sline != boundary and sline != last_bound:
odelim = delim
if line[-2:] == "\r\n":
delim = "\r\n"
line = line[:-2]
elif line[-1:] == "\n":
delim = "\n"
line = line[:-1]
file.write(odelim + line)
line = _req.readline()
sline = string.strip(line)
def __getitem__(self, key):
"""Dictionary style indexing."""
if self.list is None:
raise TypeError, "not indexable"
found = []
for item in self.list:
if item.name == key:
if isinstance(item.file, StringIO.StringIO):
found.append(item.value)
else:
found.append(item)
if not found:
raise KeyError, key
if len(found) == 1:
return found[0]
else:
return found
def keys(self):
"""Dictionary style keys() method."""
if self.list is None:
raise TypeError, "not indexable"
keys = []
for item in self.list:
if item.name not in keys: keys.append(item.name)
return keys
def has_key(self, key):
"""Dictionary style has_key() method."""
if self.list is None:
raise TypeError, "not indexable"
for item in self.list:
if item.name == key: return 1
return 0
def __len__(self):
"""Dictionary style len(x) support."""
return len(self.keys())
def parse_header(line):
"""Parse a Content-type like header.
Return the main content-type and a dictionary of options.
"""
plist = map(string.strip, string.splitfields(line, ';'))
key = string.lower(plist[0])
del plist[0]
pdict = {}
for p in plist:
i = string.find(p, '=')
if i >= 0:
name = string.lower(string.strip(p[:i]))
value = string.strip(p[i+1:])
if len(value) >= 2 and value[0] == value[-1] == '"':
value = value[1:-1]
pdict[name] = value
return key, pdict
|