forked from RaghavSood/FBMessageScraper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
group_dumper.py
106 lines (94 loc) · 3.45 KB
/
group_dumper.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
import urllib2
import urllib
import gzip
import os
import json
import sys
import time
import StringIO
__author__ = "Raghav Sood"
__copyright__ = "Copyright 2014"
__credits__ = ["Raghav Sood"]
__license__ = "CC"
__version__ = "1.0"
__maintainer__ = "Raghav Sood"
__email__ = "[email protected]"
__status__ = "Production"
if len(sys.argv) <= 1:
print "Usage:\n python dumper.py [conversation ID] [chunk_size (recommended: 2000)] [{optional} offset location (default: 0)]"
print "Example conversation with Raghav Sood"
print " python dumper.py 1075686392 2000 0"
sys.exit()
error_timeout = 30 # Change this to alter error timeout (seconds)
general_timeout = 7 # Change this to alter waiting time afetr every request (seconds)
messages = []
talk = sys.argv[1]
offset = int(sys.argv[3]) if len(sys.argv) >= 4 else int("0")
messages_data = "lolno"
end_mark = "\"payload\":{\"end_of_history\""
limit = int(sys.argv[2])
headers = {"origin": "https://www.facebook.com",
"accept-encoding": "gzip,deflate",
"accept-language": "en-US,en;q=0.8",
"cookie": "your_cookie_value",
"pragma": "no-cache",
"user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.122 Safari/537.36",
"content-type": "application/x-www-form-urlencoded",
"accept": "*/*",
"cache-control": "no-cache",
"referer": "https://www.facebook.com/messages/zuck"}
base_directory = "Messages/"
directory = base_directory + str(talk) + "/"
pretty_directory = base_directory + str(talk) + "/Pretty/"
try:
os.makedirs(directory)
except OSError:
pass # already exists
try:
os.makedirs(pretty_directory)
except OSError:
pass # already exists
while end_mark not in messages_data:
data_text = {"messages[thread_fbids][" + str(talk) + "][offset]": str(offset),
"messages[thread_fbids][" + str(talk) + "][limit]": str(limit),
"client": "web_messenger",
"__user": "your_user_id",
"__a": "your __a",
"__dyn": "your __dyn",
"__req": "your __req",
"fb_dtsg": "your_fb_dtsg",
"ttstamp": "your_ttstamp",
"__rev": "your __rev"}
data = urllib.urlencode(data_text)
url = "https://www.facebook.com/ajax/mercury/thread_info.php"
print "Retrieving messages " + str(offset) + "-" + str(limit+offset) + " for conversation ID " + str(talk)
req = urllib2.Request(url, data, headers)
response = urllib2.urlopen(req)
compressed = StringIO.StringIO(response.read())
decompressedFile = gzip.GzipFile(fileobj=compressed)
outfile = open(directory + str(offset) + "-" + str(limit+offset) + ".json", 'w')
messages_data = decompressedFile.read()
messages_data = messages_data[9:]
json_data = json.loads(messages_data)
if json_data is not None and json_data['payload'] is not None:
try:
messages = messages + json_data['payload']['actions']
except KeyError:
pass #no more messages
else:
print "Error in retrieval. Retrying after " + str(error_timeout) + "s"
print "Data Dump:"
print json_data
time.sleep(error_timeout)
continue
outfile.write(messages_data)
outfile.close()
command = "python -mjson.tool " + directory + str(offset) + "-" + str(limit+offset) + ".json > " + pretty_directory + str(offset) + "-" + str(limit+offset) + ".pretty.json"
os.system(command)
offset = offset + limit
time.sleep(general_timeout)
finalfile = open(directory + "complete.json", 'wb')
finalfile.write(json.dumps(messages))
finalfile.close()
command = "python -mjson.tool " + directory + "complete.json > " + pretty_directory + "complete.pretty.json"
os.system(command)