Patch by Jeremy Katz (SF #1609407)
[python.git] / Lib / cgi.py
blob818567e5fdcd2e745a28e0081dee9f75b711f10b
1 #! /usr/local/bin/python
3 # NOTE: the above "/usr/local/bin/python" is NOT a mistake. It is
4 # intentionally NOT "/usr/bin/env python". On many systems
5 # (e.g. Solaris), /usr/local/bin is not in $PATH as passed to CGI
6 # scripts, and /usr/local/bin is the default directory where Python is
7 # installed, so /usr/bin/env would be unable to find python. Granted,
8 # binary installations by Linux vendors often install Python in
9 # /usr/bin. So let those vendors patch cgi.py to match their choice
10 # of installation.
12 """Support module for CGI (Common Gateway Interface) scripts.
14 This module defines a number of utilities for use by CGI scripts
15 written in Python.
16 """
18 # XXX Perhaps there should be a slimmed version that doesn't contain
19 # all those backwards compatible and debugging classes and functions?
21 # History
22 # -------
24 # Michael McLay started this module. Steve Majewski changed the
25 # interface to SvFormContentDict and FormContentDict. The multipart
26 # parsing was inspired by code submitted by Andreas Paepcke. Guido van
27 # Rossum rewrote, reformatted and documented the module and is currently
28 # responsible for its maintenance.
31 __version__ = "2.6"
34 # Imports
35 # =======
37 from operator import attrgetter
38 import sys
39 import os
40 import urllib
41 import mimetools
42 import rfc822
43 import UserDict
44 try:
45 from cStringIO import StringIO
46 except ImportError:
47 from StringIO import StringIO
49 __all__ = ["MiniFieldStorage", "FieldStorage", "FormContentDict",
50 "SvFormContentDict", "InterpFormContentDict", "FormContent",
51 "parse", "parse_qs", "parse_qsl", "parse_multipart",
52 "parse_header", "print_exception", "print_environ",
53 "print_form", "print_directory", "print_arguments",
54 "print_environ_usage", "escape"]
56 # Logging support
57 # ===============
59 logfile = "" # Filename to log to, if not empty
60 logfp = None # File object to log to, if not None
62 def initlog(*allargs):
63 """Write a log message, if there is a log file.
65 Even though this function is called initlog(), you should always
66 use log(); log is a variable that is set either to initlog
67 (initially), to dolog (once the log file has been opened), or to
68 nolog (when logging is disabled).
70 The first argument is a format string; the remaining arguments (if
71 any) are arguments to the % operator, so e.g.
72 log("%s: %s", "a", "b")
73 will write "a: b" to the log file, followed by a newline.
75 If the global logfp is not None, it should be a file object to
76 which log data is written.
78 If the global logfp is None, the global logfile may be a string
79 giving a filename to open, in append mode. This file should be
80 world writable!!! If the file can't be opened, logging is
81 silently disabled (since there is no safe place where we could
82 send an error message).
84 """
85 global logfp, log
86 if logfile and not logfp:
87 try:
88 logfp = open(logfile, "a")
89 except IOError:
90 pass
91 if not logfp:
92 log = nolog
93 else:
94 log = dolog
95 log(*allargs)
97 def dolog(fmt, *args):
98 """Write a log message to the log file. See initlog() for docs."""
99 logfp.write(fmt%args + "\n")
101 def nolog(*allargs):
102 """Dummy function, assigned to log when logging is disabled."""
103 pass
105 log = initlog # The current logging function
108 # Parsing functions
109 # =================
111 # Maximum input we will accept when REQUEST_METHOD is POST
112 # 0 ==> unlimited input
113 maxlen = 0
115 def parse(fp=None, environ=os.environ, keep_blank_values=0, strict_parsing=0):
116 """Parse a query in the environment or from a file (default stdin)
118 Arguments, all optional:
120 fp : file pointer; default: sys.stdin
122 environ : environment dictionary; default: os.environ
124 keep_blank_values: flag indicating whether blank values in
125 URL encoded forms should be treated as blank strings.
126 A true value indicates that blanks should be retained as
127 blank strings. The default false value indicates that
128 blank values are to be ignored and treated as if they were
129 not included.
131 strict_parsing: flag indicating what to do with parsing errors.
132 If false (the default), errors are silently ignored.
133 If true, errors raise a ValueError exception.
135 if fp is None:
136 fp = sys.stdin
137 if not 'REQUEST_METHOD' in environ:
138 environ['REQUEST_METHOD'] = 'GET' # For testing stand-alone
139 if environ['REQUEST_METHOD'] == 'POST':
140 ctype, pdict = parse_header(environ['CONTENT_TYPE'])
141 if ctype == 'multipart/form-data':
142 return parse_multipart(fp, pdict)
143 elif ctype == 'application/x-www-form-urlencoded':
144 clength = int(environ['CONTENT_LENGTH'])
145 if maxlen and clength > maxlen:
146 raise ValueError, 'Maximum content length exceeded'
147 qs = fp.read(clength)
148 else:
149 qs = '' # Unknown content-type
150 if 'QUERY_STRING' in environ:
151 if qs: qs = qs + '&'
152 qs = qs + environ['QUERY_STRING']
153 elif sys.argv[1:]:
154 if qs: qs = qs + '&'
155 qs = qs + sys.argv[1]
156 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
157 elif 'QUERY_STRING' in environ:
158 qs = environ['QUERY_STRING']
159 else:
160 if sys.argv[1:]:
161 qs = sys.argv[1]
162 else:
163 qs = ""
164 environ['QUERY_STRING'] = qs # XXX Shouldn't, really
165 return parse_qs(qs, keep_blank_values, strict_parsing)
168 def parse_qs(qs, keep_blank_values=0, strict_parsing=0):
169 """Parse a query given as a string argument.
171 Arguments:
173 qs: URL-encoded query string to be parsed
175 keep_blank_values: flag indicating whether blank values in
176 URL encoded queries should be treated as blank strings.
177 A true value indicates that blanks should be retained as
178 blank strings. The default false value indicates that
179 blank values are to be ignored and treated as if they were
180 not included.
182 strict_parsing: flag indicating what to do with parsing errors.
183 If false (the default), errors are silently ignored.
184 If true, errors raise a ValueError exception.
186 dict = {}
187 for name, value in parse_qsl(qs, keep_blank_values, strict_parsing):
188 if name in dict:
189 dict[name].append(value)
190 else:
191 dict[name] = [value]
192 return dict
194 def parse_qsl(qs, keep_blank_values=0, strict_parsing=0):
195 """Parse a query given as a string argument.
197 Arguments:
199 qs: URL-encoded query string to be parsed
201 keep_blank_values: flag indicating whether blank values in
202 URL encoded queries should be treated as blank strings. A
203 true value indicates that blanks should be retained as blank
204 strings. The default false value indicates that blank values
205 are to be ignored and treated as if they were not included.
207 strict_parsing: flag indicating what to do with parsing errors. If
208 false (the default), errors are silently ignored. If true,
209 errors raise a ValueError exception.
211 Returns a list, as G-d intended.
213 pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')]
214 r = []
215 for name_value in pairs:
216 if not name_value and not strict_parsing:
217 continue
218 nv = name_value.split('=', 1)
219 if len(nv) != 2:
220 if strict_parsing:
221 raise ValueError, "bad query field: %r" % (name_value,)
222 # Handle case of a control-name with no equal sign
223 if keep_blank_values:
224 nv.append('')
225 else:
226 continue
227 if len(nv[1]) or keep_blank_values:
228 name = urllib.unquote(nv[0].replace('+', ' '))
229 value = urllib.unquote(nv[1].replace('+', ' '))
230 r.append((name, value))
232 return r
235 def parse_multipart(fp, pdict):
236 """Parse multipart input.
238 Arguments:
239 fp : input file
240 pdict: dictionary containing other parameters of content-type header
242 Returns a dictionary just like parse_qs(): keys are the field names, each
243 value is a list of values for that field. This is easy to use but not
244 much good if you are expecting megabytes to be uploaded -- in that case,
245 use the FieldStorage class instead which is much more flexible. Note
246 that content-type is the raw, unparsed contents of the content-type
247 header.
249 XXX This does not parse nested multipart parts -- use FieldStorage for
250 that.
252 XXX This should really be subsumed by FieldStorage altogether -- no
253 point in having two implementations of the same parsing algorithm.
254 Also, FieldStorage protects itself better against certain DoS attacks
255 by limiting the size of the data read in one chunk. The API here
256 does not support that kind of protection. This also affects parse()
257 since it can call parse_multipart().
260 boundary = ""
261 if 'boundary' in pdict:
262 boundary = pdict['boundary']
263 if not valid_boundary(boundary):
264 raise ValueError, ('Invalid boundary in multipart form: %r'
265 % (boundary,))
267 nextpart = "--" + boundary
268 lastpart = "--" + boundary + "--"
269 partdict = {}
270 terminator = ""
272 while terminator != lastpart:
273 bytes = -1
274 data = None
275 if terminator:
276 # At start of next part. Read headers first.
277 headers = mimetools.Message(fp)
278 clength = headers.getheader('content-length')
279 if clength:
280 try:
281 bytes = int(clength)
282 except ValueError:
283 pass
284 if bytes > 0:
285 if maxlen and bytes > maxlen:
286 raise ValueError, 'Maximum content length exceeded'
287 data = fp.read(bytes)
288 else:
289 data = ""
290 # Read lines until end of part.
291 lines = []
292 while 1:
293 line = fp.readline()
294 if not line:
295 terminator = lastpart # End outer loop
296 break
297 if line[:2] == "--":
298 terminator = line.strip()
299 if terminator in (nextpart, lastpart):
300 break
301 lines.append(line)
302 # Done with part.
303 if data is None:
304 continue
305 if bytes < 0:
306 if lines:
307 # Strip final line terminator
308 line = lines[-1]
309 if line[-2:] == "\r\n":
310 line = line[:-2]
311 elif line[-1:] == "\n":
312 line = line[:-1]
313 lines[-1] = line
314 data = "".join(lines)
315 line = headers['content-disposition']
316 if not line:
317 continue
318 key, params = parse_header(line)
319 if key != 'form-data':
320 continue
321 if 'name' in params:
322 name = params['name']
323 else:
324 continue
325 if name in partdict:
326 partdict[name].append(data)
327 else:
328 partdict[name] = [data]
330 return partdict
333 def parse_header(line):
334 """Parse a Content-type like header.
336 Return the main content-type and a dictionary of options.
339 plist = [x.strip() for x in line.split(';')]
340 key = plist.pop(0).lower()
341 pdict = {}
342 for p in plist:
343 i = p.find('=')
344 if i >= 0:
345 name = p[:i].strip().lower()
346 value = p[i+1:].strip()
347 if len(value) >= 2 and value[0] == value[-1] == '"':
348 value = value[1:-1]
349 value = value.replace('\\\\', '\\').replace('\\"', '"')
350 pdict[name] = value
351 return key, pdict
354 # Classes for field storage
355 # =========================
357 class MiniFieldStorage:
359 """Like FieldStorage, for use when no file uploads are possible."""
361 # Dummy attributes
362 filename = None
363 list = None
364 type = None
365 file = None
366 type_options = {}
367 disposition = None
368 disposition_options = {}
369 headers = {}
371 def __init__(self, name, value):
372 """Constructor from field name and value."""
373 self.name = name
374 self.value = value
375 # self.file = StringIO(value)
377 def __repr__(self):
378 """Return printable representation."""
379 return "MiniFieldStorage(%r, %r)" % (self.name, self.value)
382 class FieldStorage:
384 """Store a sequence of fields, reading multipart/form-data.
386 This class provides naming, typing, files stored on disk, and
387 more. At the top level, it is accessible like a dictionary, whose
388 keys are the field names. (Note: None can occur as a field name.)
389 The items are either a Python list (if there's multiple values) or
390 another FieldStorage or MiniFieldStorage object. If it's a single
391 object, it has the following attributes:
393 name: the field name, if specified; otherwise None
395 filename: the filename, if specified; otherwise None; this is the
396 client side filename, *not* the file name on which it is
397 stored (that's a temporary file you don't deal with)
399 value: the value as a *string*; for file uploads, this
400 transparently reads the file every time you request the value
402 file: the file(-like) object from which you can read the data;
403 None if the data is stored a simple string
405 type: the content-type, or None if not specified
407 type_options: dictionary of options specified on the content-type
408 line
410 disposition: content-disposition, or None if not specified
412 disposition_options: dictionary of corresponding options
414 headers: a dictionary(-like) object (sometimes rfc822.Message or a
415 subclass thereof) containing *all* headers
417 The class is subclassable, mostly for the purpose of overriding
418 the make_file() method, which is called internally to come up with
419 a file open for reading and writing. This makes it possible to
420 override the default choice of storing all files in a temporary
421 directory and unlinking them as soon as they have been opened.
425 def __init__(self, fp=None, headers=None, outerboundary="",
426 environ=os.environ, keep_blank_values=0, strict_parsing=0):
427 """Constructor. Read multipart/* until last part.
429 Arguments, all optional:
431 fp : file pointer; default: sys.stdin
432 (not used when the request method is GET)
434 headers : header dictionary-like object; default:
435 taken from environ as per CGI spec
437 outerboundary : terminating multipart boundary
438 (for internal use only)
440 environ : environment dictionary; default: os.environ
442 keep_blank_values: flag indicating whether blank values in
443 URL encoded forms should be treated as blank strings.
444 A true value indicates that blanks should be retained as
445 blank strings. The default false value indicates that
446 blank values are to be ignored and treated as if they were
447 not included.
449 strict_parsing: flag indicating what to do with parsing errors.
450 If false (the default), errors are silently ignored.
451 If true, errors raise a ValueError exception.
454 method = 'GET'
455 self.keep_blank_values = keep_blank_values
456 self.strict_parsing = strict_parsing
457 if 'REQUEST_METHOD' in environ:
458 method = environ['REQUEST_METHOD'].upper()
459 if method == 'GET' or method == 'HEAD':
460 if 'QUERY_STRING' in environ:
461 qs = environ['QUERY_STRING']
462 elif sys.argv[1:]:
463 qs = sys.argv[1]
464 else:
465 qs = ""
466 fp = StringIO(qs)
467 if headers is None:
468 headers = {'content-type':
469 "application/x-www-form-urlencoded"}
470 if headers is None:
471 headers = {}
472 if method == 'POST':
473 # Set default content-type for POST to what's traditional
474 headers['content-type'] = "application/x-www-form-urlencoded"
475 if 'CONTENT_TYPE' in environ:
476 headers['content-type'] = environ['CONTENT_TYPE']
477 if 'CONTENT_LENGTH' in environ:
478 headers['content-length'] = environ['CONTENT_LENGTH']
479 self.fp = fp or sys.stdin
480 self.headers = headers
481 self.outerboundary = outerboundary
483 # Process content-disposition header
484 cdisp, pdict = "", {}
485 if 'content-disposition' in self.headers:
486 cdisp, pdict = parse_header(self.headers['content-disposition'])
487 self.disposition = cdisp
488 self.disposition_options = pdict
489 self.name = None
490 if 'name' in pdict:
491 self.name = pdict['name']
492 self.filename = None
493 if 'filename' in pdict:
494 self.filename = pdict['filename']
496 # Process content-type header
498 # Honor any existing content-type header. But if there is no
499 # content-type header, use some sensible defaults. Assume
500 # outerboundary is "" at the outer level, but something non-false
501 # inside a multi-part. The default for an inner part is text/plain,
502 # but for an outer part it should be urlencoded. This should catch
503 # bogus clients which erroneously forget to include a content-type
504 # header.
506 # See below for what we do if there does exist a content-type header,
507 # but it happens to be something we don't understand.
508 if 'content-type' in self.headers:
509 ctype, pdict = parse_header(self.headers['content-type'])
510 elif self.outerboundary or method != 'POST':
511 ctype, pdict = "text/plain", {}
512 else:
513 ctype, pdict = 'application/x-www-form-urlencoded', {}
514 self.type = ctype
515 self.type_options = pdict
516 self.innerboundary = ""
517 if 'boundary' in pdict:
518 self.innerboundary = pdict['boundary']
519 clen = -1
520 if 'content-length' in self.headers:
521 try:
522 clen = int(self.headers['content-length'])
523 except ValueError:
524 pass
525 if maxlen and clen > maxlen:
526 raise ValueError, 'Maximum content length exceeded'
527 self.length = clen
529 self.list = self.file = None
530 self.done = 0
531 if ctype == 'application/x-www-form-urlencoded':
532 self.read_urlencoded()
533 elif ctype[:10] == 'multipart/':
534 self.read_multi(environ, keep_blank_values, strict_parsing)
535 else:
536 self.read_single()
538 def __repr__(self):
539 """Return a printable representation."""
540 return "FieldStorage(%r, %r, %r)" % (
541 self.name, self.filename, self.value)
543 def __iter__(self):
544 return iter(self.keys())
546 def __getattr__(self, name):
547 if name != 'value':
548 raise AttributeError, name
549 if self.file:
550 self.file.seek(0)
551 value = self.file.read()
552 self.file.seek(0)
553 elif self.list is not None:
554 value = self.list
555 else:
556 value = None
557 return value
559 def __getitem__(self, key):
560 """Dictionary style indexing."""
561 if self.list is None:
562 raise TypeError, "not indexable"
563 found = []
564 for item in self.list:
565 if item.name == key: found.append(item)
566 if not found:
567 raise KeyError, key
568 if len(found) == 1:
569 return found[0]
570 else:
571 return found
573 def getvalue(self, key, default=None):
574 """Dictionary style get() method, including 'value' lookup."""
575 if key in self:
576 value = self[key]
577 if type(value) is type([]):
578 return map(attrgetter('value'), value)
579 else:
580 return value.value
581 else:
582 return default
584 def getfirst(self, key, default=None):
585 """ Return the first value received."""
586 if key in self:
587 value = self[key]
588 if type(value) is type([]):
589 return value[0].value
590 else:
591 return value.value
592 else:
593 return default
595 def getlist(self, key):
596 """ Return list of received values."""
597 if key in self:
598 value = self[key]
599 if type(value) is type([]):
600 return map(attrgetter('value'), value)
601 else:
602 return [value.value]
603 else:
604 return []
606 def keys(self):
607 """Dictionary style keys() method."""
608 if self.list is None:
609 raise TypeError, "not indexable"
610 keys = []
611 for item in self.list:
612 if item.name not in keys: keys.append(item.name)
613 return keys
615 def has_key(self, key):
616 """Dictionary style has_key() method."""
617 if self.list is None:
618 raise TypeError, "not indexable"
619 for item in self.list:
620 if item.name == key: return True
621 return False
623 def __contains__(self, key):
624 """Dictionary style __contains__ method."""
625 if self.list is None:
626 raise TypeError, "not indexable"
627 for item in self.list:
628 if item.name == key: return True
629 return False
631 def __len__(self):
632 """Dictionary style len(x) support."""
633 return len(self.keys())
635 def read_urlencoded(self):
636 """Internal: read data in query string format."""
637 qs = self.fp.read(self.length)
638 self.list = list = []
639 for key, value in parse_qsl(qs, self.keep_blank_values,
640 self.strict_parsing):
641 list.append(MiniFieldStorage(key, value))
642 self.skip_lines()
644 FieldStorageClass = None
646 def read_multi(self, environ, keep_blank_values, strict_parsing):
647 """Internal: read a part that is itself multipart."""
648 ib = self.innerboundary
649 if not valid_boundary(ib):
650 raise ValueError, 'Invalid boundary in multipart form: %r' % (ib,)
651 self.list = []
652 klass = self.FieldStorageClass or self.__class__
653 part = klass(self.fp, {}, ib,
654 environ, keep_blank_values, strict_parsing)
655 # Throw first part away
656 while not part.done:
657 headers = rfc822.Message(self.fp)
658 part = klass(self.fp, headers, ib,
659 environ, keep_blank_values, strict_parsing)
660 self.list.append(part)
661 self.skip_lines()
663 def read_single(self):
664 """Internal: read an atomic part."""
665 if self.length >= 0:
666 self.read_binary()
667 self.skip_lines()
668 else:
669 self.read_lines()
670 self.file.seek(0)
672 bufsize = 8*1024 # I/O buffering size for copy to file
674 def read_binary(self):
675 """Internal: read binary data."""
676 self.file = self.make_file('b')
677 todo = self.length
678 if todo >= 0:
679 while todo > 0:
680 data = self.fp.read(min(todo, self.bufsize))
681 if not data:
682 self.done = -1
683 break
684 self.file.write(data)
685 todo = todo - len(data)
687 def read_lines(self):
688 """Internal: read lines until EOF or outerboundary."""
689 self.file = self.__file = StringIO()
690 if self.outerboundary:
691 self.read_lines_to_outerboundary()
692 else:
693 self.read_lines_to_eof()
695 def __write(self, line):
696 if self.__file is not None:
697 if self.__file.tell() + len(line) > 1000:
698 self.file = self.make_file('')
699 self.file.write(self.__file.getvalue())
700 self.__file = None
701 self.file.write(line)
703 def read_lines_to_eof(self):
704 """Internal: read lines until EOF."""
705 while 1:
706 line = self.fp.readline(1<<16)
707 if not line:
708 self.done = -1
709 break
710 self.__write(line)
712 def read_lines_to_outerboundary(self):
713 """Internal: read lines until outerboundary."""
714 next = "--" + self.outerboundary
715 last = next + "--"
716 delim = ""
717 last_line_lfend = True
718 while 1:
719 line = self.fp.readline(1<<16)
720 if not line:
721 self.done = -1
722 break
723 if line[:2] == "--" and last_line_lfend:
724 strippedline = line.strip()
725 if strippedline == next:
726 break
727 if strippedline == last:
728 self.done = 1
729 break
730 odelim = delim
731 if line[-2:] == "\r\n":
732 delim = "\r\n"
733 line = line[:-2]
734 last_line_lfend = True
735 elif line[-1] == "\n":
736 delim = "\n"
737 line = line[:-1]
738 last_line_lfend = True
739 else:
740 delim = ""
741 last_line_lfend = False
742 self.__write(odelim + line)
744 def skip_lines(self):
745 """Internal: skip lines until outer boundary if defined."""
746 if not self.outerboundary or self.done:
747 return
748 next = "--" + self.outerboundary
749 last = next + "--"
750 last_line_lfend = True
751 while 1:
752 line = self.fp.readline(1<<16)
753 if not line:
754 self.done = -1
755 break
756 if line[:2] == "--" and last_line_lfend:
757 strippedline = line.strip()
758 if strippedline == next:
759 break
760 if strippedline == last:
761 self.done = 1
762 break
763 last_line_lfend = line.endswith('\n')
765 def make_file(self, binary=None):
766 """Overridable: return a readable & writable file.
768 The file will be used as follows:
769 - data is written to it
770 - seek(0)
771 - data is read from it
773 The 'binary' argument is unused -- the file is always opened
774 in binary mode.
776 This version opens a temporary file for reading and writing,
777 and immediately deletes (unlinks) it. The trick (on Unix!) is
778 that the file can still be used, but it can't be opened by
779 another process, and it will automatically be deleted when it
780 is closed or when the current process terminates.
782 If you want a more permanent file, you derive a class which
783 overrides this method. If you want a visible temporary file
784 that is nevertheless automatically deleted when the script
785 terminates, try defining a __del__ method in a derived class
786 which unlinks the temporary files you have created.
789 import tempfile
790 return tempfile.TemporaryFile("w+b")
794 # Backwards Compatibility Classes
795 # ===============================
797 class FormContentDict(UserDict.UserDict):
798 """Form content as dictionary with a list of values per field.
800 form = FormContentDict()
802 form[key] -> [value, value, ...]
803 key in form -> Boolean
804 form.keys() -> [key, key, ...]
805 form.values() -> [[val, val, ...], [val, val, ...], ...]
806 form.items() -> [(key, [val, val, ...]), (key, [val, val, ...]), ...]
807 form.dict == {key: [val, val, ...], ...}
810 def __init__(self, environ=os.environ, keep_blank_values=0, strict_parsing=0):
811 self.dict = self.data = parse(environ=environ,
812 keep_blank_values=keep_blank_values,
813 strict_parsing=strict_parsing)
814 self.query_string = environ['QUERY_STRING']
817 class SvFormContentDict(FormContentDict):
818 """Form content as dictionary expecting a single value per field.
820 If you only expect a single value for each field, then form[key]
821 will return that single value. It will raise an IndexError if
822 that expectation is not true. If you expect a field to have
823 possible multiple values, than you can use form.getlist(key) to
824 get all of the values. values() and items() are a compromise:
825 they return single strings where there is a single value, and
826 lists of strings otherwise.
829 def __getitem__(self, key):
830 if len(self.dict[key]) > 1:
831 raise IndexError, 'expecting a single value'
832 return self.dict[key][0]
833 def getlist(self, key):
834 return self.dict[key]
835 def values(self):
836 result = []
837 for value in self.dict.values():
838 if len(value) == 1:
839 result.append(value[0])
840 else: result.append(value)
841 return result
842 def items(self):
843 result = []
844 for key, value in self.dict.items():
845 if len(value) == 1:
846 result.append((key, value[0]))
847 else: result.append((key, value))
848 return result
851 class InterpFormContentDict(SvFormContentDict):
852 """This class is present for backwards compatibility only."""
853 def __getitem__(self, key):
854 v = SvFormContentDict.__getitem__(self, key)
855 if v[0] in '0123456789+-.':
856 try: return int(v)
857 except ValueError:
858 try: return float(v)
859 except ValueError: pass
860 return v.strip()
861 def values(self):
862 result = []
863 for key in self.keys():
864 try:
865 result.append(self[key])
866 except IndexError:
867 result.append(self.dict[key])
868 return result
869 def items(self):
870 result = []
871 for key in self.keys():
872 try:
873 result.append((key, self[key]))
874 except IndexError:
875 result.append((key, self.dict[key]))
876 return result
879 class FormContent(FormContentDict):
880 """This class is present for backwards compatibility only."""
881 def values(self, key):
882 if key in self.dict :return self.dict[key]
883 else: return None
884 def indexed_value(self, key, location):
885 if key in self.dict:
886 if len(self.dict[key]) > location:
887 return self.dict[key][location]
888 else: return None
889 else: return None
890 def value(self, key):
891 if key in self.dict: return self.dict[key][0]
892 else: return None
893 def length(self, key):
894 return len(self.dict[key])
895 def stripped(self, key):
896 if key in self.dict: return self.dict[key][0].strip()
897 else: return None
898 def pars(self):
899 return self.dict
902 # Test/debug code
903 # ===============
905 def test(environ=os.environ):
906 """Robust test CGI script, usable as main program.
908 Write minimal HTTP headers and dump all information provided to
909 the script in HTML form.
912 print "Content-type: text/html"
913 print
914 sys.stderr = sys.stdout
915 try:
916 form = FieldStorage() # Replace with other classes to test those
917 print_directory()
918 print_arguments()
919 print_form(form)
920 print_environ(environ)
921 print_environ_usage()
922 def f():
923 exec "testing print_exception() -- <I>italics?</I>"
924 def g(f=f):
926 print "<H3>What follows is a test, not an actual exception:</H3>"
928 except:
929 print_exception()
931 print "<H1>Second try with a small maxlen...</H1>"
933 global maxlen
934 maxlen = 50
935 try:
936 form = FieldStorage() # Replace with other classes to test those
937 print_directory()
938 print_arguments()
939 print_form(form)
940 print_environ(environ)
941 except:
942 print_exception()
944 def print_exception(type=None, value=None, tb=None, limit=None):
945 if type is None:
946 type, value, tb = sys.exc_info()
947 import traceback
948 print
949 print "<H3>Traceback (most recent call last):</H3>"
950 list = traceback.format_tb(tb, limit) + \
951 traceback.format_exception_only(type, value)
952 print "<PRE>%s<B>%s</B></PRE>" % (
953 escape("".join(list[:-1])),
954 escape(list[-1]),
956 del tb
958 def print_environ(environ=os.environ):
959 """Dump the shell environment as HTML."""
960 keys = environ.keys()
961 keys.sort()
962 print
963 print "<H3>Shell Environment:</H3>"
964 print "<DL>"
965 for key in keys:
966 print "<DT>", escape(key), "<DD>", escape(environ[key])
967 print "</DL>"
968 print
970 def print_form(form):
971 """Dump the contents of a form as HTML."""
972 keys = form.keys()
973 keys.sort()
974 print
975 print "<H3>Form Contents:</H3>"
976 if not keys:
977 print "<P>No form fields."
978 print "<DL>"
979 for key in keys:
980 print "<DT>" + escape(key) + ":",
981 value = form[key]
982 print "<i>" + escape(repr(type(value))) + "</i>"
983 print "<DD>" + escape(repr(value))
984 print "</DL>"
985 print
987 def print_directory():
988 """Dump the current directory as HTML."""
989 print
990 print "<H3>Current Working Directory:</H3>"
991 try:
992 pwd = os.getcwd()
993 except os.error, msg:
994 print "os.error:", escape(str(msg))
995 else:
996 print escape(pwd)
997 print
999 def print_arguments():
1000 print
1001 print "<H3>Command Line Arguments:</H3>"
1002 print
1003 print sys.argv
1004 print
1006 def print_environ_usage():
1007 """Dump a list of environment variables used by CGI as HTML."""
1008 print """
1009 <H3>These environment variables could have been set:</H3>
1010 <UL>
1011 <LI>AUTH_TYPE
1012 <LI>CONTENT_LENGTH
1013 <LI>CONTENT_TYPE
1014 <LI>DATE_GMT
1015 <LI>DATE_LOCAL
1016 <LI>DOCUMENT_NAME
1017 <LI>DOCUMENT_ROOT
1018 <LI>DOCUMENT_URI
1019 <LI>GATEWAY_INTERFACE
1020 <LI>LAST_MODIFIED
1021 <LI>PATH
1022 <LI>PATH_INFO
1023 <LI>PATH_TRANSLATED
1024 <LI>QUERY_STRING
1025 <LI>REMOTE_ADDR
1026 <LI>REMOTE_HOST
1027 <LI>REMOTE_IDENT
1028 <LI>REMOTE_USER
1029 <LI>REQUEST_METHOD
1030 <LI>SCRIPT_NAME
1031 <LI>SERVER_NAME
1032 <LI>SERVER_PORT
1033 <LI>SERVER_PROTOCOL
1034 <LI>SERVER_ROOT
1035 <LI>SERVER_SOFTWARE
1036 </UL>
1037 In addition, HTTP headers sent by the server may be passed in the
1038 environment as well. Here are some common variable names:
1039 <UL>
1040 <LI>HTTP_ACCEPT
1041 <LI>HTTP_CONNECTION
1042 <LI>HTTP_HOST
1043 <LI>HTTP_PRAGMA
1044 <LI>HTTP_REFERER
1045 <LI>HTTP_USER_AGENT
1046 </UL>
1050 # Utilities
1051 # =========
1053 def escape(s, quote=None):
1054 '''Replace special characters "&", "<" and ">" to HTML-safe sequences.
1055 If the optional flag quote is true, the quotation mark character (")
1056 is also translated.'''
1057 s = s.replace("&", "&amp;") # Must be done first!
1058 s = s.replace("<", "&lt;")
1059 s = s.replace(">", "&gt;")
1060 if quote:
1061 s = s.replace('"', "&quot;")
1062 return s
1064 def valid_boundary(s, _vb_pattern="^[ -~]{0,200}[!-~]$"):
1065 import re
1066 return re.match(_vb_pattern, s)
1068 # Invoke mainline
1069 # ===============
1071 # Call test() when this file is run as a script (not imported as a module)
1072 if __name__ == '__main__':
1073 test()