forked from fogleman/FeedNotifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
feeds.py
275 lines (268 loc) · 9.8 KB
/
feeds.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
import os
import time
import calendar
import uuid
import urlparse
import urllib2
import filters
import util
import Queue
import logging
import safe_pickle
from settings import settings
def cmp_timestamp(a, b):
return cmp(a.timestamp, b.timestamp)
def create_id(entry):
keys = ['id', 'link', 'title']
values = tuple(util.get(entry, key, None) for key in keys)
return values if any(values) else uuid.uuid4().hex
class Item(object):
def __init__(self, feed, id):
self.feed = feed
self.id = id
self.timestamp = int(time.time())
self.received = int(time.time())
self.title = ''
self.description = ''
self.link = ''
self.author = ''
self.read = False
@property
def time_since(self):
return util.time_since(self.timestamp)
class Feed(object):
def __init__(self, url):
self.uuid = uuid.uuid4().hex
self.url = url
self.username = None
self.password = None
self.enabled = True
self.last_poll = 0
self.interval = settings.DEFAULT_POLLING_INTERVAL
self.etag = None
self.modified = None
self.title = ''
self.link = ''
self.clicks = 0
self.item_count = 0
self.color = None
self.id_list = []
self.id_set = set()
def make_copy(self):
feed = Feed(self.url)
for key in ['uuid', 'enabled', 'interval', 'title', 'link', 'clicks', 'item_count', 'color']:
value = getattr(self, key)
setattr(feed, key, value)
return feed
def copy_from(self, feed):
for key in ['enabled', 'interval', 'title', 'link', 'color']:
value = getattr(feed, key)
setattr(self, key, value)
@property
def favicon_url(self):
components = urlparse.urlsplit(self.link)
scheme, domain = components[:2]
return '%s://%s/favicon.ico' % (scheme, domain)
@property
def favicon_path(self):
components = urlparse.urlsplit(self.link)
scheme, domain = components[:2]
path = 'icons/cache/%s.ico' % domain
return os.path.abspath(path)
@property
def has_favicon(self):
return os.path.exists(self.favicon_path)
def download_favicon(self):
# make cache directory if needed
try:
dir, name = os.path.split(self.favicon_path)
os.makedirs(dir)
except Exception:
pass
# try to download the favicon
try:
opener = urllib2.build_opener(util.get_proxy())
f = opener.open(self.favicon_url)
data = f.read()
f.close()
f = open(self.favicon_path, 'wb')
f.write(data)
f.close()
except Exception:
pass
def clear_cache(self):
self.id_list = []
self.id_set = set()
self.etag = None
self.modified = None
def clean_cache(self, size):
for id in self.id_list[:-size]:
self.id_set.remove(id)
self.id_list = self.id_list[-size:]
def should_poll(self):
if not self.enabled:
return False
now = int(time.time())
duration = now - self.last_poll
return duration >= self.interval
def poll(self, timestamp, filters):
logging.info('Polling feed "%s"' % self.url)
result = []
self.last_poll = timestamp
username = util.decode_password(self.username)
password = util.decode_password(self.password)
d = util.parse(self.url, username, password, self.etag, self.modified)
self.etag = util.get(d, 'etag', None)
self.modified = util.get(d, 'modified', None)
feed = util.get(d, 'feed', None)
if feed:
self.title = self.title or util.get(feed, 'title', '')
self.link = self.link or util.get(feed, 'link', self.url)
entries = util.get(d, 'entries', [])
for entry in reversed(entries):
id = create_id(entry)
if id in self.id_set:
continue
self.item_count += 1
self.id_list.append(id)
self.id_set.add(id)
item = Item(self, id)
item.timestamp = calendar.timegm(util.get(entry, 'date_parsed', time.gmtime()))
item.title = util.format(util.get(entry, 'title', ''), settings.POPUP_TITLE_LENGTH)
item.description = util.format(util.get(entry, 'description', ''), settings.POPUP_BODY_LENGTH)
item.link = util.get(entry, 'link', '')
item.author = util.format(util.get(entry, 'author', '')) # TODO: max length
if all(filter.filter(item) for filter in filters):
result.append(item)
self.clean_cache(settings.FEED_CACHE_SIZE)
return result
class Filter(object):
def __init__(self, code, ignore_case=True, whole_word=True, feeds=None):
self.uuid = uuid.uuid4().hex
self.enabled = True
self.code = code
self.ignore_case = ignore_case
self.whole_word = whole_word
self.feeds = set(feeds) if feeds else set()
self.inputs = 0
self.outputs = 0
def make_copy(self):
filter = Filter(self.code, self.ignore_case, self.whole_word, self.feeds)
for key in ['uuid', 'enabled', 'inputs', 'outputs']:
value = getattr(self, key)
setattr(filter, key, value)
return filter
def copy_from(self, filter):
for key in ['enabled', 'code', 'ignore_case', 'whole_word', 'feeds']:
value = getattr(filter, key)
setattr(self, key, value)
def filter(self, item):
if not self.enabled:
return True
if self.feeds and item.feed not in self.feeds:
return True
self.inputs += 1
rule = filters.parse(self.code) # TODO: cache parsed rules
if rule.evaluate(item, self.ignore_case, self.whole_word):
self.outputs += 1
return True
else:
return False
class FeedManager(object):
def __init__(self):
self.feeds = []
self.items = []
self.filters = []
def add_feed(self, feed):
logging.info('Adding feed "%s"' % feed.url)
self.feeds.append(feed)
def remove_feed(self, feed):
logging.info('Removing feed "%s"' % feed.url)
self.feeds.remove(feed)
for filter in self.filters:
filter.feeds.discard(feed)
def add_filter(self, filter):
logging.info('Adding filter "%s"' % filter.code)
self.filters.append(filter)
def remove_filter(self, filter):
logging.info('Removing filter "%s"' % filter.code)
self.filters.remove(filter)
def should_poll(self):
return any(feed.should_poll() for feed in self.feeds)
def poll(self):
now = int(time.time())
jobs = Queue.Queue()
results = Queue.Queue()
feeds = [feed for feed in self.feeds if feed.should_poll()]
for feed in feeds:
jobs.put(feed)
count = len(feeds)
logging.info('Starting worker threads')
for i in range(min(count, settings.MAX_WORKER_THREADS)):
util.start_thread(self.worker, now, jobs, results)
while count:
items = results.get()
count -= 1
if items:
yield items
logging.info('Worker threads completed')
def worker(self, now, jobs, results):
while True:
try:
feed = jobs.get(False)
except Queue.Empty:
break
try:
items = feed.poll(now, self.filters)
items.sort(cmp=cmp_timestamp)
if items and not feed.has_favicon:
feed.download_favicon()
results.put(items)
jobs.task_done()
except Exception:
results.put([])
jobs.task_done()
def purge_items(self, max_age):
now = int(time.time())
feeds = set(self.feeds)
for item in list(self.items):
age = now - item.received
if age > max_age or item.feed not in feeds:
self.items.remove(item)
def load(self, path='feeds.dat'):
logging.info('Loading feed data from "%s"' % path)
try:
data = safe_pickle.load(path)
except Exception:
data = ([], [], [])
# backward compatibility
if len(data) == 2:
self.feeds, self.items = data
self.filters = []
else:
self.feeds, self.items, self.filters = data
attributes = {
'clicks': 0,
'item_count': 0,
'username': None,
'password': None,
'color': None,
}
for feed in self.feeds:
for name, value in attributes.iteritems():
if not hasattr(feed, name):
setattr(feed, name, value)
if not hasattr(feed, 'id_list'):
feed.id_list = list(feed.id_set)
logging.info('Loaded %d feeds, %d items, %d filters' % (len(self.feeds), len(self.items), len(self.filters)))
def save(self, path='feeds.dat'):
logging.info('Saving feed data to "%s"' % path)
data = (self.feeds, self.items, self.filters)
safe_pickle.save(path, data)
def clear_item_history(self):
logging.info('Clearing item history')
del self.items[:]
def clear_feed_cache(self):
logging.info('Clearing feed caches')
for feed in self.feeds:
feed.clear_cache()