6 class formwrap(object):
7 def __init__(self, req):
8 if req.ihead.get("Content-Type") == "application/x-www-form-urlencoded":
9 self.cf = cgi.parse(environ = req.env, fp = req.env["wsgi.input"])
11 self.cf = cgi.parse(environ = req.env)
13 def __getitem__(self, key):
14 return self.cf[key][0]
16 def get(self, key, default = ""):
18 return self.cf[key][0]
21 def __contains__(self, key):
22 return key in self.cf and len(self.cf[key]) > 0
29 for key, list in self.cf.items():
38 return [val for key, val in self.items()]
40 class badmultipart(Exception):
43 class formpart(object):
44 def __init__(self, form):
53 def fillbuf(self, sz):
55 mboundary = "\r\n--" + self.form.boundary + "\r\n"
56 lboundary = "\r\n--" + self.form.boundary + "--\r\n"
58 p = self.form.buf.find(mboundary)
60 self.buf += self.form.buf[:p]
61 self.form.buf = self.form.buf[p + len(mboundary):]
64 p = self.form.buf.find(lboundary)
66 self.buf += self.form.buf[:p]
67 self.form.buf = self.form.buf[p + len(lboundary):]
71 self.buf += self.form.buf[:-len(lboundary)]
72 self.form.buf = self.form.buf[-len(lboundary):]
73 if sz >= 0 and len(self.buf) >= sz:
75 while len(self.form.buf) <= len(lboundary):
76 ret = req.env["wsgi.input"].read(8192)
78 raise badmultipart("Missing last multipart boundary")
81 def read(self, limit = -1):
84 ret = self.buf[:limit]
85 self.buf = self.buf[limit:]
91 def readline(self, limit = -1):
94 p = self.buf.find('\n', last)
101 self.fillbuf(last + 128)
103 ret = self.buf[:p + 1]
104 self.buf = self.buf[p + 1:]
113 def __exit__(self, *excinfo):
118 ln = self.readline(256)
120 raise badmultipart("Too long header line in part")
130 if not ln[1:].isspace():
135 raise badmultipart("Malformed multipart header line")
136 self.head[buf[:p].strip().lower()] = buf[p + 1:].lstrip()
138 val, par = proto.pmimehead(self.head.get("content-disposition", ""))
139 if val != "form-data":
140 raise badmultipart("Unexpected Content-Disposition in form part: %r" % val)
141 if not "name" in par:
142 raise badmultipart("Missing name in form part")
143 self.name = par["name"]
144 self.filename = par.get("filename")
145 val, par = proto.pmimehead(self.head.get("content-type", ""))
147 self.charset = par.get("charset")
148 encoding = self.head.get("content-transfer-encoding", "binary")
149 if encoding != "binary":
150 raise badmultipart("Form part uses unexpected transfer encoding: %r" % encoding)
152 class multipart(object):
153 def __init__(self, req):
154 val, par = proto.pmimehead(req.ihead.get("Content-Type", ""))
155 if req.method != "POST" or val != "multipart/form-data":
156 raise badmultipart("Request is not a multipart form")
157 if "boundary" not in par:
158 raise badmultipart("Multipart form lacks boundary")
159 self.boundary = par["boundary"]
163 self.lastpart = formpart(self)
164 self.lastpart.close()
170 if not self.lastpart.eof:
171 raise RuntimeError("All form parts must be read entirely")
173 raise StopIteration()
174 self.lastpart = formpart(self)
175 self.lastpart.parsehead()
179 return req.item(formwrap)