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 |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 39 | uploads from a form (if your browser supports it --- Grail 0.3 and |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 40 | Netscape 2.0 do). |
| 41 | |
| 42 | The output of a CGI script should consist of two sections, separated |
| 43 | by a blank line. The first section contains a number of headers, |
| 44 | telling the client what kind of data is following. Python code to |
| 45 | generate a minimal header section looks like this: |
Guido van Rossum | a12ef94 | 1995-02-27 17:53:25 +0000 | [diff] [blame] | 46 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 47 | \begin{verbatim} |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 48 | print "Content-Type: text/html" # HTML is following |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 49 | print # blank line, end of headers |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 50 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 51 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 52 | The second section is usually HTML, which allows the client software |
| 53 | to display nicely formatted text with header, in-line images, etc. |
| 54 | Here's Python code that prints a simple piece of HTML: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 55 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 56 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 57 | print "<TITLE>CGI script output</TITLE>" |
| 58 | print "<H1>This is my first CGI script</H1>" |
| 59 | print "Hello, world!" |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 60 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 61 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 62 | \subsection{Using the cgi module} |
| 63 | \nodename{Using the cgi module} |
| 64 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 65 | Begin by writing \samp{import cgi}. Do not use \samp{from cgi import |
| 66 | *} --- the module defines all sorts of names for its own use or for |
| 67 | backward compatibility that you don't want in your namespace. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 68 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 69 | It's best to use the \class{FieldStorage} class. The other classes |
| 70 | defined in this module are provided mostly for backward compatibility. |
| 71 | Instantiate it exactly once, without arguments. This reads the form |
| 72 | contents from standard input or the environment (depending on the |
| 73 | value of various environment variables set according to the CGI |
| 74 | standard). Since it may consume standard input, it should be |
| 75 | instantiated only once. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 76 | |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 77 | The \class{FieldStorage} instance can be indexed like a Python |
| 78 | dictionary, and also supports the standard dictionary methods |
| 79 | \function{has_key()} and \function{keys()}. |
| 80 | Form fields containing empty strings are ignored |
| 81 | and do not appear in the dictionary; to keep such values, provide |
| 82 | the optional \samp{keep_blank_values} argument when creating the |
| 83 | \class {FieldStorage} instance. |
| 84 | |
| 85 | For instance, the following code (which assumes that the |
| 86 | \code{Content-Type} header and blank line have already been printed) |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 87 | checks that the fields \code{name} and \code{addr} are both set to a |
| 88 | non-empty string: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 89 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 90 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 91 | form = cgi.FieldStorage() |
Fred Drake | 9f9bd6a | 2001-06-29 14:59:01 +0000 | [diff] [blame] | 92 | if not (form.has_key("name") and form.has_key("addr")): |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 93 | print "<H1>Error</H1>" |
| 94 | print "Please fill in the name and addr fields." |
| 95 | return |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 96 | print "<p>name:", form["name"].value |
| 97 | print "<p>addr:", form["addr"].value |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 98 | ...further form processing here... |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 99 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 100 | |
| 101 | Here the fields, accessed through \samp{form[\var{key}]}, are |
| 102 | themselves instances of \class{FieldStorage} (or |
| 103 | \class{MiniFieldStorage}, depending on the form encoding). |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 104 | The \member{value} attribute of the instance yields the string value |
| 105 | of the field. The \function{getvalue()} method returns this string value |
| 106 | directly; it also accepts an optional second argument as a default to |
| 107 | return if the requested key is not present. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 108 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 109 | 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] | 110 | name, the object retrieved by \samp{form[\var{key}]} is not a |
| 111 | \class{FieldStorage} or \class{MiniFieldStorage} |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 112 | instance but a list of such instances. Similarly, in this situation, |
| 113 | \samp{form.getvalue(\var{key})} would return a list of strings. |
| 114 | If you expect this possibility |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 115 | (when your HTML form contains multiple fields with the same |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 116 | name), use the \function{type()} function to determine whether you |
| 117 | have a single instance or a list of instances. For example, here's |
| 118 | code that concatenates any number of username fields, separated by |
| 119 | commas: |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 120 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 121 | \begin{verbatim} |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 122 | value = form.getvalue("username", "") |
| 123 | if type(value) is type([]): |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 124 | # Multiple username fields specified |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 125 | usernames = ",".join(value) |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 126 | else: |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 127 | # Single or no username field specified |
| 128 | usernames = value |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 129 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 130 | |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 131 | If a field represents an uploaded file, accessing the value via the |
| 132 | \member{value} attribute or the \function{getvalue()} method reads the |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 133 | 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] | 134 | You can test for an uploaded file by testing either the \member{filename} |
| 135 | attribute or the \member{file} attribute. You can then read the data at |
| 136 | leisure from the \member{file} attribute: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 137 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 138 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 139 | fileitem = form["userfile"] |
| 140 | if fileitem.file: |
| 141 | # It's an uploaded file; count lines |
| 142 | linecount = 0 |
| 143 | while 1: |
| 144 | line = fileitem.file.readline() |
| 145 | if not line: break |
| 146 | linecount = linecount + 1 |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 147 | \end{verbatim} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 148 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 149 | The file upload draft standard entertains the possibility of uploading |
| 150 | multiple files from one field (using a recursive |
| 151 | \mimetype{multipart/*} encoding). When this occurs, the item will be |
| 152 | a dictionary-like \class{FieldStorage} item. This can be determined |
| 153 | by testing its \member{type} attribute, which should be |
| 154 | \mimetype{multipart/form-data} (or perhaps another MIME type matching |
Fred Drake | 7eca8e5 | 1999-01-18 15:46:02 +0000 | [diff] [blame] | 155 | \mimetype{multipart/*}). In this case, it can be iterated over |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 156 | recursively just like the top-level form object. |
| 157 | |
| 158 | When a form is submitted in the ``old'' format (as the query string or |
| 159 | as a single data part of type |
| 160 | \mimetype{application/x-www-form-urlencoded}), the items will actually |
| 161 | be instances of the class \class{MiniFieldStorage}. In this case, the |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 162 | \member{list}, \member{file}, and \member{filename} attributes are |
| 163 | always \code{None}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 164 | |
| 165 | |
| 166 | \subsection{Old classes} |
| 167 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 168 | These classes, present in earlier versions of the \module{cgi} module, |
| 169 | are still supported for backward compatibility. New applications |
| 170 | should use the \class{FieldStorage} class. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 171 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 172 | \class{SvFormContentDict} stores single value form content as |
| 173 | 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] | 174 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 175 | \class{FormContentDict} stores multiple value form content as a |
| 176 | dictionary (the form items are lists of values). Useful if your form |
| 177 | contains multiple fields with the same name. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 178 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 179 | Other classes (\class{FormContent}, \class{InterpFormContentDict}) are |
| 180 | present for backwards compatibility with really old applications only. |
| 181 | If you still use these and would be inconvenienced when they |
| 182 | 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] | 183 | |
| 184 | |
| 185 | \subsection{Functions} |
Fred Drake | 4b3f031 | 1996-12-13 22:04:31 +0000 | [diff] [blame] | 186 | \nodename{Functions in cgi module} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 187 | |
| 188 | These are useful if you want more control, or if you want to employ |
| 189 | some of the algorithms implemented in this module in other |
| 190 | circumstances. |
| 191 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 192 | \begin{funcdesc}{parse}{fp} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 193 | Parse a query in the environment or from a file (default |
| 194 | \code{sys.stdin}). |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 195 | \end{funcdesc} |
| 196 | |
Guido van Rossum | 66ab4e8 | 1999-06-10 03:11:41 +0000 | [diff] [blame] | 197 | \begin{funcdesc}{parse_qs}{qs\optional{, keep_blank_values, strict_parsing}} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 198 | 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] | 199 | \mimetype{application/x-www-form-urlencoded}). Data are |
| 200 | returned as a dictionary. The dictionary keys are the unique query |
Fred Drake | 38e5d27 | 2000-04-03 20:13:55 +0000 | [diff] [blame] | 201 | 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] | 202 | |
| 203 | The optional argument \var{keep_blank_values} is |
| 204 | a flag indicating whether blank values in |
| 205 | URL encoded queries should be treated as blank strings. |
| 206 | A true value indicates that blanks should be retained as |
| 207 | blank strings. The default false value indicates that |
| 208 | blank values are to be ignored and treated as if they were |
| 209 | not included. |
| 210 | |
| 211 | The optional argument \var{strict_parsing} is a flag indicating what |
| 212 | to do with parsing errors. If false (the default), errors |
| 213 | are silently ignored. If true, errors raise a ValueError |
| 214 | exception. |
| 215 | \end{funcdesc} |
| 216 | |
| 217 | \begin{funcdesc}{parse_qsl}{qs\optional{, keep_blank_values, strict_parsing}} |
| 218 | Parse a query string given as a string argument (data of type |
| 219 | \mimetype{application/x-www-form-urlencoded}). Data are |
| 220 | returned as a list of name, value pairs. |
| 221 | |
| 222 | The optional argument \var{keep_blank_values} is |
| 223 | a flag indicating whether blank values in |
| 224 | URL encoded queries should be treated as blank strings. |
| 225 | A true value indicates that blanks should be retained as |
| 226 | blank strings. The default false value indicates that |
| 227 | blank values are to be ignored and treated as if they were |
| 228 | not included. |
| 229 | |
| 230 | The optional argument \var{strict_parsing} is a flag indicating what |
| 231 | to do with parsing errors. If false (the default), errors |
| 232 | are silently ignored. If true, errors raise a ValueError |
| 233 | exception. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 234 | \end{funcdesc} |
| 235 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 236 | \begin{funcdesc}{parse_multipart}{fp, pdict} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 237 | Parse input of type \mimetype{multipart/form-data} (for |
| 238 | file uploads). Arguments are \var{fp} for the input file and |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 239 | \var{pdict} for a dictionary containing other parameters in |
| 240 | the \code{Content-Type} header. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 241 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 242 | Returns a dictionary just like \function{parse_qs()} keys are the |
| 243 | field names, each value is a list of values for that field. This is |
| 244 | easy to use but not much good if you are expecting megabytes to be |
| 245 | uploaded --- in that case, use the \class{FieldStorage} class instead |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 246 | which is much more flexible. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 247 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 248 | Note that this does not parse nested multipart parts --- use |
| 249 | \class{FieldStorage} for that. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 250 | \end{funcdesc} |
| 251 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 252 | \begin{funcdesc}{parse_header}{string} |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 253 | Parse a MIME header (such as \code{Content-Type}) into a main |
| 254 | value and a dictionary of parameters. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 255 | \end{funcdesc} |
| 256 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 257 | \begin{funcdesc}{test}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 258 | Robust test CGI script, usable as main program. |
| 259 | Writes minimal HTTP headers and formats all information provided to |
| 260 | the script in HTML form. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 261 | \end{funcdesc} |
| 262 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 263 | \begin{funcdesc}{print_environ}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 264 | Format the shell environment in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 265 | \end{funcdesc} |
| 266 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 267 | \begin{funcdesc}{print_form}{form} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 268 | Format a form in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 269 | \end{funcdesc} |
| 270 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 271 | \begin{funcdesc}{print_directory}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 272 | Format the current directory in HTML. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 273 | \end{funcdesc} |
| 274 | |
Guido van Rossum | 81e479a | 1997-08-25 18:28:03 +0000 | [diff] [blame] | 275 | \begin{funcdesc}{print_environ_usage}{} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 276 | Print a list of useful (used by CGI) environment variables in |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 277 | HTML. |
| 278 | \end{funcdesc} |
| 279 | |
Fred Drake | cce1090 | 1998-03-17 06:33:25 +0000 | [diff] [blame] | 280 | \begin{funcdesc}{escape}{s\optional{, quote}} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 281 | Convert the characters |
| 282 | \character{\&}, \character{<} and \character{>} in string \var{s} to |
| 283 | HTML-safe sequences. Use this if you need to display text that might |
| 284 | contain such characters in HTML. If the optional flag \var{quote} is |
| 285 | true, the double quote character (\character{"}) is also translated; |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 286 | this helps for inclusion in an HTML attribute value, as in \code{<A |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 287 | HREF="...">}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 288 | \end{funcdesc} |
| 289 | |
| 290 | |
| 291 | \subsection{Caring about security} |
| 292 | |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 293 | There's one important rule: if you invoke an external program (via the |
| 294 | \function{os.system()} or \function{os.popen()} functions. or others |
| 295 | with similar functionality), make very sure you don't pass arbitrary |
| 296 | 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] | 297 | security hole whereby clever hackers anywhere on the Web can exploit a |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 298 | gullible CGI script to invoke arbitrary shell commands. Even parts of |
| 299 | the URL or field names cannot be trusted, since the request doesn't |
| 300 | have to come from your form! |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 301 | |
| 302 | To be on the safe side, if you must pass a string gotten from a form |
| 303 | to a shell command, you should make sure the string contains only |
| 304 | alphanumeric characters, dashes, underscores, and periods. |
| 305 | |
| 306 | |
| 307 | \subsection{Installing your CGI script on a Unix system} |
| 308 | |
| 309 | Read the documentation for your HTTP server and check with your local |
| 310 | system administrator to find the directory where CGI scripts should be |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 311 | 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] | 312 | |
| 313 | Make sure that your script is readable and executable by ``others''; the |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 314 | \UNIX{} file mode should be \code{0755} octal (use \samp{chmod 0755 |
Fred Drake | 7eca8e5 | 1999-01-18 15:46:02 +0000 | [diff] [blame] | 315 | \var{filename}}). Make sure that the first line of the script contains |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 316 | \code{\#!} starting in column 1 followed by the pathname of the Python |
| 317 | interpreter, for instance: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 318 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 319 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 320 | #!/usr/local/bin/python |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 321 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 322 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 323 | Make sure the Python interpreter exists and is executable by ``others''. |
| 324 | |
| 325 | 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] | 326 | readable or writable, respectively, by ``others'' --- their mode |
| 327 | should be \code{0644} for readable and \code{0666} for writable. This |
| 328 | is because, for security reasons, the HTTP server executes your script |
| 329 | as user ``nobody'', without any special privileges. It can only read |
| 330 | (write, execute) files that everybody can read (write, execute). The |
| 331 | current directory at execution time is also different (it is usually |
| 332 | the server's cgi-bin directory) and the set of environment variables |
Fred Drake | 8ee679f | 2001-07-14 02:50:55 +0000 | [diff] [blame] | 333 | 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] | 334 | count on the shell's search path for executables (\envvar{PATH}) or |
| 335 | the Python module search path (\envvar{PYTHONPATH}) to be set to |
| 336 | anything interesting. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 337 | |
| 338 | If you need to load modules from a directory which is not on Python's |
| 339 | default module search path, you can change the path in your script, |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 340 | before importing other modules. For example: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 341 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 342 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 343 | import sys |
| 344 | sys.path.insert(0, "/usr/home/joe/lib/python") |
| 345 | sys.path.insert(0, "/usr/local/lib/python") |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 346 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 347 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 348 | (This way, the directory inserted last will be searched first!) |
| 349 | |
Fred Drake | efc1e0f | 1998-01-13 19:00:33 +0000 | [diff] [blame] | 350 | 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] | 351 | documentation (it will usually have a section on CGI scripts). |
| 352 | |
| 353 | |
| 354 | \subsection{Testing your CGI script} |
| 355 | |
| 356 | Unfortunately, a CGI script will generally not run when you try it |
| 357 | from the command line, and a script that works perfectly from the |
| 358 | command line may fail mysteriously when run from the server. There's |
| 359 | one reason why you should still test your script from the command |
Fred Drake | 6a79be8 | 1998-04-03 03:47:03 +0000 | [diff] [blame] | 360 | 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] | 361 | execute it at all, and the HTTP server will most likely send a cryptic |
| 362 | error to the client. |
| 363 | |
| 364 | 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] | 365 | have no choice but to read the next section. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 366 | |
| 367 | |
| 368 | \subsection{Debugging CGI scripts} |
| 369 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 370 | First of all, check for trivial installation errors --- reading the |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 371 | section above on installing your CGI script carefully can save you a |
| 372 | lot of time. If you wonder whether you have understood the |
| 373 | installation procedure correctly, try installing a copy of this module |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 374 | 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] | 375 | will dump its environment and the contents of the form in HTML form. |
| 376 | 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] | 377 | 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] | 378 | request by entering a URL into your browser of the form: |
| 379 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 380 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 381 | http://yourhostname/cgi-bin/cgi.py?name=Joe+Blow&addr=At+Home |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 382 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 383 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 384 | If this gives an error of type 404, the server cannot find the script |
| 385 | -- perhaps you need to install it in a different directory. If it |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 386 | gives another error, there's an installation problem that |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 387 | you should fix before trying to go any further. If you get a nicely |
| 388 | formatted listing of the environment and form content (in this |
| 389 | example, the fields should be listed as ``addr'' with value ``At Home'' |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 390 | 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] | 391 | installed correctly. If you follow the same procedure for your own |
| 392 | script, you should now be able to debug it. |
| 393 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 394 | The next step could be to call the \module{cgi} module's |
| 395 | \function{test()} function from your script: replace its main code |
| 396 | with the single statement |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 397 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 398 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 399 | cgi.test() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 400 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 401 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 402 | This should produce the same results as those gotten from installing |
Fred Drake | a2e268a | 1997-12-09 03:28:42 +0000 | [diff] [blame] | 403 | the \file{cgi.py} file itself. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 404 | |
Fred Drake | 91f2f26 | 2001-07-06 19:28:48 +0000 | [diff] [blame] | 405 | When an ordinary Python script raises an unhandled exception (for |
| 406 | whatever reason: of a typo in a module name, a file that can't be |
| 407 | opened, etc.), the Python interpreter prints a nice traceback and |
| 408 | exits. While the Python interpreter will still do this when your CGI |
| 409 | script raises an exception, most likely the traceback will end up in |
| 410 | one of the HTTP server's log file, or be discarded altogether. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 411 | |
| 412 | Fortunately, once you have managed to get your script to execute |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 413 | \emph{some} code, it is easy to catch exceptions and cause a traceback |
| 414 | to be printed. The \function{test()} function below in this module is |
| 415 | an example. Here are the rules: |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 416 | |
| 417 | \begin{enumerate} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 418 | \item Import the traceback module before entering the \keyword{try} |
| 419 | ... \keyword{except} statement |
| 420 | |
| 421 | \item Assign \code{sys.stderr} to be \code{sys.stdout} |
| 422 | |
| 423 | \item Make sure you finish printing the headers and the blank line |
| 424 | early |
| 425 | |
| 426 | \item Wrap all remaining code in a \keyword{try} ... \keyword{except} |
| 427 | statement |
| 428 | |
| 429 | \item In the except clause, call \function{traceback.print_exc()} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 430 | \end{enumerate} |
| 431 | |
| 432 | For example: |
| 433 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 434 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 435 | import sys |
| 436 | import traceback |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 437 | print "Content-Type: text/html" |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 438 | print |
| 439 | sys.stderr = sys.stdout |
| 440 | try: |
| 441 | ...your code here... |
| 442 | except: |
| 443 | print "\n\n<PRE>" |
| 444 | traceback.print_exc() |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 445 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 446 | |
| 447 | Notes: The assignment to \code{sys.stderr} is needed because the |
| 448 | traceback prints to \code{sys.stderr}. |
Guido van Rossum | 9d62e80 | 1997-11-25 00:35:44 +0000 | [diff] [blame] | 449 | The \code{print "{\e}n{\e}n<PRE>"} statement is necessary to |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 450 | disable the word wrapping in HTML. |
| 451 | |
| 452 | If you suspect that there may be a problem in importing the traceback |
| 453 | module, you can use an even more robust approach (which only uses |
| 454 | built-in modules): |
| 455 | |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 456 | \begin{verbatim} |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 457 | import sys |
| 458 | sys.stderr = sys.stdout |
Moshe Zadka | a1a4b59 | 2000-08-25 21:47:56 +0000 | [diff] [blame] | 459 | print "Content-Type: text/plain" |
Guido van Rossum | e47da0a | 1997-07-17 16:34:52 +0000 | [diff] [blame] | 460 | print |
| 461 | ...your code here... |
Fred Drake | 1947991 | 1998-02-13 06:58:54 +0000 | [diff] [blame] | 462 | \end{verbatim} |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 463 | |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 464 | This relies on the Python interpreter to print the traceback. The |
| 465 | content type of the output is set to plain text, which disables all |
| 466 | HTML processing. If your script works, the raw HTML will be displayed |
| 467 | by your client. If it raises an exception, most likely after the |
| 468 | first two lines have been printed, a traceback will be displayed. |
| 469 | Because no HTML interpretation is going on, the traceback will |
| 470 | readable. |
| 471 | |
| 472 | |
| 473 | \subsection{Common problems and solutions} |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 474 | |
| 475 | \begin{itemize} |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 476 | \item Most HTTP servers buffer the output from CGI scripts until the |
| 477 | script is completed. This means that it is not possible to display a |
| 478 | progress report on the client's display while the script is running. |
| 479 | |
| 480 | \item Check the installation instructions above. |
| 481 | |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 482 | \item Check the HTTP server's log files. (\samp{tail -f logfile} in a |
| 483 | separate window may be useful!) |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 484 | |
| 485 | \item Always check a script for syntax errors first, by doing something |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 486 | like \samp{python script.py}. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 487 | |
| 488 | \item When using any of the debugging techniques, don't forget to add |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 489 | \samp{import sys} to the top of the script. |
Guido van Rossum | a29cc97 | 1996-07-30 18:22:07 +0000 | [diff] [blame] | 490 | |
| 491 | \item When invoking external programs, make sure they can be found. |
Fred Drake | 6ef871c | 1998-03-12 06:52:05 +0000 | [diff] [blame] | 492 | Usually, this means using absolute path names --- \envvar{PATH} is |
| 493 | 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] | 494 | |
| 495 | \item When reading or writing external files, make sure they can be read |
| 496 | or written by every user on the system. |
| 497 | |
| 498 | \item Don't try to give a CGI script a set-uid mode. This doesn't work on |
| 499 | most systems, and is a security liability as well. |
Guido van Rossum | 470be14 | 1995-03-17 16:07:09 +0000 | [diff] [blame] | 500 | \end{itemize} |
| 501 | |