Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 1 | #### |
| 2 | # Copyright 2000 by Timothy O'Malley <timo@alum.mit.edu> |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 3 | # |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 4 | # All Rights Reserved |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 5 | # |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 6 | # Permission to use, copy, modify, and distribute this software |
| 7 | # and its documentation for any purpose and without fee is hereby |
| 8 | # granted, provided that the above copyright notice appear in all |
| 9 | # copies and that both that copyright notice and this permission |
| 10 | # notice appear in supporting documentation, and that the name of |
| 11 | # Timothy O'Malley not be used in advertising or publicity |
| 12 | # pertaining to distribution of the software without specific, written |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 13 | # prior permission. |
| 14 | # |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 15 | # Timothy O'Malley DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS |
| 16 | # SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY |
| 17 | # AND FITNESS, IN NO EVENT SHALL Timothy O'Malley BE LIABLE FOR |
| 18 | # ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
| 19 | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, |
| 20 | # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS |
| 21 | # ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 22 | # PERFORMANCE OF THIS SOFTWARE. |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 23 | # |
| 24 | #### |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 25 | # |
| 26 | # Id: Cookie.py,v 2.29 2000/08/23 05:28:49 timo Exp |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 27 | # by Timothy O'Malley <timo@alum.mit.edu> |
| 28 | # |
| 29 | # Cookie.py is a Python module for the handling of HTTP |
| 30 | # cookies as a Python dictionary. See RFC 2109 for more |
| 31 | # information on cookies. |
| 32 | # |
| 33 | # The original idea to treat Cookies as a dictionary came from |
Andrew M. Kuchling | 0b29b11 | 2000-08-24 11:52:33 +0000 | [diff] [blame] | 34 | # Dave Mitchell (davem@magnet.com) in 1995, when he released the |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 35 | # first version of nscookie.py. |
| 36 | # |
| 37 | #### |
| 38 | |
Guido van Rossum | 58b6f5b | 2001-04-06 19:39:11 +0000 | [diff] [blame] | 39 | r""" |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 40 | Here's a sample session to show how to use this module. |
| 41 | At the moment, this is the only documentation. |
| 42 | |
| 43 | The Basics |
| 44 | ---------- |
| 45 | |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 46 | Importing is easy... |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 47 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 48 | >>> from http import cookies |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 49 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 50 | Most of the time you start by creating a cookie. |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 51 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 52 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 53 | |
| 54 | Once you've created your Cookie, you can add values just as if it were |
| 55 | a dictionary. |
| 56 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 57 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 58 | >>> C["fig"] = "newton" |
| 59 | >>> C["sugar"] = "wafer" |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 60 | >>> C.output() |
| 61 | 'Set-Cookie: fig=newton\r\nSet-Cookie: sugar=wafer' |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 62 | |
| 63 | Notice that the printable representation of a Cookie is the |
| 64 | appropriate format for a Set-Cookie: header. This is the |
| 65 | default behavior. You can change the header and printed |
Walter Dörwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 66 | attributes by using the .output() function |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 67 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 68 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 69 | >>> C["rocky"] = "road" |
| 70 | >>> C["rocky"]["path"] = "/cookie" |
Guido van Rossum | fff80df | 2007-02-09 20:33:44 +0000 | [diff] [blame] | 71 | >>> print(C.output(header="Cookie:")) |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 72 | Cookie: rocky=road; Path=/cookie |
Guido van Rossum | fff80df | 2007-02-09 20:33:44 +0000 | [diff] [blame] | 73 | >>> print(C.output(attrs=[], header="Cookie:")) |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 74 | Cookie: rocky=road |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 75 | |
| 76 | The load() method of a Cookie extracts cookies from a string. In a |
| 77 | CGI script, you would use this method to extract the cookies from the |
| 78 | HTTP_COOKIE environment variable. |
| 79 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 80 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 81 | >>> C.load("chips=ahoy; vienna=finger") |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 82 | >>> C.output() |
| 83 | 'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger' |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 84 | |
| 85 | The load() method is darn-tootin smart about identifying cookies |
| 86 | within a string. Escaped quotation marks, nested semicolons, and other |
| 87 | such trickeries do not confuse it. |
| 88 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 89 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 90 | >>> C.load('keebler="E=everybody; L=\\"Loves\\"; fudge=\\012;";') |
Guido van Rossum | fff80df | 2007-02-09 20:33:44 +0000 | [diff] [blame] | 91 | >>> print(C) |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 92 | Set-Cookie: keebler="E=everybody; L=\"Loves\"; fudge=\012;" |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 93 | |
| 94 | Each element of the Cookie also supports all of the RFC 2109 |
| 95 | Cookie attributes. Here's an example which sets the Path |
| 96 | attribute. |
| 97 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 98 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 99 | >>> C["oreo"] = "doublestuff" |
| 100 | >>> C["oreo"]["path"] = "/" |
Guido van Rossum | fff80df | 2007-02-09 20:33:44 +0000 | [diff] [blame] | 101 | >>> print(C) |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 102 | Set-Cookie: oreo=doublestuff; Path=/ |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 103 | |
| 104 | Each dictionary element has a 'value' attribute, which gives you |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 105 | back the value associated with the key. |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 106 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 107 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 108 | >>> C["twix"] = "none for you" |
| 109 | >>> C["twix"].value |
| 110 | 'none for you' |
| 111 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 112 | The SimpleCookie expects that all values should be standard strings. |
| 113 | Just to be sure, SimpleCookie invokes the str() builtin to convert |
| 114 | the value to a string, when the values are set dictionary-style. |
| 115 | |
Georg Brandl | 2442015 | 2008-05-26 16:32:26 +0000 | [diff] [blame] | 116 | >>> C = cookies.SimpleCookie() |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 117 | >>> C["number"] = 7 |
| 118 | >>> C["string"] = "seven" |
| 119 | >>> C["number"].value |
| 120 | '7' |
| 121 | >>> C["string"].value |
| 122 | 'seven' |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 123 | >>> C.output() |
| 124 | 'Set-Cookie: number=7\r\nSet-Cookie: string=seven' |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 125 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 126 | Finis. |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 127 | """ |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 128 | |
| 129 | # |
| 130 | # Import our required modules |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 131 | # |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 132 | import re |
Martin v. Löwis | 02d893c | 2001-08-02 07:15:29 +0000 | [diff] [blame] | 133 | import string |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 134 | |
Georg Brandl | 6101395 | 2008-05-28 15:56:30 +0000 | [diff] [blame] | 135 | __all__ = ["CookieError", "BaseCookie", "SimpleCookie"] |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 136 | |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 137 | _nulljoin = ''.join |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 138 | _semispacejoin = '; '.join |
Georg Brandl | 8246c43 | 2005-08-25 07:32:42 +0000 | [diff] [blame] | 139 | _spacejoin = ' '.join |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 140 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 141 | # |
| 142 | # Define an exception visible to External modules |
| 143 | # |
| 144 | class CookieError(Exception): |
| 145 | pass |
| 146 | |
| 147 | |
| 148 | # These quoting routines conform to the RFC2109 specification, which in |
| 149 | # turn references the character definitions from RFC2068. They provide |
| 150 | # a two-way quoting algorithm. Any non-text character is translated |
| 151 | # into a 4 character sequence: a forward-slash followed by the |
| 152 | # three-digit octal equivalent of the character. Any '\' or '"' is |
Martin Panter | 46f5072 | 2016-05-26 05:35:26 +0000 | [diff] [blame] | 153 | # quoted with a preceding '\' slash. |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 154 | # Because of the way browsers really handle cookies (as opposed to what |
| 155 | # the RFC says) we also encode "," and ";". |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 156 | # |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 157 | # These are taken from RFC2068 and RFC2109. |
| 158 | # _LegalChars is the list of chars which don't require "'s |
| 159 | # _Translator hash-table for fast quoting |
| 160 | # |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 161 | _LegalChars = string.ascii_letters + string.digits + "!#$%&'*+-.^_`|~:" |
| 162 | _UnescapedChars = _LegalChars + ' ()/<=>?@[]{}' |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 163 | |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 164 | _Translator = {n: '\\%03o' % n |
| 165 | for n in set(range(256)) - set(map(ord, _UnescapedChars))} |
| 166 | _Translator.update({ |
| 167 | ord('"'): '\\"', |
| 168 | ord('\\'): '\\\\', |
| 169 | }) |
R. David Murray | e05ca2a | 2010-12-28 18:54:13 +0000 | [diff] [blame] | 170 | |
Anish Shah | 102d813 | 2016-02-07 05:36:00 +0500 | [diff] [blame] | 171 | _is_legal_key = re.compile('[%s]+' % re.escape(_LegalChars)).fullmatch |
R. David Murray | e05ca2a | 2010-12-28 18:54:13 +0000 | [diff] [blame] | 172 | |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 173 | def _quote(str): |
Georg Brandl | 9cf32a1 | 2009-09-04 08:28:01 +0000 | [diff] [blame] | 174 | r"""Quote a string for use in a cookie header. |
| 175 | |
| 176 | If the string does not need to be double-quoted, then just return the |
| 177 | string. Otherwise, surround the string in doublequotes and quote |
| 178 | (with a \) special characters. |
| 179 | """ |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 180 | if str is None or _is_legal_key(str): |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 181 | return str |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 182 | else: |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 183 | return '"' + str.translate(_Translator) + '"' |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 184 | |
| 185 | |
| 186 | _OctalPatt = re.compile(r"\\[0-3][0-7][0-7]") |
| 187 | _QuotePatt = re.compile(r"[\\].") |
| 188 | |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 189 | def _unquote(str): |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 190 | # If there aren't any doublequotes, |
| 191 | # then there can't be any special characters. See RFC 2109. |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 192 | if str is None or len(str) < 2: |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 193 | return str |
| 194 | if str[0] != '"' or str[-1] != '"': |
| 195 | return str |
| 196 | |
| 197 | # We have to assume that we must decode this string. |
| 198 | # Down to work. |
| 199 | |
| 200 | # Remove the "s |
| 201 | str = str[1:-1] |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 202 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 203 | # Check for special sequences. Examples: |
| 204 | # \012 --> \n |
| 205 | # \" --> " |
| 206 | # |
| 207 | i = 0 |
| 208 | n = len(str) |
| 209 | res = [] |
| 210 | while 0 <= i < n: |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 211 | o_match = _OctalPatt.search(str, i) |
| 212 | q_match = _QuotePatt.search(str, i) |
| 213 | if not o_match and not q_match: # Neither matched |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 214 | res.append(str[i:]) |
| 215 | break |
| 216 | # else: |
| 217 | j = k = -1 |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 218 | if o_match: |
| 219 | j = o_match.start(0) |
| 220 | if q_match: |
| 221 | k = q_match.start(0) |
| 222 | if q_match and (not o_match or k < j): # QuotePatt matched |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 223 | res.append(str[i:k]) |
| 224 | res.append(str[k+1]) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 225 | i = k + 2 |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 226 | else: # OctalPatt matched |
| 227 | res.append(str[i:j]) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 228 | res.append(chr(int(str[j+1:j+4], 8))) |
| 229 | i = j + 4 |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 230 | return _nulljoin(res) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 231 | |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 232 | # The _getdate() routine is used to set the expiration time in the cookie's HTTP |
| 233 | # header. By default, _getdate() returns the current time in the appropriate |
| 234 | # "expires" format for a Set-Cookie header. The one optional argument is an |
| 235 | # offset from now, in seconds. For example, an offset of -3600 means "one hour |
| 236 | # ago". The offset may be a floating point number. |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 237 | # |
| 238 | |
| 239 | _weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] |
| 240 | |
| 241 | _monthname = [None, |
| 242 | 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', |
| 243 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] |
| 244 | |
| 245 | def _getdate(future=0, weekdayname=_weekdayname, monthname=_monthname): |
| 246 | from time import gmtime, time |
| 247 | now = time() |
| 248 | year, month, day, hh, mm, ss, wd, y, z = gmtime(now + future) |
Senthil Kumaran | 00c2ec2 | 2012-05-20 12:05:16 +0800 | [diff] [blame] | 249 | return "%s, %02d %3s %4d %02d:%02d:%02d GMT" % \ |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 250 | (weekdayname[wd], day, monthname[month], year, hh, mm, ss) |
| 251 | |
| 252 | |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 253 | class Morsel(dict): |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 254 | """A class to hold ONE (key, value) pair. |
Georg Brandl | 9cf32a1 | 2009-09-04 08:28:01 +0000 | [diff] [blame] | 255 | |
| 256 | In a cookie, each such pair may have several attributes, so this class is |
| 257 | used to keep the attributes associated with the appropriate key,value pair. |
| 258 | This class also includes a coded_value attribute, which is used to hold |
| 259 | the network representation of the value. This is most useful when Python |
| 260 | objects are pickled for network transit. |
| 261 | """ |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 262 | # RFC 2109 lists these attributes as reserved: |
| 263 | # path comment domain |
| 264 | # max-age secure version |
Tim Peters | 88869f9 | 2001-01-14 23:36:06 +0000 | [diff] [blame] | 265 | # |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 266 | # For historical reasons, these attributes are also reserved: |
| 267 | # expires |
| 268 | # |
Benjamin Peterson | 35e661c | 2008-09-06 19:37:35 +0000 | [diff] [blame] | 269 | # This is an extension from Microsoft: |
| 270 | # httponly |
| 271 | # |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 272 | # This dictionary provides a mapping from the lowercase |
| 273 | # variant on the left to the appropriate traditional |
| 274 | # formatting on the right. |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 275 | _reserved = { |
| 276 | "expires" : "expires", |
| 277 | "path" : "Path", |
| 278 | "comment" : "Comment", |
| 279 | "domain" : "Domain", |
| 280 | "max-age" : "Max-Age", |
Benjamin Peterson | bd34162 | 2015-01-16 20:43:55 -0500 | [diff] [blame] | 281 | "secure" : "Secure", |
| 282 | "httponly" : "HttpOnly", |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 283 | "version" : "Version", |
| 284 | } |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 285 | |
R David Murray | cd0f74b | 2013-08-25 11:09:02 -0400 | [diff] [blame] | 286 | _flags = {'secure', 'httponly'} |
| 287 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 288 | def __init__(self): |
| 289 | # Set defaults |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 290 | self._key = self._value = self._coded_value = None |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 291 | |
| 292 | # Set default attributes |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 293 | for key in self._reserved: |
| 294 | dict.__setitem__(self, key, "") |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 295 | |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 296 | @property |
| 297 | def key(self): |
| 298 | return self._key |
| 299 | |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 300 | @property |
| 301 | def value(self): |
| 302 | return self._value |
| 303 | |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 304 | @property |
| 305 | def coded_value(self): |
| 306 | return self._coded_value |
| 307 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 308 | def __setitem__(self, K, V): |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 309 | K = K.lower() |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 310 | if not K in self._reserved: |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 311 | raise CookieError("Invalid attribute %r" % (K,)) |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 312 | dict.__setitem__(self, K, V) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 313 | |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 314 | def setdefault(self, key, val=None): |
| 315 | key = key.lower() |
| 316 | if key not in self._reserved: |
| 317 | raise CookieError("Invalid attribute %r" % (key,)) |
| 318 | return dict.setdefault(self, key, val) |
| 319 | |
| 320 | def __eq__(self, morsel): |
| 321 | if not isinstance(morsel, Morsel): |
| 322 | return NotImplemented |
| 323 | return (dict.__eq__(self, morsel) and |
| 324 | self._value == morsel._value and |
| 325 | self._key == morsel._key and |
| 326 | self._coded_value == morsel._coded_value) |
| 327 | |
| 328 | __ne__ = object.__ne__ |
| 329 | |
| 330 | def copy(self): |
| 331 | morsel = Morsel() |
| 332 | dict.update(morsel, self) |
| 333 | morsel.__dict__.update(self.__dict__) |
| 334 | return morsel |
| 335 | |
| 336 | def update(self, values): |
| 337 | data = {} |
| 338 | for key, val in dict(values).items(): |
| 339 | key = key.lower() |
| 340 | if key not in self._reserved: |
| 341 | raise CookieError("Invalid attribute %r" % (key,)) |
| 342 | data[key] = val |
| 343 | dict.update(self, data) |
| 344 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 345 | def isReservedKey(self, K): |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 346 | return K.lower() in self._reserved |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 347 | |
Serhiy Storchaka | cc28337 | 2017-01-13 09:23:15 +0200 | [diff] [blame] | 348 | def set(self, key, val, coded_val): |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 349 | if key.lower() in self._reserved: |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 350 | raise CookieError('Attempt to set a reserved key %r' % (key,)) |
| 351 | if not _is_legal_key(key): |
| 352 | raise CookieError('Illegal key %r' % (key,)) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 353 | |
| 354 | # It's a good key, so save it. |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 355 | self._key = key |
| 356 | self._value = val |
| 357 | self._coded_value = coded_val |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 358 | |
Serhiy Storchaka | 6c32585 | 2015-03-18 18:03:40 +0200 | [diff] [blame] | 359 | def __getstate__(self): |
| 360 | return { |
| 361 | 'key': self._key, |
| 362 | 'value': self._value, |
| 363 | 'coded_value': self._coded_value, |
| 364 | } |
| 365 | |
| 366 | def __setstate__(self, state): |
| 367 | self._key = state['key'] |
| 368 | self._value = state['value'] |
| 369 | self._coded_value = state['coded_value'] |
| 370 | |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 371 | def output(self, attrs=None, header="Set-Cookie:"): |
| 372 | return "%s %s" % (header, self.OutputString(attrs)) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 373 | |
Andrew M. Kuchling | 0b29b11 | 2000-08-24 11:52:33 +0000 | [diff] [blame] | 374 | __str__ = output |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 375 | |
Andrew M. Kuchling | 0b29b11 | 2000-08-24 11:52:33 +0000 | [diff] [blame] | 376 | def __repr__(self): |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 377 | return '<%s: %s>' % (self.__class__.__name__, self.OutputString()) |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 378 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 379 | def js_output(self, attrs=None): |
| 380 | # Print javascript |
| 381 | return """ |
Georg Brandl | 03a33ea | 2005-06-26 21:02:49 +0000 | [diff] [blame] | 382 | <script type="text/javascript"> |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 383 | <!-- begin hiding |
Georg Brandl | 03a33ea | 2005-06-26 21:02:49 +0000 | [diff] [blame] | 384 | document.cookie = \"%s\"; |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 385 | // end hiding --> |
| 386 | </script> |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 387 | """ % (self.OutputString(attrs).replace('"', r'\"')) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 388 | |
| 389 | def OutputString(self, attrs=None): |
| 390 | # Build up our result |
| 391 | # |
| 392 | result = [] |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 393 | append = result.append |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 394 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 395 | # First, the key=value pair |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 396 | append("%s=%s" % (self.key, self.coded_value)) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 397 | |
| 398 | # Now add any defined attributes |
Fred Drake | 8152d32 | 2000-12-12 23:20:45 +0000 | [diff] [blame] | 399 | if attrs is None: |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 400 | attrs = self._reserved |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 401 | items = sorted(self.items()) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 402 | for key, value in items: |
| 403 | if value == "": |
| 404 | continue |
| 405 | if key not in attrs: |
| 406 | continue |
| 407 | if key == "expires" and isinstance(value, int): |
| 408 | append("%s=%s" % (self._reserved[key], _getdate(value))) |
| 409 | elif key == "max-age" and isinstance(value, int): |
| 410 | append("%s=%d" % (self._reserved[key], value)) |
Serhiy Storchaka | 9c1a9b2 | 2015-03-18 10:59:57 +0200 | [diff] [blame] | 411 | elif key in self._flags: |
| 412 | if value: |
| 413 | append(str(self._reserved[key])) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 414 | else: |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 415 | append("%s=%s" % (self._reserved[key], value)) |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 416 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 417 | # Return the result |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 418 | return _semispacejoin(result) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 419 | |
| 420 | |
| 421 | # |
| 422 | # Pattern for finding cookie |
| 423 | # |
| 424 | # This used to be strict parsing based on the RFC2109 and RFC2068 |
| 425 | # specifications. I have since discovered that MSIE 3.0x doesn't |
| 426 | # follow the character rules outlined in those specs. As a |
| 427 | # result, the parsing rules here are less strict. |
| 428 | # |
| 429 | |
Benjamin Peterson | 9bd476e | 2015-05-23 10:36:48 -0500 | [diff] [blame] | 430 | _LegalKeyChars = r"\w\d!#%&'~_`><@,:/\$\*\+\-\.\^\|\)\(\?\}\{\=" |
R David Murray | 44b548d | 2016-09-08 13:59:53 -0400 | [diff] [blame] | 431 | _LegalValueChars = _LegalKeyChars + r'\[\]' |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 432 | _CookiePattern = re.compile(r""" |
Antoine Pitrou | 7d0b8f9 | 2014-09-17 00:23:55 +0200 | [diff] [blame] | 433 | \s* # Optional whitespace at start of cookie |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 434 | (?P<key> # Start of group 'key' |
Benjamin Peterson | 9bd476e | 2015-05-23 10:36:48 -0500 | [diff] [blame] | 435 | [""" + _LegalKeyChars + r"""]+? # Any word of at least one letter |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 436 | ) # End of group 'key' |
R David Murray | cd0f74b | 2013-08-25 11:09:02 -0400 | [diff] [blame] | 437 | ( # Optional group: there may not be a value. |
| 438 | \s*=\s* # Equal Sign |
| 439 | (?P<val> # Start of group 'val' |
| 440 | "(?:[^\\"]|\\.)*" # Any doublequoted string |
| 441 | | # or |
Senthil Kumaran | aeeba26 | 2012-05-20 16:58:30 +0800 | [diff] [blame] | 442 | \w{3},\s[\w\d\s-]{9,11}\s[\d:]{8}\sGMT # Special case for "expires" attr |
R David Murray | cd0f74b | 2013-08-25 11:09:02 -0400 | [diff] [blame] | 443 | | # or |
Benjamin Peterson | d504f20 | 2015-05-23 10:38:48 -0500 | [diff] [blame] | 444 | [""" + _LegalValueChars + r"""]* # Any word or empty string |
R David Murray | cd0f74b | 2013-08-25 11:09:02 -0400 | [diff] [blame] | 445 | ) # End of group 'val' |
| 446 | )? # End of optional value group |
| 447 | \s* # Any number of spaces. |
| 448 | (\s+|;|$) # Ending either at space, semicolon, or EOS. |
Serhiy Storchaka | bd48d27 | 2016-09-11 12:50:02 +0300 | [diff] [blame] | 449 | """, re.ASCII | re.VERBOSE) # re.ASCII may be removed if safe. |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 450 | |
| 451 | |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 452 | # At long last, here is the cookie class. Using this class is almost just like |
| 453 | # using a dictionary. See this module's docstring for example usage. |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 454 | # |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 455 | class BaseCookie(dict): |
Georg Brandl | 9cf32a1 | 2009-09-04 08:28:01 +0000 | [diff] [blame] | 456 | """A container class for a set of Morsels.""" |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 457 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 458 | def value_decode(self, val): |
| 459 | """real_value, coded_value = value_decode(STRING) |
| 460 | Called prior to setting a cookie's value from the network |
| 461 | representation. The VALUE is the value read from HTTP |
| 462 | header. |
| 463 | Override this function to modify the behavior of cookies. |
| 464 | """ |
| 465 | return val, val |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 466 | |
| 467 | def value_encode(self, val): |
| 468 | """real_value, coded_value = value_encode(VALUE) |
| 469 | Called prior to setting a cookie's value from the dictionary |
| 470 | representation. The VALUE is the value being assigned. |
| 471 | Override this function to modify the behavior of cookies. |
| 472 | """ |
| 473 | strval = str(val) |
| 474 | return strval, strval |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 475 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 476 | def __init__(self, input=None): |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 477 | if input: |
| 478 | self.load(input) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 479 | |
| 480 | def __set(self, key, real_value, coded_value): |
| 481 | """Private method for setting a cookie's value""" |
| 482 | M = self.get(key, Morsel()) |
| 483 | M.set(key, real_value, coded_value) |
Raymond Hettinger | 0a2963c | 2002-06-26 15:19:01 +0000 | [diff] [blame] | 484 | dict.__setitem__(self, key, M) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 485 | |
| 486 | def __setitem__(self, key, value): |
| 487 | """Dictionary style assignment.""" |
Serhiy Storchaka | 8cf7c1c | 2014-11-02 22:18:25 +0200 | [diff] [blame] | 488 | if isinstance(value, Morsel): |
| 489 | # allow assignment of constructed Morsels (e.g. for pickling) |
| 490 | dict.__setitem__(self, key, value) |
| 491 | else: |
| 492 | rval, cval = self.value_encode(value) |
| 493 | self.__set(key, rval, cval) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 494 | |
Georg Brandl | 532efab | 2005-08-24 22:34:21 +0000 | [diff] [blame] | 495 | def output(self, attrs=None, header="Set-Cookie:", sep="\015\012"): |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 496 | """Return a string suitable for HTTP.""" |
| 497 | result = [] |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 498 | items = sorted(self.items()) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 499 | for key, value in items: |
| 500 | result.append(value.output(attrs, header)) |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 501 | return sep.join(result) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 502 | |
Andrew M. Kuchling | 0b29b11 | 2000-08-24 11:52:33 +0000 | [diff] [blame] | 503 | __str__ = output |
| 504 | |
| 505 | def __repr__(self): |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 506 | l = [] |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 507 | items = sorted(self.items()) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 508 | for key, value in items: |
| 509 | l.append('%s=%s' % (key, repr(value.value))) |
| 510 | return '<%s: %s>' % (self.__class__.__name__, _spacejoin(l)) |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 511 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 512 | def js_output(self, attrs=None): |
| 513 | """Return a string suitable for JavaScript.""" |
| 514 | result = [] |
Guido van Rossum | cc2b016 | 2007-02-11 06:12:03 +0000 | [diff] [blame] | 515 | items = sorted(self.items()) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 516 | for key, value in items: |
| 517 | result.append(value.js_output(attrs)) |
Fred Drake | d451ec1 | 2002-04-26 02:29:55 +0000 | [diff] [blame] | 518 | return _nulljoin(result) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 519 | |
| 520 | def load(self, rawdata): |
| 521 | """Load cookies from a string (presumably HTTP_COOKIE) or |
| 522 | from a dictionary. Loading cookies from a dictionary 'd' |
| 523 | is equivalent to calling: |
| 524 | map(Cookie.__setitem__, d.keys(), d.values()) |
| 525 | """ |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 526 | if isinstance(rawdata, str): |
| 527 | self.__parse_string(rawdata) |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 528 | else: |
Benjamin Peterson | 8719ad5 | 2009-09-11 22:24:02 +0000 | [diff] [blame] | 529 | # self.update() wouldn't call our custom __setitem__ |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 530 | for key, value in rawdata.items(): |
| 531 | self[key] = value |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 532 | return |
Fred Drake | ff5364a | 2000-08-24 14:40:35 +0000 | [diff] [blame] | 533 | |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 534 | def __parse_string(self, str, patt=_CookiePattern): |
Antoine Pitrou | b1e3607 | 2014-11-21 01:20:57 +0100 | [diff] [blame] | 535 | i = 0 # Our starting point |
| 536 | n = len(str) # Length of string |
| 537 | parsed_items = [] # Parsed (type, key, value) triples |
| 538 | morsel_seen = False # A key=value pair was previously encountered |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 539 | |
Antoine Pitrou | b1e3607 | 2014-11-21 01:20:57 +0100 | [diff] [blame] | 540 | TYPE_ATTRIBUTE = 1 |
| 541 | TYPE_KEYVALUE = 2 |
| 542 | |
| 543 | # We first parse the whole cookie string and reject it if it's |
| 544 | # syntactically invalid (this helps avoid some classes of injection |
| 545 | # attacks). |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 546 | while 0 <= i < n: |
| 547 | # Start looking for a cookie |
Antoine Pitrou | 7d0b8f9 | 2014-09-17 00:23:55 +0200 | [diff] [blame] | 548 | match = patt.match(str, i) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 549 | if not match: |
| 550 | # No more cookies |
| 551 | break |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 552 | |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 553 | key, value = match.group("key"), match.group("val") |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 554 | i = match.end(0) |
| 555 | |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 556 | if key[0] == "$": |
Antoine Pitrou | b1e3607 | 2014-11-21 01:20:57 +0100 | [diff] [blame] | 557 | if not morsel_seen: |
| 558 | # We ignore attributes which pertain to the cookie |
| 559 | # mechanism as a whole, such as "$Version". |
| 560 | # See RFC 2965. (Does anyone care?) |
| 561 | continue |
| 562 | parsed_items.append((TYPE_ATTRIBUTE, key[1:], value)) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 563 | elif key.lower() in Morsel._reserved: |
Antoine Pitrou | b1e3607 | 2014-11-21 01:20:57 +0100 | [diff] [blame] | 564 | if not morsel_seen: |
| 565 | # Invalid cookie string |
| 566 | return |
| 567 | if value is None: |
| 568 | if key.lower() in Morsel._flags: |
| 569 | parsed_items.append((TYPE_ATTRIBUTE, key, True)) |
R David Murray | cd0f74b | 2013-08-25 11:09:02 -0400 | [diff] [blame] | 570 | else: |
Antoine Pitrou | b1e3607 | 2014-11-21 01:20:57 +0100 | [diff] [blame] | 571 | # Invalid cookie string |
| 572 | return |
| 573 | else: |
| 574 | parsed_items.append((TYPE_ATTRIBUTE, key, _unquote(value))) |
R David Murray | cd0f74b | 2013-08-25 11:09:02 -0400 | [diff] [blame] | 575 | elif value is not None: |
Antoine Pitrou | b1e3607 | 2014-11-21 01:20:57 +0100 | [diff] [blame] | 576 | parsed_items.append((TYPE_KEYVALUE, key, self.value_decode(value))) |
| 577 | morsel_seen = True |
| 578 | else: |
| 579 | # Invalid cookie string |
| 580 | return |
| 581 | |
| 582 | # The cookie string is valid, apply it. |
| 583 | M = None # current morsel |
| 584 | for tp, key, value in parsed_items: |
| 585 | if tp == TYPE_ATTRIBUTE: |
| 586 | assert M is not None |
| 587 | M[key] = value |
| 588 | else: |
| 589 | assert tp == TYPE_KEYVALUE |
| 590 | rval, cval = value |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 591 | self.__set(key, rval, cval) |
| 592 | M = self[key] |
Georg Brandl | 4eff9f7 | 2009-09-04 08:22:00 +0000 | [diff] [blame] | 593 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 594 | |
| 595 | class SimpleCookie(BaseCookie): |
Georg Brandl | 9cf32a1 | 2009-09-04 08:28:01 +0000 | [diff] [blame] | 596 | """ |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 597 | SimpleCookie supports strings as cookie values. When setting |
| 598 | the value using the dictionary assignment notation, SimpleCookie |
| 599 | calls the builtin str() to convert the value to a string. Values |
| 600 | received from HTTP are kept as strings. |
| 601 | """ |
| 602 | def value_decode(self, val): |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 603 | return _unquote(val), val |
| 604 | |
Andrew M. Kuchling | 52ea872 | 2000-08-19 13:01:19 +0000 | [diff] [blame] | 605 | def value_encode(self, val): |
| 606 | strval = str(val) |
Georg Brandl | 76e155a | 2010-07-31 21:04:00 +0000 | [diff] [blame] | 607 | return strval, _quote(strval) |