home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activepython / ActivePython-2.1.1.msi / Python21_Lib_cgi.py < prev    next >
Encoding:
Python Source  |  2001-07-26  |  32.7 KB  |  1,001 lines

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