-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.py
111 lines (97 loc) · 3.73 KB
/
tasks.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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# this module implement the periodic tasks
import feed
from transmission import TransmissionClient
def periodic_task(xmpp, settings):
'''this is the function that tranmission bot need to run periodically
xmpp: the TransmissionBot instance, use to send messages
settings: the global settings'''
# xmpp.send_message( mto='',
# mtype='chat',
# mbody='hello',
# mhtml='''<a href="http://www.google.co.jp">hello</a>''')
dynamics = settings.dynamics
logger = settings.logger
logger.info('periodic task starting...')
# check if there are new feed items and put them to queue
for _id, fd in dynamics['feeds'].items():
if fd['status'] == 'disabled':
continue
finfo, fdoc = feed.fetch_feed(fd['url'], fd['etag'], fd['modified'])
logger.info('feed info: ' + str(finfo))
if len(fdoc.entries)==0:
logger.info('[%s] has no items'%(fd['title']))
#print '%s has no items'%(fd['title'])
else:
#find new items
new_items = feed.discover(fdoc, feed.decode_time(fd['last_published']))
if len(new_items) == 0:
logger.info('[%s] has no new items since %s'%(fd['title'], fd['last_published']))
#print '%s has no new items since %s'%(fd['title'], fd['last_published'])
else:
#update queue in dynamics
maxid = 0
if not dynamics.has_key('queue'):
dynamics['queue'] = {}
elif dynamics['queue'].keys():
maxid = max([int(x) for x in dynamics['queue'].keys()])
msg = 'I got something new for you in the queue\n'
htmlmsg = '<p>I got something new for you in the queue<br>'
for item in new_items:
maxid += 1
dynamics['queue'][str(maxid)] = { 'title':item['title'],
'torrent_uri':item['torrent_uri'],
'link':item['link'],
'published':item['published'] }
msg += '''%(title)s\n'''%item
htmlmsg += '''<a href="%(link)s">%(title)s</a><br>'''%item
htmlmsg += '</p>'
logger.info(msg)
# notify users with the new items
if dynamics.get('notify', 'off') == 'on':
for u in settings.accept_command_from:
#print msg
#print htmlmsg
xmpp.send_message( mto=u,
mtype='chat',
mbody=msg)
#mhtml=htmlmsg )
#new items found, so update the last_published to latest
fd['last_published'] = feed.encode_time(finfo['last_published'])
logger.info('Feed(%s) [%s]: update last_published to %s' % (_id, fd['title'], feed.encode_time(finfo['last_published'])))
#whatever there are new items or not, update these info
fd['title'] = finfo['title']
fd['etag'] = finfo['etag']
fd['modified'] = finfo['modified']
#commit the change
dynamics.sync()
# notify completed downloads
torrents = TransmissionClient.list()
if dynamics.get('downloads') == None:
dynamics['downloads'] = {}
# cleanup the downloads which do not exist
hslist = [x.hashString for x in torrents.values()]
for hs in dynamics['downloads'].keys():
if hs not in hslist:
del dynamics['downloads'][hs]
if dynamics.get('notify','off') == 'on':
for _id, to in torrents.items():
if to.progress < 100:
dynamics['downloads'][to.hashString] = {'id':_id, 'name':to.name, 'progress':to.progress, 'status':to.status}
else:
if to.hashString in dynamics['downloads'].keys():
for u in settings.accept_command_from:
msg = '%s downloaded'%to.name
xmpp.send_message( mto=u,
mtype='chat',
mbody=msg )
del dynamics['downloads'][to.hashString]
dynamics.sync()
# autostop the completed torrents
if dynamics.get('autostop', 'off') == 'on':
for _id, to in torrents.items():
if to.progress >= 100:
TransmissionClient.stop(_id)
#ok, brb
return True