-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreciever.py
executable file
·582 lines (563 loc) · 22.7 KB
/
reciever.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
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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
# -*- coding: utf-8 -*-
import os
import re
import time
import shelve
import thread
import base64
import bencode
import requests
import commands
import websocket
"""
On start following variables are set:
* 'masters' (type list) — contains Telegram user ids of users
who could control the bot.
* 'token' (type string) — Telegram bot API token.
* 'api_url' (type string) — Telegram bot API url + bot token.
* 'dl_dirs' (type dict) — bot sorts video files into two directories
"Series" and "Movies", all other fies goes to "General" downloads dir.
Paths could be changed according to your needs. Dict called from
on_ws_message() and dir_to_dl() in case you need to change 'keys'.
* 'pending_magnet' (type dict) — 'keys' are Telegram chat ids and
'values' are magnet links. Temporarely stores info to notify user
about download start. GID (download id) would be changet by aria2
after metadata downloaded and magnet link discarded.
* 'gid_chat' (type dict) — keeps aria2 download ids (GIDs) as 'keys'
and Telegram chat ids + download status as 'values'.
"""
masters, token = eval(open("token.cfg", "r").read())
api_url = "https://api.telegram.org/bot%s/" % token
dl_dirs = {"Series":"/var/plex/series", # Directories to sort
"Movies":"/var/plex/movies", # and download files to.
"General":"/home/nas/Downloads"} # Feel free to set yours.
pending_magnet = {}
gid_chat = {}
help_text = \
"""
This bot starts downloads by link or a .torrent file.
Sorts tv-shows, movies and general downloads apart automatically.
Accepts links and files from its master only.\n
*Commands:*
/special — specify download dir manually.
Usage: "/special download link, download dir"
/uptime — shows NAS uptime and CPU t°C
/status — shows current aria2 downloads status\n
More commands planned. ;)
"""
id_store = shelve.open("id_file", writeback=True)
'''
Opens shelve file. Saves 'gid_chat' and 'pending_magnet' to file
if file is empty. Or reads previous variables state from file if any.
'''
if not len(id_store) == 2:
id_store['gid_chat'], id_store['pending_magnet'] = \
gid_chat, pending_magnet
else:
gid_chat, pending_magnet = \
id_store['gid_chat'], id_store['pending_magnet']
id_store.close()
def conductor(chat_id, method, params):
'''
Sends all JSON requests over websocket messages
to aria2 and logs them to file.
'''
request = ('{"jsonrpc":"2.0",'
'"id":"%s",'
'"method":"%s",'
'"params":%s}'
) % (chat_id, method, params)
wsocket.send(request)
with open("nasbot_ws.log", "a") as logfile:
if len(request) > 200:
r = request[:200]
else: r = request
try:
logfile.write("REQ: "
+ time.strftime("%d/%m/%Y %H:%M:%S ")
+ r.encode("utf-8"))
except UnicodeDecodeError:
logfile.write("REQ: "
+ time.strftime("%d/%m/%Y %H:%M:%S ")
+ r.encode('ascii', 'ignore'))
os.system("echo \"$(tail -300 nasbot_ws.log)\"\
> nasbot_ws.log")
def send_message(chat_id, text):
'''
Sends messages to Telegram user by chat id.
Variable 'response' could be useful to log
Telegram server responses, it could contain error messages if
send fails.
'''
data = {"chat_id": chat_id, "text": text, "parse_mode": "Markdown"}
response = requests.post(url=api_url + "sendMessage",
data=data).json()
def on_ws_message(wsocket, message):
'''
All websocket messages from aria2 handled here.
Messages are JSONs, could contain 'id', 'gid' or both.
Telegram chat ids + last known download status are used as 'id'.
In case 'id' is not present Telegram chat id is retrevied by 'gid'
from 'gid_chat'.
'''
response = eval(message.replace("\\" ,""))
global gid_chat
global pending_magnet
global dl_dirs
'''
This spaghetti is pretty readable if you familiar with
aria2 JSON responses. See the comments below.
'''
if 'id' in response and 'result' in response:
'''
This 'if' takes in aria2 JSONs like in the example below.
Note that Telegram chat id is substituted with "1234567890"
and aria2 gid in 'result' field is
substituted with "SGVsbG8sIFdvcmxk":
{"id":"1234567890-pending",
"jsonrpc":"2.0",
"result":"SGVsbG8sIFdvcmxk"}
'id' utilised to store Telegram chat id and last known
download state to keep track of every users downloads.
'''
if "-pending" in response['id'] or \
"-sp_magnet" in response['id']:
'''
Saving gid and chat id ('id') as key: value pair to gid_chat.
'''
gid = response['result']
gid_chat[gid] = response['id']
elif "-done" in response['id']:
'''
After requesting aria2 with "method":"aria2.getFiles" and
download gid ("params":["SGVsbG8sIFdvcmxk"] in our example)
we'll get response with the list of files under "result" key
even for finished downloads.
'''
for k, v in gid_chat.iteritems():
if response['id'] == v:
text = "*Downloaded files:*\n\n"
for file in response['result']:
text += (file['path'] + "\n\n")
chat_id = v.replace("-done", "")
for k in dl_dirs.keys():
text = text.replace(dl_dirs[k],
"In *'"+ k + "'* directory: ")
if len(text) >= 300:
text = text[:text.find("\n\n", 300)] + "...\n\netc, etc"
send_message(chat_id, text.replace("_", " "))
del gid_chat[k]
elif "-started" in response['id']:
'''
If download is started and "result" is not a list it is
a string containing download's gid, so we have to request the
files list from aria2.
But if it is a list it contains file's URI for queued downloads
and one-file downloads or the list of files and theirs os path
for multi-file downloads (torrents).
'''
if not type(response['result']) is list:
gid = response['result']
gid_chat[gid] = response['id']
conductor(gid_chat[gid], "aria2.getFiles", '["%s"]' % gid)
else:
try:
if response['result'][0]['uris'][0]['status'] == "waiting":
text = "*Download is queued.* Files waiting:\n\n%s" % \
response['result'][0]['uris']\
[0]['uri']
send_message(response['id'].replace("-started", ""), text)
elif response['result'][0]['uris'][0]['status'] == "used":
text = "*File downloading:*\n\n%s" % \
response['result'][0]['uris']\
[0]['uri']
send_message(response['id'].replace("-started", ""), text)
except (IndexError, KeyError):
text = "*Files downloading:*\n\n"
for file in response['result']:
text += (file['path'] + "\n\n")
chat_id = response['id'].replace("-started", "")
for k in dl_dirs.keys():
text = text.replace(dl_dirs[k],
"To *'"+ k + "'* directory: ")
if len(text) >= 300:
text = text[:text.find("\n\n", 300)]\
+ "...\n\netc, etc"
send_message(chat_id, text.replace("_", " "))
elif "-fail" in response['id']:
'''
After requesting aria2 with "method":"aria2.getFiles" and
download gid ("params":["SGVsbG8sIFdvcmxk"] in our example)
we'll get response with the list of files under "result" key
even for failed downloads.
'''
try:
text = "*Download from link failed:*\n\n%s" % \
response['result'][0]['uris'][0]['uri']
send_message(response['id'].replace("-fail", ""), text)
except (IndexError, KeyError):
text = "*Download of files failed:*\n\n"
for file in response['result']:
text += (file['path'] + "\n\n")
chat_id = response['id'].replace("-fail", "")
for k in dl_dirs.keys():
text = text.replace(dl_dirs[k],
"To *'"+ k + "'* directory: ")
if len(text) >= 300:
text = text[:text.find("\n\n", 300)]\
+ "...\n\netc, etc"
send_message(chat_id, text.replace("_", " "))
else:
'''
Just after collecting metadata for downloads
started with magnet link aria2 changes download's gid
and notifies us. We have to save new gid and chat id ('id')
as key: value pair to gid_chat.
'''
gid_chat[response['result']] = response['id']
elif 'id' in response and 'error' in response:
'''
Error is not always fatal. There is no "result" key in JSON,
there is an "error" key instead.
Download tracking stops for now and user is notified
with error message.
Telegram chat id + last known status saved in 'gid_chat' remains
intact to notify the user about further status changes.
Fatal errors are handled below in this code.
'''
position = response['id'].find("-sp_magnet")
if position != -1:
chat_id = response['id'][:position]
else:
chat_id = response['id'].replace("-started", "").replace(
"-pending", "").replace(
"-done", "")
send_message(chat_id, response['error']['message'])
elif response['method'] == "aria2.onDownloadComplete" or \
response['method'] == "aria2.onBtDownloadComplete":
'''
Whenever download is started with magnet link aria2
collects metadata first. It is saved as torrent file
named with magnet link info hash. This name is saved to
'pending_magnet'. On metadata download completion we've
to start download with torrent file. So the filename from
'pending_magnet' is passed to 'download_torrent()'
in case we need to determine download folder automatically,
or sent directly to aria2 via 'conductor()' in case it is
a "/special" download and directory was predifined
in the message.
In case of torrent or file download completion
we requesting aria2 with "method":"aria2.getFiles" and
download gid ("params":["SGVsbG8sIFdvcmxk"] in our example).
Note that there is no 'id' in this JSON, so
the Telegram chat id is retrived by gid from 'gid_chat'.
Here is JSON example:
{"jsonrpc":"2.0",
"method":"aria2.onDownloadComplete",
"params":[{"gid":"SGVsbG8sIFdvcmxk"}]}
'''
gid = response['params'][0]['gid']
if "-pending" in gid_chat[gid]:
gid_chat[gid] = gid_chat[gid].replace("-pending", "")
torrent_raw = open(pending_magnet[gid_chat[gid]]).read()
download_torrent(gid_chat[gid] + "-started", torrent_raw)
os.remove(pending_magnet[gid_chat[gid]])
del pending_magnet[gid_chat[gid]]
del gid_chat[gid]
elif "-sp_magnet" in gid_chat[gid]:
position = gid_chat[gid].find("-sp_magnet")
download_dir = gid_chat[gid][position + 11:]
gid_chat[gid] = gid_chat[gid][:position]
try:
torrent_b64 = base64.b64encode(open(pending_magnet\
[gid_chat[gid]]).read())
except (IndexError, AttributeError):
send_message(gid_chat[gid],
"Torrent info is corrupted.")
conductor(gid_chat[gid] + "-started", "aria2.addTorrent",
'["%s", [], {"dir":"%s"}]' % (torrent_b64, download_dir))
os.remove(pending_magnet[gid_chat[gid]])
del pending_magnet[gid_chat[gid]]
del gid_chat[gid]
elif "-started" in gid_chat[gid]:
gid_chat[gid] = gid_chat[gid].replace("-started", "-done")
conductor(gid_chat[gid], "aria2.getFiles", '["%s"]' % gid)
elif response['method'] == "aria2.onDownloadError":
'''
It is fatal error. Getting file info by gid and adding "-fail"
status to the 'id' to notify the user on the next step.
Note that there is no 'id' in this JSON, so
the Telegram chat id is retrived by gid from 'gid_chat'.
'''
gid = response['params'][0]['gid']
position = gid_chat[gid].find("-sp_magnet")
if position != -1:
gid_chat[gid] = gid_chat[gid][:position] + "-fail"
else:
gid_chat[gid] = gid_chat[gid].replace("-started", "-fail"
).replace(
"-pending", "-fail"
).replace(
"-done", "-fail")
conductor(gid_chat[gid], "aria2.getFiles", '["%s"]' % gid)
del gid_chat[gid]
'''
Here we saving current state to shelve file.
'''
id_store = shelve.open("id_file", writeback=True)
id_store['gid_chat'], id_store['pending_magnet'] = \
gid_chat, pending_magnet
id_store.close()
'''
And writing the log.
'''
with open("nasbot_ws.log", "a") as logfile:
try:
logfile.write("MSG: "
+ time.strftime("%d/%m/%Y %H:%M:%S ")
+ message.encode("utf-8"))
except UnicodeDecodeError:
logfile.write("MSG: "
+ time.strftime("%d/%m/%Y %H:%M:%S ")
+ message.encode('ascii', 'ignore'))
os.system("echo \"$(tail -300 nasbot_ws.log)\"\
> nasbot_ws.log")
def on_ws_error(wsocket, error):
"""
TODO: depending on flavour of error have to
send error msg to master or log it to file.
For now just log everything.
"""
with open("nasbot_ws.log", "a") as logfile:
try:
logfile.write("ERR: "
+ time.strftime("%d/%m/%Y %H:%M:%S")
+ error.encode("utf-8"))
except UnicodeDecodeError:
logfile.write("ERR: "
+ time.strftime("%d/%m/%Y %H:%M:%S ")
+ error.encode('ascii', 'ignore'))
os.system("echo \"$(tail -300 nasbot_ws.log)\"\
> nasbot_ws.log")
def on_ws_close(wsocket):
'''
Restart websocket connection if it is closed.
No error handling, just keep trying.
'''
thread.start_new_thread(wsocket.run_forever, ())
'''
Starting websocket connection in the new thread.
'''
wsocket = websocket.WebSocketApp("ws://localhost:6800/jsonrpc",
on_message = on_ws_message,
on_error = on_ws_error,
on_close = on_ws_close)
thread.start_new_thread(wsocket.run_forever, ())
def get_updates(offset):
'''
Another plate of spaghetti.
'''
updates = []
try:
'''
Telegram bot messages are basically JSONs.
Parsing chat id ['message']['chat']['id'],
user id ['message']['from'] and text ['message']['text']
or torrent file id ['message']['document']['file_id']
out of 'result'.
'''
for msg in requests.get(api_url
+ "getUpdates?timeout=100"
+ offset).json()['result']:
if 'message' in msg and \
'text' in msg['message']:
msg_text = msg['message']['text']
user_id = msg['message']['from']
chat_id = str(msg['message']['chat']['id'])
'''
Checking Telegram bot "commands" in texts. If no commands
found appending 'updates' type list with another list
containing chat id, user id, and message text.
Example result:
[["1234567890", "1234567890", "Hello Robot!"]].
'''
if msg_text == "/help":
global help_text
send_message(chat_id, help_text)
elif msg_text == "/status" and \
str(user_id['id']) in masters:
try:
stat_command = commands.getoutput(
"tail -100 aria2supervised.out.log").rsplit(
"*** Download Progress Summary ", 1)[1].rsplit(
"-"*79, 1)[0]
stat = "*Download Progress Summary*\n"\
+ stat_command.replace("***", "").replace(
"#", "").replace(
"_", "").replace(
"="*79, "").replace(
"-"*79, "")
except IndexError:
'''
We'll get IndexError if aria2 was shutdown and lost all
downloads/uploads data or all downloads are finished and
removed from active. Just can't split the string because
there are no such substrings in recent log.
'''
stat = "There are no active downloads/uploads."
send_message(chat_id, stat)
elif msg_text == "/uptime" and \
str(user_id['id']) in masters:
upt_command = "uptime | grep -o 'up.*'\
| sed 's/up/Uptime:/g'\
; sensors | grep -o 'Core.\{0,19\}'\
| sed 's/ //g'"
send_message(chat_id, commands.getoutput(upt_command))
elif msg_text[:8] == "/special" and \
str(user_id['id']) in masters:
try:
attr_list = msg_text[8:].replace(" ","").split(",")
attr_list.insert(1, dl_dirs['General'])
if attr_list[0][-8:] == ".torrent":
try:
attr_list[0] = \
base64.b64encode(requests.get(attr_list[0],
stream=True).raw.read())
conductor(chat_id + "-started", "aria2.addTorrent",
'["%s", [], {"dir":"%s/%s"}]' % tuple(attr_list))
send_message(chat_id, "Collecting metadata.")
except (IndexError, AttributeError):
send_message(chat_id,
"Torrent info is corrupted.")
elif attr_list[0][:8] == "magnet:?":
id_store = shelve.open("id_file", writeback=True)
try:
pending_magnet[chat_id] = re.search(
r"btih:(\w+)&?",
attr_list[0]
).group(1).lower() \
+ ".torrent"
conductor(chat_id + "-sp_magnet:" + attr_list[1] + "/"
+ attr_list[2], "aria2.addUri",
'[["%s"], {"bt-metadata-only":"true",'\
'"bt-save-metadata":"true"}]'
% attr_list[0])
send_message(chat_id, "Collecting metadata.")
except AttributeError:
send_message(chat_id,
"*It's not a magnet link:*\n\n%s"
% attr_list[0])
id_store['pending_magnet'] = pending_magnet
id_store.close()
else:
conductor(chat_id + "-started", "aria2.addUri",
'[["%s"], {"dir":"%s/%s"}]' % tuple(attr_list))
except TypeError:
send_message(chat_id,
"Something wrong, maybe /help is needed?")
else:
updates.append([ chat_id, user_id, msg_text ])
elif 'message' in msg and \
'document' in msg['message'] and \
str(msg['message']['from']['id']) in masters:
if msg['message']['document']['mime_type'] == \
"application/x-bittorrent":
uri = "https://api.telegram.org/file/bot%s/"\
% token \
+ requests.get(
api_url
+ "getFile?file_id="
+ msg['message']['document']['file_id']
).json()['result']['file_path']
download_torrent(str(msg['message']['chat']['id'])
+ "-started",
uri, uri=True)
offset = "&offset=%d" % (msg['update_id'] + 1)
except (ValueError, requests.exceptions.ConnectionError):
return [], offset
return updates, offset
def dir_to_dl(link):
global dl_dirs
if re.findall(r"\.(avi|wmv|mkv|mov|m4v|mp4|mpeg|mpg)$",
link, re.IGNORECASE|re.MULTILINE):
if re.search(r"season|сезон|s\d\d?e\d\d?",
link, re.IGNORECASE|re.MULTILINE):
download_dir = dl_dirs['Series']
else:
download_dir = dl_dirs['Movies']
else:
download_dir = dl_dirs['General']
return download_dir
def download_torrent(chat_id, data, uri=False):
if uri:
torrent_raw = requests.get(data,
stream=True).raw.read()
else: torrent_raw = data
"""
gave up to parse files from bencoded string by myself
so imported bencode module
"""
try:
torrent_b64 = base64.b64encode(torrent_raw)
torrent_info = bencode.bdecode(torrent_raw)['info']
files_list = ""
if 'files' in torrent_info:
for file in torrent_info['files']:
files_list += str("\\".join(file['path'])+"\n")
else: files_list = str(torrent_info['name'])
download_dir = dir_to_dl(files_list)
conductor(chat_id, "aria2.addTorrent",
'["%s", [], {"dir":"%s"}]' % (torrent_b64, download_dir))
except (IndexError, AttributeError):
send_message(chat_id.replace("-started", ""),
"Torrent info is corrupted.")
def parse_uri(updates):
for msg in updates:
if str(msg[1]['id']) in masters:
uri = re.search(
r"^(magnet\S+)|(\S\.torrent)$|^(http\S+|ftp\S+|sftp\S+)",
msg[2])
if uri:
if uri.group(1):
global pending_magnet
id_store = shelve.open("id_file", writeback=True)
try:
pending_magnet[msg[0]] = re.search(r"btih:(\w+)&?",
uri.group(1)).group(1).lower() \
+ ".torrent"
conductor(msg[0] + "-pending", "aria2.addUri",
'[["%s"], {"bt-metadata-only":"true",'\
'"bt-save-metadata":"true"}]' % uri.group(1))
send_message(msg[0], "Collecting metadata.")
except AttributeError:
send_message(msg[0], "*It's not a magnet link:*\n\n%s."
% uri.group(1))
id_store['pending_magnet'] = pending_magnet
id_store.close()
elif uri.group(2):
download_torrent(msg[0] + "-started",
uri.group(2), uri=True)
elif uri.group(3) and not uri.group(2):
download_dir = dir_to_dl(uri.group(3))
conductor(msg[0] + "-started", "aria2.addUri",
'[["%s"], {"dir":"%s"}]' % (msg[2], download_dir))
else:
send_message(msg[0], "I can't do that.")
else:
send_message(msg[0], "Human, you'r not my master.")
try:
with open("nasbot_nonusers.log", "a") as logfile:
logfile.write(msg.encode("utf-8"))
os.system("echo \"$(tail -300 nasbot_nonusers.log)\"\
> nasbot_nonusers.log")
except UnicodeDecodeError:
pass
def main():
offset = ""
while True:
updates, offset = get_updates(offset)
if len(updates) > 0:
parse_uri(updates)
time.sleep(5)
if __name__ == '__main__':
main()