Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 1 | \section{\module{cgi} --- |
| 2 | Common Gateway Interface support.} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 3 | \declaremodule{standard}{cgi} |
| 4 | |
Fred Drake | 295da24 | 1998-08-10 19:42:37 +0000 | [diff] [blame] | 5 | \modulesynopsis{Common Gateway Interface support, used to interpret |
| 6 | forms in server-side scripts.} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 8 | \indexii{WWW}{server} |
| 9 | \indexii{CGI}{protocol} |
| 10 | \indexii{HTTP}{protocol} |
| 11 | \indexii{MIME}{headers} |
| 12 | \index{URL} |
| 13 | |
Guido van Rossum | 8675115 | 1995-02-28 17:14:32 +0000 | [diff] [blame] | 14 | |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 15 | Support module for Common Gateway Interface (CGI) scripts.% |
Fred Drake | 6a79be8 | 1998-04-03 03:47:03 +0000 | [diff] [blame] | 16 | \index{Common Gateway Interface} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 17 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 18 | This module defines a number of utilities for use by CGI scripts |
| 19 | written in Python. |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 20 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 21 | \subsection{Introduction} |
Fred Drake | 12d9fc9 | 1998-04-14 17:19:54 +0000 | [diff] [blame] | 22 | \nodename{cgi-intro} |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 23 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 24 | A CGI script is invoked by an HTTP server, usually to process user |
Fred Drake | 637af13 | 1998-08-21 20:02:06 +0000 | [diff] [blame] | 25 | input submitted through an HTML \code{<FORM>} or \code{<ISINDEX>} element. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 26 | |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 27 | Most often, CGI scripts live in the server's special \file{cgi-bin} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 28 | directory. The HTTP server places all sorts of information about the |
| 29 | request (such as the client's hostname, the requested URL, the query |
| 30 | string, and lots of other goodies) in the script's shell environment, |
| 31 | executes the script, and sends the script's output back to the client. |
| 32 | |
| 33 | The script's input is connected to the client too, and sometimes the |
| 34 | form data is read this way; at other times the form data is passed via |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 35 | the ``query string'' part of the URL. This module is intended |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 36 | to take care of the different cases and provide a simpler interface to |
| 37 | the Python script. It also provides a number of utilities that help |
| 38 | in debugging scripts, and the latest addition is support for file |
Georg Brandl | 95ac287 | 2006-01-22 13:49:21 +0000 | [diff] [blame] | 39 | uploads from a form (if your browser supports it). |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 40 | |
| 41 | The output of a CGI script should consist of two sections, separated |
| 42 | by a blank line. The first section contains a number of headers, |
| 43 | telling the client what kind of data is following. Python code to |
| 44 | generate a minimal header section looks like this: |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 45 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 46 | \begin{verbatim} |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 47 | print "Content-Type: text/html" # HTML is following |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 48 | print # blank line, end of headers |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 49 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 50 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 51 | The second section is usually HTML, which allows the client software |
| 52 | to display nicely formatted text with header, in-line images, etc. |
| 53 | Here's Python code that prints a simple piece of HTML: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 54 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 55 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 56 | print "<TITLE>CGI script output</TITLE>" |
| 57 | print "<H1>This is my first CGI script</H1>" |
| 58 | print "Hello, world!" |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 59 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 60 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 61 | \subsection{Using the cgi module} |
| 62 | \nodename{Using the cgi module} |
| 63 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 64 | Begin by writing \samp{import cgi}. Do not use \samp{from cgi import |
| 65 | *} --- the module defines all sorts of names for its own use or for |
| 66 | backward compatibility that you don't want in your namespace. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 67 | |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 68 | When you write a new script, consider adding the line: |
| 69 | |
| 70 | \begin{verbatim} |
| 71 | import cgitb; cgitb.enable() |
| 72 | \end{verbatim} |
| 73 | |
| 74 | This activates a special exception handler that will display detailed |
| 75 | reports in the Web browser if any errors occur. If you'd rather not |
| 76 | show the guts of your program to users of your script, you can have |
| 77 | the reports saved to files instead, with a line like this: |
| 78 | |
| 79 | \begin{verbatim} |
| 80 | import cgitb; cgitb.enable(display=0, logdir="/tmp") |
| 81 | \end{verbatim} |
| 82 | |
| 83 | It's very helpful to use this feature during script development. |
| 84 | The reports produced by \refmodule{cgitb} provide information that |
| 85 | can save you a lot of time in tracking down bugs. You can always |
| 86 | remove the \code{cgitb} line later when you have tested your script |
| 87 | and are confident that it works correctly. |
| 88 | |
| 89 | To get at submitted form data, |
| 90 | it's best to use the \class{FieldStorage} class. The other classes |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 91 | defined in this module are provided mostly for backward compatibility. |
| 92 | Instantiate it exactly once, without arguments. This reads the form |
| 93 | contents from standard input or the environment (depending on the |
| 94 | value of various environment variables set according to the CGI |
| 95 | standard). Since it may consume standard input, it should be |
| 96 | instantiated only once. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 97 | |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 98 | The \class{FieldStorage} instance can be indexed like a Python |
| 99 | dictionary, and also supports the standard dictionary methods |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 100 | \method{has_key()} and \method{keys()}. The built-in \function{len()} |
| 101 | is also supported. Form fields containing empty strings are ignored |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 102 | and do not appear in the dictionary; to keep such values, provide |
Raymond Hettinger | f17d65d | 2003-08-12 00:01:16 +0000 | [diff] [blame] | 103 | a true value for the optional \var{keep_blank_values} keyword |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 104 | parameter when creating the \class{FieldStorage} instance. |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 105 | |
| 106 | For instance, the following code (which assumes that the |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 107 | \mailheader{Content-Type} header and blank line have already been |
| 108 | printed) checks that the fields \code{name} and \code{addr} are both |
| 109 | set to a non-empty string: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 110 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 111 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 112 | form = cgi.FieldStorage() |
Fred Drake | 9f9bd6a | 2001-06-29 14:59:01 +0000 | [diff] [blame] | 113 | if not (form.has_key("name") and form.has_key("addr")): |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 114 | print "<H1>Error</H1>" |
| 115 | print "Please fill in the name and addr fields." |
| 116 | return |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 117 | print "<p>name:", form["name"].value |
| 118 | print "<p>addr:", form["addr"].value |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 119 | ...further form processing here... |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 120 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 121 | |
| 122 | Here the fields, accessed through \samp{form[\var{key}]}, are |
| 123 | themselves instances of \class{FieldStorage} (or |
| 124 | \class{MiniFieldStorage}, depending on the form encoding). |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 125 | The \member{value} attribute of the instance yields the string value |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 126 | of the field. The \method{getvalue()} method returns this string value |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 127 | directly; it also accepts an optional second argument as a default to |
| 128 | return if the requested key is not present. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 129 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 130 | If the submitted form data contains more than one field with the same |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 131 | name, the object retrieved by \samp{form[\var{key}]} is not a |
| 132 | \class{FieldStorage} or \class{MiniFieldStorage} |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 133 | instance but a list of such instances. Similarly, in this situation, |
| 134 | \samp{form.getvalue(\var{key})} would return a list of strings. |
| 135 | If you expect this possibility |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 136 | (when your HTML form contains multiple fields with the same name), use |
Andrew M. Kuchling | 44cbfd7 | 2004-06-06 23:28:23 +0000 | [diff] [blame] | 137 | the \function{getlist()} function, which always returns a list of values (so that you |
| 138 | do not need to special-case the single item case). For example, this |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 139 | code concatenates any number of username fields, separated by |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 140 | commas: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 141 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 142 | \begin{verbatim} |
Andrew M. Kuchling | 44cbfd7 | 2004-06-06 23:28:23 +0000 | [diff] [blame] | 143 | value = form.getlist("username") |
| 144 | usernames = ",".join(value) |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 145 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 146 | |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 147 | If a field represents an uploaded file, accessing the value via the |
| 148 | \member{value} attribute or the \function{getvalue()} method reads the |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 149 | entire file in memory as a string. This may not be what you want. |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 150 | You can test for an uploaded file by testing either the \member{filename} |
| 151 | attribute or the \member{file} attribute. You can then read the data at |
| 152 | leisure from the \member{file} attribute: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 153 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 154 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 155 | fileitem = form["userfile"] |
| 156 | if fileitem.file: |
| 157 | # It's an uploaded file; count lines |
| 158 | linecount = 0 |
| 159 | while 1: |
| 160 | line = fileitem.file.readline() |
| 161 | if not line: break |
| 162 | linecount = linecount + 1 |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 163 | \end{verbatim} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 164 | |
Sean Reifscheider | 5e84e80 | 2007-09-18 23:38:15 +0000 | [diff] [blame^] | 165 | If an error is encountered when obtaining the contents of an uploaded file |
| 166 | (for example, when the user interrupts the form submission by clicking on |
| 167 | a Back or Cancel button) the \member{done} attribute of the object for the |
| 168 | field will be set to the value -1. |
| 169 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 170 | The file upload draft standard entertains the possibility of uploading |
| 171 | multiple files from one field (using a recursive |
| 172 | \mimetype{multipart/*} encoding). When this occurs, the item will be |
| 173 | a dictionary-like \class{FieldStorage} item. This can be determined |
| 174 | by testing its \member{type} attribute, which should be |
| 175 | \mimetype{multipart/form-data} (or perhaps another MIME type matching |
Fred Drake | 7eca8e5 | 1999-01-18 15:46:02 +0000 | [diff] [blame] | 176 | \mimetype{multipart/*}). In this case, it can be iterated over |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 177 | recursively just like the top-level form object. |
| 178 | |
| 179 | When a form is submitted in the ``old'' format (as the query string or |
| 180 | as a single data part of type |
| 181 | \mimetype{application/x-www-form-urlencoded}), the items will actually |
| 182 | be instances of the class \class{MiniFieldStorage}. In this case, the |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 183 | \member{list}, \member{file}, and \member{filename} attributes are |
| 184 | always \code{None}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 185 | |
| 186 | |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 187 | \subsection{Higher Level Interface} |
| 188 | |
| 189 | \versionadded{2.2} % XXX: Is this true ? |
| 190 | |
| 191 | The previous section explains how to read CGI form data using the |
| 192 | \class{FieldStorage} class. This section describes a higher level |
| 193 | interface which was added to this class to allow one to do it in a |
| 194 | more readable and intuitive way. The interface doesn't make the |
| 195 | techniques described in previous sections obsolete --- they are still |
| 196 | useful to process file uploads efficiently, for example. |
| 197 | |
| 198 | The interface consists of two simple methods. Using the methods |
| 199 | you can process form data in a generic way, without the need to worry |
| 200 | whether only one or more values were posted under one name. |
| 201 | |
| 202 | In the previous section, you learned to write following code anytime |
| 203 | you expected a user to post more than one value under one name: |
| 204 | |
| 205 | \begin{verbatim} |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 206 | item = form.getvalue("item") |
Fred Drake | 5b09eee | 2002-08-21 19:24:21 +0000 | [diff] [blame] | 207 | if isinstance(item, list): |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 208 | # The user is requesting more than one item. |
| 209 | else: |
| 210 | # The user is requesting only one item. |
| 211 | \end{verbatim} |
| 212 | |
| 213 | This situation is common for example when a form contains a group of |
| 214 | multiple checkboxes with the same name: |
| 215 | |
| 216 | \begin{verbatim} |
| 217 | <input type="checkbox" name="item" value="1" /> |
| 218 | <input type="checkbox" name="item" value="2" /> |
| 219 | \end{verbatim} |
| 220 | |
| 221 | In most situations, however, there's only one form control with a |
| 222 | particular name in a form and then you expect and need only one value |
| 223 | associated with this name. So you write a script containing for |
| 224 | example this code: |
| 225 | |
| 226 | \begin{verbatim} |
Fred Drake | 226f697 | 2004-01-23 04:05:27 +0000 | [diff] [blame] | 227 | user = form.getvalue("user").upper() |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 228 | \end{verbatim} |
| 229 | |
| 230 | The problem with the code is that you should never expect that a |
| 231 | client will provide valid input to your scripts. For example, if a |
| 232 | curious user appends another \samp{user=foo} pair to the query string, |
| 233 | then the script would crash, because in this situation the |
| 234 | \code{getvalue("user")} method call returns a list instead of a |
| 235 | string. Calling the \method{toupper()} method on a list is not valid |
| 236 | (since lists do not have a method of this name) and results in an |
| 237 | \exception{AttributeError} exception. |
| 238 | |
| 239 | Therefore, the appropriate way to read form data values was to always |
| 240 | use the code which checks whether the obtained value is a single value |
| 241 | or a list of values. That's annoying and leads to less readable |
| 242 | scripts. |
| 243 | |
| 244 | A more convenient approach is to use the methods \method{getfirst()} |
| 245 | and \method{getlist()} provided by this higher level interface. |
| 246 | |
| 247 | \begin{methoddesc}[FieldStorage]{getfirst}{name\optional{, default}} |
Raymond Hettinger | 0d278b8 | 2004-07-10 11:15:56 +0000 | [diff] [blame] | 248 | This method always returns only one value associated with form field |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 249 | \var{name}. The method returns only the first value in case that |
| 250 | more values were posted under such name. Please note that the order |
| 251 | in which the values are received may vary from browser to browser |
Fred Drake | 5b09eee | 2002-08-21 19:24:21 +0000 | [diff] [blame] | 252 | and should not be counted on.\footnote{Note that some recent |
| 253 | versions of the HTML specification do state what order the |
| 254 | field values should be supplied in, but knowing whether a |
| 255 | request was received from a conforming browser, or even from a |
| 256 | browser at all, is tedious and error-prone.} If no such form |
| 257 | field or value exists then the method returns the value specified by |
| 258 | the optional parameter \var{default}. This parameter defaults to |
| 259 | \code{None} if not specified. |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 260 | \end{methoddesc} |
| 261 | |
| 262 | \begin{methoddesc}[FieldStorage]{getlist}{name} |
| 263 | This method always returns a list of values associated with form |
| 264 | field \var{name}. The method returns an empty list if no such form |
| 265 | field or value exists for \var{name}. It returns a list consisting |
| 266 | of one item if only one such value exists. |
| 267 | \end{methoddesc} |
| 268 | |
| 269 | Using these methods you can write nice compact code: |
| 270 | |
| 271 | \begin{verbatim} |
| 272 | import cgi |
| 273 | form = cgi.FieldStorage() |
Fred Drake | 226f697 | 2004-01-23 04:05:27 +0000 | [diff] [blame] | 274 | user = form.getfirst("user", "").upper() # This way it's safe. |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 275 | for item in form.getlist("item"): |
| 276 | do_something(item) |
| 277 | \end{verbatim} |
| 278 | |
| 279 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 280 | \subsection{Old classes} |
| 281 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 282 | These classes, present in earlier versions of the \module{cgi} module, |
| 283 | are still supported for backward compatibility. New applications |
| 284 | should use the \class{FieldStorage} class. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 285 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 286 | \class{SvFormContentDict} stores single value form content as |
| 287 | dictionary; it assumes each field name occurs in the form only once. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 288 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 289 | \class{FormContentDict} stores multiple value form content as a |
| 290 | dictionary (the form items are lists of values). Useful if your form |
| 291 | contains multiple fields with the same name. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 292 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 293 | Other classes (\class{FormContent}, \class{InterpFormContentDict}) are |
| 294 | present for backwards compatibility with really old applications only. |
| 295 | If you still use these and would be inconvenienced when they |
| 296 | disappeared from a next version of this module, drop me a note. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 297 | |
| 298 | |
| 299 | \subsection{Functions} |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 300 | \nodename{Functions in cgi module} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 301 | |
| 302 | These are useful if you want more control, or if you want to employ |
| 303 | some of the algorithms implemented in this module in other |
| 304 | circumstances. |
| 305 | |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 306 | \begin{funcdesc}{parse}{fp\optional{, keep_blank_values\optional{, |
| 307 | strict_parsing}}} |
| 308 | Parse a query in the environment or from a file (the file defaults |
| 309 | to \code{sys.stdin}). The \var{keep_blank_values} and |
| 310 | \var{strict_parsing} parameters are passed to \function{parse_qs()} |
| 311 | unchanged. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 312 | \end{funcdesc} |
| 313 | |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 314 | \begin{funcdesc}{parse_qs}{qs\optional{, keep_blank_values\optional{, |
| 315 | strict_parsing}}} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 316 | Parse a query string given as a string argument (data of type |
Guido van Rossum | 66ab4e8 | 1999-06-10 03:11:41 +0000 | [diff] [blame] | 317 | \mimetype{application/x-www-form-urlencoded}). Data are |
| 318 | returned as a dictionary. The dictionary keys are the unique query |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 319 | variable names and the values are lists of values for each name. |
Guido van Rossum | 66ab4e8 | 1999-06-10 03:11:41 +0000 | [diff] [blame] | 320 | |
| 321 | The optional argument \var{keep_blank_values} is |
| 322 | a flag indicating whether blank values in |
| 323 | URL encoded queries should be treated as blank strings. |
| 324 | A true value indicates that blanks should be retained as |
| 325 | blank strings. The default false value indicates that |
| 326 | blank values are to be ignored and treated as if they were |
| 327 | not included. |
| 328 | |
| 329 | The optional argument \var{strict_parsing} is a flag indicating what |
| 330 | to do with parsing errors. If false (the default), errors |
Georg Brandl | db815ab | 2006-03-17 16:26:31 +0000 | [diff] [blame] | 331 | are silently ignored. If true, errors raise a \exception{ValueError} |
Guido van Rossum | 66ab4e8 | 1999-06-10 03:11:41 +0000 | [diff] [blame] | 332 | exception. |
Brett Cannon | 1213bdd | 2003-05-13 02:50:36 +0000 | [diff] [blame] | 333 | |
| 334 | Use the \function{\refmodule{urllib}.urlencode()} function to convert |
| 335 | such dictionaries into query strings. |
| 336 | |
Guido van Rossum | 66ab4e8 | 1999-06-10 03:11:41 +0000 | [diff] [blame] | 337 | \end{funcdesc} |
| 338 | |
Fred Drake | 2732cb4 | 2001-09-11 16:27:03 +0000 | [diff] [blame] | 339 | \begin{funcdesc}{parse_qsl}{qs\optional{, keep_blank_values\optional{, |
| 340 | strict_parsing}}} |
Guido van Rossum | 66ab4e8 | 1999-06-10 03:11:41 +0000 | [diff] [blame] | 341 | Parse a query string given as a string argument (data of type |
| 342 | \mimetype{application/x-www-form-urlencoded}). Data are |
| 343 | returned as a list of name, value pairs. |
| 344 | |
| 345 | The optional argument \var{keep_blank_values} is |
| 346 | a flag indicating whether blank values in |
| 347 | URL encoded queries should be treated as blank strings. |
| 348 | A true value indicates that blanks should be retained as |
| 349 | blank strings. The default false value indicates that |
| 350 | blank values are to be ignored and treated as if they were |
| 351 | not included. |
| 352 | |
| 353 | The optional argument \var{strict_parsing} is a flag indicating what |
| 354 | to do with parsing errors. If false (the default), errors |
Georg Brandl | db815ab | 2006-03-17 16:26:31 +0000 | [diff] [blame] | 355 | are silently ignored. If true, errors raise a \exception{ValueError} |
Guido van Rossum | 66ab4e8 | 1999-06-10 03:11:41 +0000 | [diff] [blame] | 356 | exception. |
Fred Drake | d859d47 | 2003-04-24 16:22:47 +0000 | [diff] [blame] | 357 | |
Brett Cannon | 1213bdd | 2003-05-13 02:50:36 +0000 | [diff] [blame] | 358 | Use the \function{\refmodule{urllib}.urlencode()} function to convert |
Fred Drake | d859d47 | 2003-04-24 16:22:47 +0000 | [diff] [blame] | 359 | such lists of pairs into query strings. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 360 | \end{funcdesc} |
| 361 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 362 | \begin{funcdesc}{parse_multipart}{fp, pdict} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 363 | Parse input of type \mimetype{multipart/form-data} (for |
| 364 | file uploads). Arguments are \var{fp} for the input file and |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 365 | \var{pdict} for a dictionary containing other parameters in |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 366 | the \mailheader{Content-Type} header. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 367 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 368 | Returns a dictionary just like \function{parse_qs()} keys are the |
| 369 | field names, each value is a list of values for that field. This is |
| 370 | easy to use but not much good if you are expecting megabytes to be |
| 371 | uploaded --- in that case, use the \class{FieldStorage} class instead |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 372 | which is much more flexible. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 373 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 374 | Note that this does not parse nested multipart parts --- use |
| 375 | \class{FieldStorage} for that. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 376 | \end{funcdesc} |
| 377 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 378 | \begin{funcdesc}{parse_header}{string} |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 379 | Parse a MIME header (such as \mailheader{Content-Type}) into a main |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 380 | value and a dictionary of parameters. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 381 | \end{funcdesc} |
| 382 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 383 | \begin{funcdesc}{test}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 384 | Robust test CGI script, usable as main program. |
| 385 | Writes minimal HTTP headers and formats all information provided to |
| 386 | the script in HTML form. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 387 | \end{funcdesc} |
| 388 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 389 | \begin{funcdesc}{print_environ}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 390 | Format the shell environment in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 391 | \end{funcdesc} |
| 392 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 393 | \begin{funcdesc}{print_form}{form} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 394 | Format a form in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 395 | \end{funcdesc} |
| 396 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 397 | \begin{funcdesc}{print_directory}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 398 | Format the current directory in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 399 | \end{funcdesc} |
| 400 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 401 | \begin{funcdesc}{print_environ_usage}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 402 | Print a list of useful (used by CGI) environment variables in |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 403 | HTML. |
| 404 | \end{funcdesc} |
| 405 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 406 | \begin{funcdesc}{escape}{s\optional{, quote}} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 407 | Convert the characters |
| 408 | \character{\&}, \character{<} and \character{>} in string \var{s} to |
| 409 | HTML-safe sequences. Use this if you need to display text that might |
| 410 | contain such characters in HTML. If the optional flag \var{quote} is |
Skip Montanaro | 6a69450 | 2005-08-02 02:53:59 +0000 | [diff] [blame] | 411 | true, the quotation mark character (\character{"}) is also translated; |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 412 | this helps for inclusion in an HTML attribute value, as in \code{<A |
Fred Drake | 055be47 | 2002-08-23 21:19:53 +0000 | [diff] [blame] | 413 | HREF="...">}. If the value to be quoted might include single- or |
Fred Drake | 84e58ab | 2001-08-11 03:28:41 +0000 | [diff] [blame] | 414 | double-quote characters, or both, consider using the |
| 415 | \function{quoteattr()} function in the \refmodule{xml.sax.saxutils} |
| 416 | module instead. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 417 | \end{funcdesc} |
| 418 | |
| 419 | |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 420 | \subsection{Caring about security \label{cgi-security}} |
| 421 | |
| 422 | \indexii{CGI}{security} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 423 | |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 424 | There's one important rule: if you invoke an external program (via the |
| 425 | \function{os.system()} or \function{os.popen()} functions. or others |
| 426 | with similar functionality), make very sure you don't pass arbitrary |
| 427 | strings received from the client to the shell. This is a well-known |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 428 | security hole whereby clever hackers anywhere on the Web can exploit a |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 429 | gullible CGI script to invoke arbitrary shell commands. Even parts of |
| 430 | the URL or field names cannot be trusted, since the request doesn't |
| 431 | have to come from your form! |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 432 | |
| 433 | To be on the safe side, if you must pass a string gotten from a form |
| 434 | to a shell command, you should make sure the string contains only |
| 435 | alphanumeric characters, dashes, underscores, and periods. |
| 436 | |
| 437 | |
Fred Drake | c37b65e | 2001-11-28 07:26:15 +0000 | [diff] [blame] | 438 | \subsection{Installing your CGI script on a \UNIX\ system} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 439 | |
| 440 | Read the documentation for your HTTP server and check with your local |
| 441 | system administrator to find the directory where CGI scripts should be |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 442 | installed; usually this is in a directory \file{cgi-bin} in the server tree. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 443 | |
| 444 | Make sure that your script is readable and executable by ``others''; the |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 445 | \UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755 |
Fred Drake | 7eca8e5 | 1999-01-18 15:46:02 +0000 | [diff] [blame] | 446 | \var{filename}}). Make sure that the first line of the script contains |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 447 | \code{\#!} starting in column 1 followed by the pathname of the Python |
| 448 | interpreter, for instance: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 449 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 450 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 451 | #!/usr/local/bin/python |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 452 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 453 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 454 | Make sure the Python interpreter exists and is executable by ``others''. |
| 455 | |
| 456 | Make sure that any files your script needs to read or write are |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 457 | readable or writable, respectively, by ``others'' --- their mode |
| 458 | should be \code{0644} for readable and \code{0666} for writable. This |
| 459 | is because, for security reasons, the HTTP server executes your script |
| 460 | as user ``nobody'', without any special privileges. It can only read |
| 461 | (write, execute) files that everybody can read (write, execute). The |
| 462 | current directory at execution time is also different (it is usually |
| 463 | the server's cgi-bin directory) and the set of environment variables |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 464 | is also different from what you get when you log in. In particular, don't |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 465 | count on the shell's search path for executables (\envvar{PATH}) or |
| 466 | the Python module search path (\envvar{PYTHONPATH}) to be set to |
| 467 | anything interesting. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 468 | |
| 469 | If you need to load modules from a directory which is not on Python's |
| 470 | default module search path, you can change the path in your script, |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 471 | before importing other modules. For example: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 472 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 473 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 474 | import sys |
| 475 | sys.path.insert(0, "/usr/home/joe/lib/python") |
| 476 | sys.path.insert(0, "/usr/local/lib/python") |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 477 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 478 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 479 | (This way, the directory inserted last will be searched first!) |
| 480 | |
Fred Drake | efc1e0f | 1998-01-13 19:00:33 +0000 | [diff] [blame] | 481 | Instructions for non-\UNIX{} systems will vary; check your HTTP server's |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 482 | documentation (it will usually have a section on CGI scripts). |
| 483 | |
| 484 | |
| 485 | \subsection{Testing your CGI script} |
| 486 | |
| 487 | Unfortunately, a CGI script will generally not run when you try it |
| 488 | from the command line, and a script that works perfectly from the |
| 489 | command line may fail mysteriously when run from the server. There's |
| 490 | one reason why you should still test your script from the command |
Fred Drake | 6a79be8 | 1998-04-03 03:47:03 +0000 | [diff] [blame] | 491 | line: if it contains a syntax error, the Python interpreter won't |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 492 | execute it at all, and the HTTP server will most likely send a cryptic |
| 493 | error to the client. |
| 494 | |
| 495 | Assuming your script has no syntax errors, yet it does not work, you |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 496 | have no choice but to read the next section. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 497 | |
| 498 | |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 499 | \subsection{Debugging CGI scripts} \indexii{CGI}{debugging} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 500 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 501 | First of all, check for trivial installation errors --- reading the |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 502 | section above on installing your CGI script carefully can save you a |
| 503 | lot of time. If you wonder whether you have understood the |
| 504 | installation procedure correctly, try installing a copy of this module |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 505 | file (\file{cgi.py}) as a CGI script. When invoked as a script, the file |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 506 | will dump its environment and the contents of the form in HTML form. |
| 507 | Give it the right mode etc, and send it a request. If it's installed |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 508 | in the standard \file{cgi-bin} directory, it should be possible to send it a |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 509 | request by entering a URL into your browser of the form: |
| 510 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 511 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 512 | http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 513 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 514 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 515 | If this gives an error of type 404, the server cannot find the script |
| 516 | -- perhaps you need to install it in a different directory. If it |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 517 | gives another error, there's an installation problem that |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 518 | you should fix before trying to go any further. If you get a nicely |
| 519 | formatted listing of the environment and form content (in this |
| 520 | example, the fields should be listed as ``addr'' with value ``At Home'' |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 521 | and ``name'' with value ``Joe Blow''), the \file{cgi.py} script has been |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 522 | installed correctly. If you follow the same procedure for your own |
| 523 | script, you should now be able to debug it. |
| 524 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 525 | The next step could be to call the \module{cgi} module's |
| 526 | \function{test()} function from your script: replace its main code |
| 527 | with the single statement |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 528 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 529 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 530 | cgi.test() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 531 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 532 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 533 | This should produce the same results as those gotten from installing |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 534 | the \file{cgi.py} file itself. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 535 | |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 536 | When an ordinary Python script raises an unhandled exception (for |
| 537 | whatever reason: of a typo in a module name, a file that can't be |
| 538 | opened, etc.), the Python interpreter prints a nice traceback and |
| 539 | exits. While the Python interpreter will still do this when your CGI |
| 540 | script raises an exception, most likely the traceback will end up in |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 541 | one of the HTTP server's log files, or be discarded altogether. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 542 | |
| 543 | Fortunately, once you have managed to get your script to execute |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 544 | \emph{some} code, you can easily send tracebacks to the Web browser |
| 545 | using the \refmodule{cgitb} module. If you haven't done so already, |
| 546 | just add the line: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 547 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 548 | \begin{verbatim} |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 549 | import cgitb; cgitb.enable() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 550 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 551 | |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 552 | to the top of your script. Then try running it again; when a |
| 553 | problem occurs, you should see a detailed report that will |
| 554 | likely make apparent the cause of the crash. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 555 | |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 556 | If you suspect that there may be a problem in importing the |
| 557 | \refmodule{cgitb} module, you can use an even more robust approach |
| 558 | (which only uses built-in modules): |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 559 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 560 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 561 | import sys |
| 562 | sys.stderr = sys.stdout |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 563 | print "Content-Type: text/plain" |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 564 | print |
| 565 | ...your code here... |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 566 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 567 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 568 | This relies on the Python interpreter to print the traceback. The |
| 569 | content type of the output is set to plain text, which disables all |
| 570 | HTML processing. If your script works, the raw HTML will be displayed |
| 571 | by your client. If it raises an exception, most likely after the |
| 572 | first two lines have been printed, a traceback will be displayed. |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 573 | Because no HTML interpretation is going on, the traceback will be |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 574 | readable. |
| 575 | |
| 576 | |
| 577 | \subsection{Common problems and solutions} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 578 | |
| 579 | \begin{itemize} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 580 | \item Most HTTP servers buffer the output from CGI scripts until the |
| 581 | script is completed. This means that it is not possible to display a |
| 582 | progress report on the client's display while the script is running. |
| 583 | |
| 584 | \item Check the installation instructions above. |
| 585 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 586 | \item Check the HTTP server's log files. (\samp{tail -f logfile} in a |
| 587 | separate window may be useful!) |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 588 | |
| 589 | \item Always check a script for syntax errors first, by doing something |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 590 | like \samp{python script.py}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 591 | |
Fred Drake | 34a37b8 | 2001-12-20 17:13:09 +0000 | [diff] [blame] | 592 | \item If your script does not have any syntax errors, try adding |
| 593 | \samp{import cgitb; cgitb.enable()} to the top of the script. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 594 | |
| 595 | \item When invoking external programs, make sure they can be found. |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 596 | Usually, this means using absolute path names --- \envvar{PATH} is |
| 597 | usually not set to a very useful value in a CGI script. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 598 | |
| 599 | \item When reading or writing external files, make sure they can be read |
Alex Martelli | 50324a6 | 2003-11-09 16:31:18 +0000 | [diff] [blame] | 600 | or written by the userid under which your CGI script will be running: |
| 601 | this is typically the userid under which the web server is running, or some |
| 602 | explicitly specified userid for a web server's \samp{suexec} feature. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 603 | |
| 604 | \item Don't try to give a CGI script a set-uid mode. This doesn't work on |
| 605 | most systems, and is a security liability as well. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 606 | \end{itemize} |
| 607 | |