This repository was archived by the owner on Apr 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhatate.py
324 lines (244 loc) · 8.25 KB
/
hatate.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
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
#!/usr/bin/env python3
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
# hatate -- A general program sends news to Weibo automatically.
# Copyright (C) 2014 Tom Li.
# License: AGPL v3 or later.
import rpweibo
from utils import tweetlen
import queue
from xml.etree.ElementTree import ElementTree
import urllib.request
import re
import time
import threading
import signal
APP_KEY = "1011524190"
APP_SECRET = "1898b3f668368b9f4a6f7ac8ed4a918f"
REDIRECT_URL = "https://api.weibo.com/oauth2/default.html"
USERNAME = ""
PASSWORD = ""
WEB_RSS = "http://www.phoronix.com/rss.php"
WEB_BASEURL = "http://www.phoronix.com/vr.php?"
# send to stdout instead of Weibo
DEBUG = 1
# set the event to stop all threads
global_stop_event = threading.Event()
class Weibo():
SINA_URL_RE = re.compile(r"(http://t.cn/[a-zA-Z0-9]{5,7})")
def __init__(self, application):
self.weibo = rpweibo.Weibo(application)
self.authenticator = None
self._weibo_queue = queue.Queue()
sender = threading.Thread(target=self._sender)
sender.daemon = True
sender.start()
def auth(self):
self.weibo.auth(self.authenticator)
def send(self, news):
self._weibo_queue.put(news)
def get_news_guid(self):
def chunks(lst, n):
for i in range(0, len(lst), n):
yield lst[i:i + n]
# get short urls from tweets
short_urls = []
tweets = self.weibo.get("statuses/user_timeline", trim_user=1, count=200)["statuses"]
for tweet in tweets:
if "-" not in tweet["text"]:
continue
match_url = self.SINA_URL_RE.findall(tweet["text"])
try:
url = match_url[0]
except IndexError:
continue
short_urls.append(url)
# because of the limitation of the API
# split short urls list into chunks, 20 urls each
short_urls_chunks = list(chunks(short_urls, 20))
# revert short urls back to original urls
original_urls_list = []
for url_chunk in short_urls_chunks:
original_urls = self.weibo.get("short_url/expand", url_short=url_chunk)["urls"]
for url in original_urls:
if WEB_BASEURL not in url["url_long"]:
continue
original_urls_list.append(url["url_long"])
return original_urls_list
@staticmethod
def _generate_tweet(text, url):
def cut_last(weibo):
idx = 0
cut = 0
for i in weibo:
idx += 1
if i == " ":
cut = idx
return weibo[0:cut - 1]
free = len(url) - 1 # 1 for safe.
while 140 - tweetlen(text) <= free:
text = cut_last(text) + "..."
return text + url
def _sender(self):
while not global_stop_event.is_set():
news = self._weibo_queue.get(block=True)
text = Weibo._generate_tweet("%s - %s" % (news.title, news.description),
news.link)
success = self._send(text)
if success:
news.status = News.SENT
else:
news.status = News.FAIL
global_stop_event.wait(5)
def _send(self, text):
if DEBUG:
print(text)
return True
failed_count = 0
while not global_stop_event.is_set():
try:
self.weibo.post("statuses/update", status=text)
return True
except rpweibo.WeiboError:
failed_count += 1
if failed_count > 5:
return False
global_stop_event.wait(10)
class News():
NEW = 0
SENT = 1
FAIL = 2
def __init__(self, website, title="", link="", description="", guid="", status=0):
self.website = website
self.title = title
self.link = link
self.description = description
self._guid = guid
self._status = status
def load_from_xml(self, xml):
self.title = xml.find("title").text
self.link = xml.find("link").text
self.description = xml.find("description").text
self._guid = xml.find("guid").text
self._status = self.NEW
@property
def guid(self):
# GUID is optional in RSS, if it doesn't exist, use link instead.
if self._guid:
return self._guid
else:
return self.link
@property
def status(self):
return self._status
@status.setter
def status(self, value):
if value in (self.NEW, self.SENT, self.FAIL):
self._status = value
else:
raise RuntimeError("Invalid status for News()")
self.website.dump()
def __eq__(self, obj):
try:
result = bool(self.guid == obj.guid)
return result
except AttributeError:
return False
def __bool__(self):
if not self.guid:
return False
else:
return True
class Website():
def __init__(self):
self._news = []
try:
news = self.load()
if news:
self._news = news
except IOError:
pass
self.update()
def _merge(self, new_news):
def merge(old, new):
overlap_begin = 0
overlap_end = -1
for idx, val in enumerate(old):
if val == new[overlap_begin]:
overlap_end = len(old) - 1 - idx
delta = new[overlap_end + 1:]
result = old.copy()
result += delta
return result
self._news = merge(self._news, new_news)
def _clean(self):
sent = []
for news in self._news:
if news.status == News.SENT:
sent.append(news)
for sent_news in sent:
self._news.remove(sent_news)
def load(self):
news_list = []
with open("./news", "r") as news_dumpfile:
for line in news_dumpfile:
line = line.replace("\n", "")
guid, status, title, link, description = line.split("\t")
status = int(status)
news = News(self, title=title, link=link, description=description, guid=guid, status=status)
news_list.append(news)
return news_list
def dump(self):
with open("./news", "w") as news_dumpfile:
for news in self.news():
news_dumpfile.write("%s\t%d\t%s\t%s\t%s\n" %
(news.guid, news.status, news.title, news.link, news.description))
def update(self):
news_list = []
while 1:
try:
rss_resource = urllib.request.urlopen(WEB_RSS)
news_list_raw = list(ElementTree(file=rss_resource).iter("item"))
break
except Exception:
time.sleep(5)
for news_xml in news_list_raw:
news = News(self)
news.load_from_xml(news_xml)
news_list.insert(0, news)
self._merge(news_list)
# self._clean()
self.dump()
def news(self):
for news in self._news:
yield news
def exit_thread(signal, frame):
global_stop_event.set()
exit()
def main():
app = rpweibo.Application(APP_KEY, APP_SECRET, REDIRECT_URL)
weibo = Weibo(app)
weibo.authenticator = rpweibo.UserPassAutheticator(USERNAME, PASSWORD)
weibo.auth()
sent_guid = weibo.get_news_guid()
website = Website()
for news in website.news():
if news.guid in sent_guid:
news.status = News.SENT
while 1:
website.update()
need_to_send_news = []
for news in website.news():
if news.status == News.SENT:
continue
need_to_send_news.append(news)
delay = 0
if len(need_to_send_news) > 3:
# do not flood
delay = 600
for news in need_to_send_news:
weibo.send(news)
time.sleep(delay)
time.sleep(120)
if __name__ == "__main__":
signal.signal(signal.SIGINT, exit_thread)
main()