blob: bba9c79ed9335964ec3475dff6716eb9910df987 [file] [log] [blame]
Moshe Zadka1b07f2b2000-08-19 14:11:41 +00001\section{\module{Cookie} ---
Fred Drakee5c73522000-08-19 16:54:57 +00002 HTTP state management}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +00003
Fred Drakee5c73522000-08-19 16:54:57 +00004\declaremodule{standard}{Cookie}
5\modulesynopsis{Support for HTTP state management (cookies).}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +00006\moduleauthor{Timothy O'Malley}{timo@alum.mit.edu}
7\sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il}
8
Moshe Zadka1b07f2b2000-08-19 14:11:41 +00009
10The \module{Cookie} module defines classes for abstracting the concept of
Eric S. Raymond83210262001-01-10 19:34:52 +000011cookies, an HTTP state management mechanism. It supports both simple
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000012string-only cookies, and provides an abstraction for having any serializable
13data-type as cookie value.
14
Raymond Hettinger999b57c2003-08-25 04:28:05 +000015The module formerly strictly applied the parsing rules described in
Andrew M. Kuchling120beb62000-08-20 23:33:50 +000016the \rfc{2109} and \rfc{2068} specifications. It has since been discovered
17that MSIE 3.0x doesn't follow the character rules outlined in those
18specs. As a result, the parsing rules used are a bit less strict.
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000019
20\begin{excdesc}{CookieError}
Fred Drakee5c73522000-08-19 16:54:57 +000021Exception failing because of \rfc{2109} invalidity: incorrect
Fred Drakef91b4612002-12-31 15:23:09 +000022attributes, incorrect \mailheader{Set-Cookie} header, etc.
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000023\end{excdesc}
24
Fred Drakee5c73522000-08-19 16:54:57 +000025\begin{classdesc}{BaseCookie}{\optional{input}}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000026This class is a dictionary-like object whose keys are strings and
Fred Drakef14730a2002-12-31 15:10:49 +000027whose values are \class{Morsel} instances. Note that upon setting a key to
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000028a value, the value is first converted to a \class{Morsel} containing
29the key and the value.
30
Fred Drake58c95392001-06-29 16:21:47 +000031If \var{input} is given, it is passed to the \method{load()} method.
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000032\end{classdesc}
33
Fred Drakee5c73522000-08-19 16:54:57 +000034\begin{classdesc}{SimpleCookie}{\optional{input}}
Fred Drake58c95392001-06-29 16:21:47 +000035This class derives from \class{BaseCookie} and overrides
36\method{value_decode()} and \method{value_encode()} to be the identity
37and \function{str()} respectively.
Fred Drakee5c73522000-08-19 16:54:57 +000038\end{classdesc}
39
40\begin{classdesc}{SerialCookie}{\optional{input}}
Fred Drake58c95392001-06-29 16:21:47 +000041This class derives from \class{BaseCookie} and overrides
42\method{value_decode()} and \method{value_encode()} to be the
Fred Drakef14730a2002-12-31 15:10:49 +000043\function{pickle.loads()} and \function{pickle.dumps()}.
Andrew M. Kuchling120beb62000-08-20 23:33:50 +000044
Fred Drakef14730a2002-12-31 15:10:49 +000045\deprecated{2.3}{Reading pickled values from untrusted
Barry Warsaw0c0565d2001-11-16 22:28:17 +000046cookie data is a huge security hole, as pickle strings can be crafted
47to cause arbitrary code to execute on your server. It is supported
Fred Drakef14730a2002-12-31 15:10:49 +000048for backwards compatibility only, and may eventually go away.}
Fred Drakee5c73522000-08-19 16:54:57 +000049\end{classdesc}
50
51\begin{classdesc}{SmartCookie}{\optional{input}}
Fred Drake58c95392001-06-29 16:21:47 +000052This class derives from \class{BaseCookie}. It overrides
53\method{value_decode()} to be \function{pickle.loads()} if it is a
54valid pickle, and otherwise the value itself. It overrides
55\method{value_encode()} to be \function{pickle.dumps()} unless it is a
56string, in which case it returns the value itself.
Fred Drakee5c73522000-08-19 16:54:57 +000057
Fred Drakef14730a2002-12-31 15:10:49 +000058\deprecated{2.3}{The same security warning from \class{SerialCookie}
59applies here.}
Fred Drakee5c73522000-08-19 16:54:57 +000060\end{classdesc}
61
Barry Warsaw0c0565d2001-11-16 22:28:17 +000062A further security note is warranted. For backwards compatibility,
63the \module{Cookie} module exports a class named \class{Cookie} which
64is just an alias for \class{SmartCookie}. This is probably a mistake
65and will likely be removed in a future version. You should not use
66the \class{Cookie} class in your applications, for the same reason why
67you should not use the \class{SerialCookie} class.
68
Fred Drakee5c73522000-08-19 16:54:57 +000069
70\begin{seealso}
Martin v. Löwis2a6ba902004-05-31 18:22:40 +000071 \seemodule{cookielib}{HTTP cookie handling for for web
72 \emph{clients}. The \module{cookielib} and \module{Cookie}
73 modules do not depend on each other.}
74
Fred Drakee5c73522000-08-19 16:54:57 +000075 \seerfc{2109}{HTTP State Management Mechanism}{This is the state
76 management specification implemented by this module.}
77\end{seealso}
78
79
80\subsection{Cookie Objects \label{cookie-objects}}
81
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000082\begin{methoddesc}[BaseCookie]{value_decode}{val}
83Return a decoded value from a string representation. Return value can
84be any type. This method does nothing in \class{BaseCookie} --- it exists
85so it can be overridden.
86\end{methoddesc}
87
88\begin{methoddesc}[BaseCookie]{value_encode}{val}
89Return an encoded value. \var{val} can be any type, but return value
90must be a string. This method does nothing in \class{BaseCookie} --- it exists
91so it can be overridden
92
Fred Drake58c95392001-06-29 16:21:47 +000093In general, it should be the case that \method{value_encode()} and
94\method{value_decode()} are inverses on the range of \var{value_decode}.
95\end{methoddesc}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000096
Fred Drakee5c73522000-08-19 16:54:57 +000097\begin{methoddesc}[BaseCookie]{output}{\optional{attrs\optional{, header\optional{, sep}}}}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +000098Return a string representation suitable to be sent as HTTP headers.
Fred Drake58c95392001-06-29 16:21:47 +000099\var{attrs} and \var{header} are sent to each \class{Morsel}'s
100\method{output()} method. \var{sep} is used to join the headers
101together, and is by default a newline.
Moshe Zadka1b07f2b2000-08-19 14:11:41 +0000102\end{methoddesc}
103
Fred Drakee5c73522000-08-19 16:54:57 +0000104\begin{methoddesc}[BaseCookie]{js_output}{\optional{attrs}}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +0000105Return an embeddable JavaScript snippet, which, if run on a browser which
106supports JavaScript, will act the same as if the HTTP headers was sent.
107
108The meaning for \var{attrs} is the same as in \method{output()}.
109\end{methoddesc}
110
111\begin{methoddesc}[BaseCookie]{load}{rawdata}
112If \var{rawdata} is a string, parse it as an \code{HTTP_COOKIE} and add
113the values found there as \class{Morsel}s. If it is a dictionary, it
Fred Drakee5c73522000-08-19 16:54:57 +0000114is equivalent to:
Moshe Zadka1b07f2b2000-08-19 14:11:41 +0000115
116\begin{verbatim}
Fred Drakee5c73522000-08-19 16:54:57 +0000117for k, v in rawdata.items():
118 cookie[k] = v
119\end{verbatim}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +0000120\end{methoddesc}
121
Fred Drakee5c73522000-08-19 16:54:57 +0000122
123\subsection{Morsel Objects \label{morsel-objects}}
124
125\begin{classdesc}{Morsel}{}
126Abstract a key/value pair, which has some \rfc{2109} attributes.
127
128Morsels are dictionary-like objects, whose set of keys is constant ---
129the valid \rfc{2109} attributes, which are
130
131\begin{itemize}
132\item \code{expires}
133\item \code{path}
134\item \code{comment}
135\item \code{domain}
136\item \code{max-age}
137\item \code{secure}
138\item \code{version}
139\end{itemize}
140
141The keys are case-insensitive.
Moshe Zadka1b07f2b2000-08-19 14:11:41 +0000142\end{classdesc}
143
Fred Drakee5c73522000-08-19 16:54:57 +0000144\begin{memberdesc}[Morsel]{value}
145The value of the cookie.
146\end{memberdesc}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +0000147
Fred Drakee5c73522000-08-19 16:54:57 +0000148\begin{memberdesc}[Morsel]{coded_value}
149The encoded value of the cookie --- this is what should be sent.
150\end{memberdesc}
Moshe Zadka1b07f2b2000-08-19 14:11:41 +0000151
Fred Drakee5c73522000-08-19 16:54:57 +0000152\begin{memberdesc}[Morsel]{key}
153The name of the cookie.
154\end{memberdesc}
155
156\begin{methoddesc}[Morsel]{set}{key, value, coded_value}
157Set the \var{key}, \var{value} and \var{coded_value} members.
158\end{methoddesc}
159
160\begin{methoddesc}[Morsel]{isReservedKey}{K}
161Whether \var{K} is a member of the set of keys of a \class{Morsel}.
162\end{methoddesc}
163
164\begin{methoddesc}[Morsel]{output}{\optional{attrs\optional{, header}}}
165Return a string representation of the Morsel, suitable
166to be sent as an HTTP header. By default, all the attributes are included,
167unless \var{attrs} is given, in which case it should be a list of attributes
168to use. \var{header} is by default \code{"Set-Cookie:"}.
169\end{methoddesc}
170
171\begin{methoddesc}[Morsel]{js_output}{\optional{attrs}}
172Return an embeddable JavaScript snippet, which, if run on a browser which
173supports JavaScript, will act the same as if the HTTP header was sent.
174
175The meaning for \var{attrs} is the same as in \method{output()}.
Fred Drake58c95392001-06-29 16:21:47 +0000176\end{methoddesc}
Fred Drakee5c73522000-08-19 16:54:57 +0000177
178\begin{methoddesc}[Morsel]{OutputString}{\optional{attrs}}
179Return a string representing the Morsel, without any surrounding HTTP
180or JavaScript.
181
182The meaning for \var{attrs} is the same as in \method{output()}.
183\end{methoddesc}
184
185
186\subsection{Example \label{cookie-example}}
187
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000188The following example demonstrates how to use the \module{Cookie} module.
Fred Drakee5c73522000-08-19 16:54:57 +0000189
190\begin{verbatim}
191>>> import Cookie
192>>> C = Cookie.SimpleCookie()
193>>> C = Cookie.SerialCookie()
194>>> C = Cookie.SmartCookie()
Fred Drakee5c73522000-08-19 16:54:57 +0000195>>> C["fig"] = "newton"
196>>> C["sugar"] = "wafer"
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000197>>> print C # generate HTTP headers
198Set-Cookie: sugar=wafer;
199Set-Cookie: fig=newton;
200>>> print C.output() # same thing
Fred Drakee5c73522000-08-19 16:54:57 +0000201Set-Cookie: sugar=wafer;
202Set-Cookie: fig=newton;
203>>> C = Cookie.SmartCookie()
204>>> C["rocky"] = "road"
205>>> C["rocky"]["path"] = "/cookie"
206>>> print C.output(header="Cookie:")
207Cookie: rocky=road; Path=/cookie;
208>>> print C.output(attrs=[], header="Cookie:")
209Cookie: rocky=road;
210>>> C = Cookie.SmartCookie()
211>>> C.load("chips=ahoy; vienna=finger") # load from a string (HTTP header)
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000212>>> print C
Fred Drakee5c73522000-08-19 16:54:57 +0000213Set-Cookie: vienna=finger;
214Set-Cookie: chips=ahoy;
215>>> C = Cookie.SmartCookie()
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000216>>> C.load('keebler="E=everybody; L=\\"Loves\\"; fudge=\\012;";')
217>>> print C
Fred Drakee5c73522000-08-19 16:54:57 +0000218Set-Cookie: keebler="E=everybody; L=\"Loves\"; fudge=\012;";
219>>> C = Cookie.SmartCookie()
220>>> C["oreo"] = "doublestuff"
221>>> C["oreo"]["path"] = "/"
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000222>>> print C
223Set-Cookie: oreo=doublestuff; Path=/;
Fred Drakee5c73522000-08-19 16:54:57 +0000224>>> C = Cookie.SmartCookie()
225>>> C["twix"] = "none for you"
226>>> C["twix"].value
227'none for you'
228>>> C = Cookie.SimpleCookie()
229>>> C["number"] = 7 # equivalent to C["number"] = str(7)
230>>> C["string"] = "seven"
231>>> C["number"].value
232'7'
233>>> C["string"].value
234'seven'
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000235>>> print C
Fred Drakee5c73522000-08-19 16:54:57 +0000236Set-Cookie: number=7;
237Set-Cookie: string=seven;
238>>> C = Cookie.SerialCookie()
239>>> C["number"] = 7
240>>> C["string"] = "seven"
241>>> C["number"].value
2427
243>>> C["string"].value
244'seven'
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000245>>> print C
Fred Drakee5c73522000-08-19 16:54:57 +0000246Set-Cookie: number="I7\012.";
247Set-Cookie: string="S'seven'\012p1\012.";
248>>> C = Cookie.SmartCookie()
249>>> C["number"] = 7
250>>> C["string"] = "seven"
251>>> C["number"].value
2527
253>>> C["string"].value
254'seven'
Ka-Ping Yee3a9582f2001-01-18 07:50:17 +0000255>>> print C
Fred Drakee5c73522000-08-19 16:54:57 +0000256Set-Cookie: number="I7\012.";
257Set-Cookie: string=seven;
258\end{verbatim}