forked from 0neTX/BOT.Torrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bottorrent.py
268 lines (247 loc) · 11 KB
/
bottorrent.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
#!/usr/bin/env python3
LICENCIA = """
BOT.Torrent - 3.1 :
Este programa es software GRATUITO: puedes redistribuirlo y/o modificar
bajo los términos de la Licencia Pública General GNU publicada por
la Free Software Foundation, ya sea la versión 3 de la Licencia, o
(a su elección) cualquier versión posterior.
Este programa se distribuye con la esperanza de que sea útil,
pero SIN NINGUNA GARANTÍA, ni RESPONSABILIDAD; sin siquiera la garantía implícita de
COMERCIABILIDAD o APTITUD PARA UN PROPÓSITO PARTICULAR. Ver el
Licencia pública general GNU para obtener más detalles <https://www.gnu.org/licenses/>.
El USUARIO de este programa, es el UNICO RESPONSABLE, de que el USO del mismo,
se limita, al estricto cumplimiento, de cualquier LEY, aplicable.
"""
INSTALACION = """
BOT.Torrent - 3.1 :
*** Guía para instalar el bot ***
BOT.torrent es un sencillo script, para un BOT de Telegram, escrito en Python.
Su función, es descargar ficheros, reenviados al BOT, en un directorio de nuestra elección.
Este BOT está especialmente pensado, para ejecutarse en un NAS.
Instalación:
1: Crear nuestro BOT en Telegram y obtener su TOKEN (Guías multiples en la red)
2: Crear nuestra App en Telegram y obtener su api_id y api_hash. (Si no las tenemos)
--> https://my.telegram.org/auth (Guías multiples en la red)
3: Instalar python3, en nuestro NAS. (Si no lo tenemos ya instalado. No es necesario en DSM7)
4: Instalar pip en nuestro NAS, abriendo una sesión SSH, (Si no lo tenemos ya instalado)
--> sudo curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
--> sudo python3 get-pip.py
5: Instalar telethon --> sudo python3 -m pip install telethon
6: Instalar cryptg --> sudo python3 -m pip install cryptg
7: Copiar BOT.torrent.py, en nuestro NAS.
8: Editar las variables propias DE CADA USUARIO.
--> cp enviroment.samples .env
--> nvim .evn
9: Ejecutar BOT de forma interactiva --> python3 -u BOT.torrent.py (Por supuesto, se puede arrancar, también en background y de formar automatizada)
A disfrutar ;-)
DekkaR - 2021
"""
AYUDA = """BOT.Torrent - 3.1 :
/ayuda : Esta pantalla.
/start : LICENCIA GPL, de este programa.
/instalar : Guía para instalar este programa.
"""
import re
import os
import shutil
import sys
import time
import asyncio
import cryptg
from dotenv import load_dotenv
# Imports Telethon
from telethon import TelegramClient, events
from telethon.tl import types
from telethon.utils import get_extension
import logging
'''
LOGGER
'''
logger = logging.getLogger(__name__)
handler = logging.StreamHandler()
formatter = logging.Formatter(
'%(asctime)s [%(name)-12s] %(levelname)-8s %(message)s')
handler.setFormatter(formatter)
logger.addHandler(handler)
logger.setLevel(logging.DEBUG)
# Variables de cada usuario ######################
# This is a helper method to access environment variables or
# prompt the user to type them in the terminal if missing.
def get_env(name, message, cast=str):
load_dotenv()
if name in os.environ:
print("os.environ[name]",name,os.environ[name])
return os.environ[name]
while True:
value = input(message)
try:
return cast(value)
except ValueError as e:
print(e, file=sys.stderr)
time.sleep(1)
# Define some variables so the code reads easier
session = os.environ.get('TG_SESSION', 'bottorrent_downloader')
api_id = get_env('TG_API_ID', 'Enter your API ID: ', int)
api_hash = get_env('TG_API_HASH', 'Enter your API hash: ')
bot_token = get_env('TG_BOT_TOKEN', 'Enter your Telegram BOT token: ')
TG_AUTHORIZED_USER_ID = get_env('TG_AUTHORIZED_USER_ID', 'Enter your Telegram BOT token: ')
download_path = get_env('TG_DOWNLOAD_PATH', 'Enter full path to downloads directory: ')
download_path_torrent = os.getenv('TG_WATCH_PATH', "/var/watch") # Directorio bajo vigilancia de DSDownload u otro.
# Descargar cada fichero en directorios separados, por defecto NO.
DIR_ORGANIZE = get_env('DIR_ORGANIZE', 'Organize download files? (y/n or s/n): ')
DIR_ORGANIZE = 'N' if not DIR_ORGANIZE else DIR_ORGANIZE
logger.info('TG_API_ID: %s',api_id)
logger.info('TG_API_HASH: %s',api_hash)
logger.info('TG_BOT_TOKEN: %s',bot_token)
logger.info('TG_DOWNLOAD_PATH: %s',download_path)
logger.info('TG_AUTHORIZED_USER_ID: %s',TG_AUTHORIZED_USER_ID)
logger.info('download_path_torrent: %s',download_path_torrent)
#api_id = 161 # Vuestro api_id. Cambiar
#api_hash = '3ef04ad'
#bot_token = '3945:09m-p4'
#download_path = '/download'
#download_path_torrent = '/volume1/vuestros directorios' # Directorio bajo vigilancia de DSDownload u otro.
#usuarios = {6537361:'yo'} # <--- IDs de usuario autorizados. Los mismos de la versión 2.1. Cambiar
usuarios = list(map(int, TG_AUTHORIZED_USER_ID.replace(" ", "").split(',')))
logger.info('TG_AUTHORIZED_USER_ID: %s',usuarios)
# Cola de descargas.
queue = asyncio.Queue()
number_of_parallel_downloads = int(os.environ.get('TG_MAX_PARALLEL',4))
maximum_seconds_per_download = int(os.environ.get('TG_DL_TIMEOUT',3600))
# Directorio temporal
tmp_path = os.path.join(download_path,'tmp')
os.makedirs(tmp_path, exist_ok = True)
async def worker(name):
while True:
# Esperando una unidad de trabajo.
queue_item = await queue.get()
update = queue_item[0]
message = queue_item[1]
# Comprobación de usuario
if message.peer_id.user_id not in usuarios:
logger.info('USUARIO: %s NO AUTORIZADO', message.peer_id.user_id)
print('Usuario ', message.peer_id.user_id, ' no autorizado.')
continue
###
file_path = tmp_path;
file_name = 'Fichero ...';
if isinstance(update.message.media, types.MessageMediaPhoto):
file_name = '{}{}'.format(update.message.media.photo.id, get_extension(update.message.media))
else:
attributes = update.message.media.document.attributes
for attr in attributes:
if isinstance(attr, types.DocumentAttributeFilename):
file_name = attr.file_name
elif update.message.message:
file_name = re.sub(r'[^A-Za-z0-9 -!\[\]\(\)]+', ' ', update.message.message)
else:
file_name = time.strftime('%Y%m%d %H%M%S', time.localtime())
file_name = '{}{}'.format(update.message.media.document.id, get_extension(update.message.media))
file_path = os.path.join(file_path, file_name)
await message.edit('Descargando ... ')
mensaje = '[%s] Descarga iniciada %s por %s ...' % (file_path, time.strftime('%d/%m/%Y %H:%M:%S', time.localtime()), (message.peer_id.user_id))
logger.info(mensaje )
try:
loop = asyncio.get_event_loop()
task = loop.create_task(client.download_media(update.message, file_path))
download_result = await asyncio.wait_for(task, timeout = maximum_seconds_per_download)
end_time = time.strftime('%d/%m/%Y %H:%M:%S', time.localtime())
end_time_short = time.strftime('%H:%M', time.localtime())
filename = os.path.split(download_result)[1]
if DIR_ORGANIZE.upper() in ['N','NO']:
final_path = os.path.join(download_path, filename)
else:
final_path = os.path.join(download_path,"completed", filename)
# Ficheros .mp3 y .flac
if filename.endswith('.mp3') or filename.endswith('.flac'):
os.makedirs(os.path.join(download_path,'mp3'), exist_ok = True)
final_path = os.path.join(download_path,"mp3", filename)
# Ficheros .pdf y .cbr
if filename.endswith('.pdf') or filename.endswith('.cbr'):
os.makedirs(os.path.join(download_path,'pdf'), exist_ok = True)
final_path = os.path.join(download_path,"pdf", filename)
# Ficheros .jpg
if filename.endswith('.jpg'):
os.makedirs(os.path.join(download_path,'jpg'), exist_ok = True)
final_path = os.path.join(download_path,"jpg", filename)
# Ficheros .torrent
if filename.endswith('.torrent'):
os.makedirs(os.path.join(download_path,'torrent'), exist_ok = True)
final_path = os.path.join(download_path_torrent, filename)
######
logger.info("RENAME/MOVE [%s] [%s]" % (download_result, final_path) )
shutil.move(download_result, final_path)
###### mensaje = '[%s] Descarga terminada %s' % (file_name, end_time)
logger.info(mensaje )
await message.edit('Descarga %s terminada %s' % (file_name,end_time_short))
except asyncio.TimeoutError:
print('[%s] Tiempo excedido %s' % (file_name, time.strftime('%d/%m/%Y %H:%M:%S', time.localtime())))
await message.edit('Error!')
message = await update.reply('ERROR: Tiempo excedido descargando este fichero')
except Exception as e:
logger.critical(e)
print('[EXCEPCION]: %s' % (str(e)))
print('[%s] Excepcion %s' % (file_name, time.strftime('%d/%m/%Y %H:%M:%S', time.localtime())))
await message.edit('Error!')
message = await update.reply('ERROR: %s descargando : %s' % (e.__class__.__name__, str(e)))
# Unidad de trabajo terminada.
queue.task_done()
client = TelegramClient(session, api_id, api_hash, proxy = None, request_retries = 10, flood_sleep_threshold = 120)
@events.register(events.NewMessage)
async def handler(update):
if update.message.media is not None and update.message.peer_id.user_id in usuarios and isinstance(update.message.media, types.MessageMediaPhoto):
file_name = '{}{}'.format(update.message.media.photo.id, get_extension(update.message.media))
logger.info("MessageMediaPhoto [%s]" % file_name)
message = await update.reply('En cola...')
await queue.put([update, message])
elif update.message.media is not None and update.message.peer_id.user_id in usuarios:
file_name = 'sin nombre';
attributes = update.message.media.document.attributes
for attr in attributes:
if isinstance(attr, types.DocumentAttributeFilename):
file_name = attr.file_name
elif update.message.message:
file_name = re.sub(r'[^A-Za-z0-9 -!\[\]\(\)]+', ' ', update.message.message)
mensaje = '[%s] Descarga en cola %s ' % (file_name, time.strftime('%d/%m/%Y %H:%M:%S', time.localtime()))
logger.info(mensaje)
message = await update.reply('En cola...')
await queue.put([update, message])
elif update.message.peer_id.user_id in usuarios:
if update.message.message == '/ayuda':
message = await update.reply(AYUDA)
await queue.put([update, message])
elif update.message.message == '/start':
message = await update.reply(LICENCIA)
await queue.put([update, message])
elif update.message.message == '/instalar':
message = await update.reply(INSTALACION)
await queue.put([update, message])
else:
#time.sleep(2)
message = await update.reply('Eco del BOT: ' + update.message.message)
await queue.put([update, message])
print('Eco del BOT: ' + update.message.message)
else:
logger.info('USUARIO: %s NO AUTORIZADO', update.message.peer_id.user_id)
try:
# Crear cola de procesos concurrentes.
tasks = []
for i in range(number_of_parallel_downloads):
loop = asyncio.get_event_loop()
task = loop.create_task(worker('worker-{%i}' %i))
tasks.append(task)
# Arrancamos bot con token
client.start(bot_token=str(bot_token))
client.add_event_handler(handler)
# Pulsa Ctrl+C para detener
print('Arranque correcto!! (Pulsa Ctrl+C para detener)')
logger.info("START BOT")
client.run_until_disconnected()
finally:
# Cerrando trabajos.
for task in tasks:
task.cancel()
# Cola cerrada
# Stop Telethon
client.disconnect()
print(' Parado!!! ')