-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecontainer.py
More file actions
544 lines (238 loc) · 9.59 KB
/
Copy pathcookiecontainer.py
File metadata and controls
544 lines (238 loc) · 9.59 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
Content-Transfer-Encoding: 8Bit
Content-Disposition: attachment; filename="cookiecontainer.py"
#!/usr/bin/env python
"""
CookieContainer
This object stores and retrieves cookies IAW RFC 2109 & RFC 2068
$Id: cookiecontainer.py,v 1.8 2001/06/08 12:12:37 cvsuser Exp $
"""
__author__="""
Downright Software LLC
http://www.downright.com
"""
__copyright__="""
Copyright (c) 2000 Downright Software LLC. All Rights Reserved.
Distributed and Licensed under the provisions of the WebNudge
Open Source License (Version 1.0) which is included by reference.
The WebNudge Open Source License can be found in the file WOSLV10.TXT
in the source distribution kit.
"""
__version__="$Revision: 1.8 $"[11:-2]
import re
import time
import urlparse
import string
import webnudge.util.misc
def CookieContainerException(Exception):
def __init__(self, message):
self._message = message
def __str__(self):
return self._message
###########################################################
class CookieContainer:
###########################################################
"""
This object stores and retrieves cookies IAW RFC 2109 & RFC 2068
"""
#----------------------------------------------------------
def __init__(self, listelement=None):
#----------------------------------------------------------
"""
Constructor
"""
self._cookiedict = {}
# Match dates of this form:
# Monday, 05-Feb-2001 08:00:00 GMT
self._DatePattern = re.compile(r"""
(?P<weekday> # Start of group 'weekday'
[A-za-z]+ # Any word of at least one letter
) # End of group 'weekday'
\s*\,\s* # a literal comma after weekday
(?P<day> # Start of group 'day'
\d\d # two digits
) # End of group 'day'
- # literal hyphen
(?P<month> # Start of group 'month'
[A-za-z]+ # three letters
) # End of group 'month'
- # literal hyphen
(?P<year> # Start of group 'year'
\d+ # some digits
) # End of group 'year'
\s+ # a space or more
(?P<hour> # Start of group 'hour'
\d\d # two digits
) # End of group 'hour'
: # a colon
(?P<minute> # Start of group 'minute'
\d\d # two digits
) # End of group 'minute'
: # a colon
(?P<second> # Start of group 'second'
\d\d # two digits
) # End of group 'second'
\s+ # some whitespace
GMT # literal 'GMT
""", re.VERBOSE | re.IGNORECASE)
self._DateFormat = "%4d-%2s-%2s %2s:%2s:%2s" # yyyy-mm-dd hh:mm:ss
self._MonthDict = {
"jan" : "01",
"feb" : "02",
"mar" : "03",
"apr" : "04",
"may" : "05",
"jun" : "06",
"jul" : "07",
"aug" : "08",
"sep" : "09",
"oct" : "10",
"nov" : "11",
"dec" : "12"
}
#----------------------------------------------------------
def __str__(self):
#----------------------------------------------------------
"""
Report ourself as a string
"""
return str(self._cookiedict)
#----------------------------------------------------------
def isempty(self):
#----------------------------------------------------------
"""
Report presence of cookies
"""
return not self._cookiedict
#----------------------------------------------------------
def clear(self):
#----------------------------------------------------------
"""
Empty out the cookies
"""
self._cookiedict.clear()
#----------------------------------------------------------
def loadFromHeaders(self, defaultdomain, headers):
#----------------------------------------------------------
"""
Extract 'set-cookie' from headers from RawHTMLPage
Return a count of the new cookies added
"""
count = 0
cookieheaderlist = headers.getallmatchingheaders("set-cookie")
for cookieheader in cookieheaderlist:
cookie = {
"domain" : defaultdomain,
"path" : "/",
"secure" : "no"
}
# split on ';' after dropping 'set-cookie:'
tokenlist = string.split(cookieheader[12:],";")
# assume name is the first token
token = string.strip(tokenlist[0])
index = string.find(token, "=")
if index <= 0:
continue
cookie["name"] = token[:index]
cookie["value"] = token[index+1:]
for token in tokenlist[1:]:
# split on the first '=', except for secure
token = string.strip(token)
if token == "secure":
cookie["secure"] = "yes"
continue
index = string.find(token, "=")
if index <= 0:
continue
key = string.lower(token[:index])
value = token[index+1:]
if key == "expires":
cookie[key] = self._convertExpirationDate(value)
else:
cookie[key] = value
self._cookiedict[cookie["name"]] = cookie
count = count + 1
return count
#----------------------------------------------------------
def returnCookieList(self, url):
#----------------------------------------------------------
"""
Return a list of name:value tuples for cookies that
fit the url
"""
scheme,netloc,path,parameters,query,fragment = urlparse.urlparse(
url
)
returnlist = []
for cookie in self._cookiedict.values():
if len(netloc) < len(cookie["domain"]):
continue
# The url must be in the domain the cookie specifies
if netloc[len(netloc)-len(cookie["domain"]):] != cookie["domain"]:
continue
# the path must include the path the domain specifies
if path and string.find(path, cookie["path"]) != 0:
continue
# if we have an expiration date, check for it
expirationdate = cookie.get("expires", None)
if expirationdate and expirationdate <= time.time():
continue
returnlist.append((cookie["name"],cookie["value"]))
return returnlist
#----------------------------------------------------------
def _convertExpirationDate(self, value):
#----------------------------------------------------------
"""
convert a date string of the form
'Dayofweek, dd-mmm-yyyy hh:mm:ss GMT'
into a python date.
"""
# look for a date we can understand
match = self._DatePattern.search(value)
if not match:
return None
# allow for a two digit year
# redhat is one of the offenders
if len(match.group("year")) == 4:
year = int(match.group("year"))
else:
year = 2000 + int(match.group("year"))
# 32 bit unix time chokes after 2038
year = min(2037, year)
# kludge alert! I can't find a slick way to convert
# this date, so I'm going to convert it to our database
# format and use code that I know works
datestr = self._DateFormat % (
year,
self._MonthDict[string.lower(match.group("month"))],
match.group("day"),
match.group("hour"),
match.group("minute"),
match.group("second"),
)
return webnudge.util.misc.strtime(datestr)
#----------------------------------------------------------
if __name__ == "__main__":
#----------------------------------------------------------
"""
Code for commandline testing
"""
import sys
if len(sys.argv) != 2:
print "Usage: cookiecontainer.py <url>"
sys.exit(-1)
cookiecontainer = CookieContainer()
import webnudge.util.rawhtmlpage
page = webnudge.util.rawhtmlpage.RawHTMLPage()
page.load(sys.argv[1], "GET", [], cookiecontainer, debuglevel=1)
if not page:
print "*** Error *** %s" % (page._message)
sys.exit(-1)
print "*" * 30
print page._data
print "*" * 30
print "cookie dict"
for key, value in cookiecontainer._cookiedict.items():
sys.stdout.write("%s = %s\n" % (key, value))
print "cookies returned"
for item in page._cookiesreturned:
print item