-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCookie.py
163 lines (118 loc) · 4.51 KB
/
Cookie.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import http.cookies as CookieEngine
from MiscUtils.Funcs import positiveId
class Cookie:
"""Delicious cookies.
Cookie is used to create cookies that have additional attributes
beyond their value.
Note that web browsers don't typically send any information with
the cookie other than its value. Therefore `HTTPRequest.cookie`
simply returns a value such as an integer or a string.
When the server sends cookies back to the browser, it can send a cookie
that simply has a value, or the cookie can be accompanied by various
attributes (domain, path, max-age, ...) as described in `RFC 2109`_.
Therefore, in `HTTPResponse`, `setCookie` can take either an instance of
the `Cookie` class, as defined in this module, or a value.
Note that `Cookie` values get pickled (see the `pickle` module), so
you can set and get cookies that are integers, lists, dictionaries, etc.
.. _`RFC 2109`: ftp://ftp.isi.edu/in-notes/rfc2109.txt
"""
# Future
#
# * This class should provide error checking in the setFoo()
# methods. Or maybe our internal Cookie implementation
# already does that?
# * This implementation is probably not as efficient as it
# should be, [a] it works and [b] the interface is stable.
# We can optimize later.
# region Init
def __init__(self, name, value):
"""Create a cookie.
Properties other than `name` and `value` are set with methods.
"""
self._cookies = CookieEngine.SimpleCookie()
self._name = name
self._value = value
self._cookies[name] = value
self._cookie = self._cookies[name]
def __repr__(self):
return ('{}(id=0x{:x}, name={!r}, domain={!r},'
' path={!r}, value={!r}, expires={!r}, maxAge={!r}').format(
self.__class__.__name__, positiveId(self),
self.name(), self.domain(),
self.path(), self.value(), self.expires(), self.maxAge())
# endregion Init
# region Accessors
def comment(self):
return self._cookie['comment']
def domain(self):
return self._cookie['domain']
def expires(self):
return self._cookie['expires']
def maxAge(self):
return self._cookie['max-age']
def name(self):
return self._name
def path(self):
return self._cookie['path']
def isSecure(self):
return self._cookie['secure']
def httpOnly(self):
return self._cookie['httponly']
def sameSite(self):
try:
return self._cookie['samesite']
except KeyError: # Python < 3.8
return ''
def value(self):
return self._value
def version(self):
return self._cookie['version']
# endregion Accessors
# region Setters
def setComment(self, comment):
self._cookie['comment'] = comment
def setDomain(self, domain):
self._cookie['domain'] = domain
def setExpires(self, expires):
self._cookie['expires'] = expires
def setMaxAge(self, maxAge):
self._cookie['max-age'] = maxAge
def setPath(self, path):
self._cookie['path'] = path
def setSecure(self, secure=True):
self._cookie['secure'] = secure
def setHttpOnly(self, httpOnly=True):
self._cookie['httponly'] = httpOnly
def setSameSite(self, sameSite='Strict'):
try:
self._cookie['samesite'] = sameSite
except CookieEngine.CookieError: # Python < 3.8
pass
def setValue(self, value):
self._value = value
self._cookies[self._name] = value
def setVersion(self, version):
self._cookie['version'] = version
# endregion Setters
# region Misc
def delete(self):
"""Delete a cookie.
When sent, this should delete the cookie from the user's
browser, by making it empty, expiring it in the past,
and setting its max-age to 0. One of these will delete
the cookie for any browser (which one actually works
depends on the browser).
"""
self._value = ''
self._cookie['expires'] = "Mon, 01-Jan-1900 00:00:00 GMT"
self._cookie['max-age'] = 0
def headerValue(self):
"""Return header value.
Returns a string with the value that should be used
in the HTTP headers.
"""
values = list(self._cookies.values())
if len(values) != 1:
raise ValueError('Invalid cookie')
return values[0].OutputString()
# endregion Misc