TelegramIndex-Fork/app/telegram.py

39 lines
1.5 KiB
Python
Raw Normal View History

2020-08-10 09:27:52 +02:00
import math
import logging
import asyncio
from telethon import TelegramClient
from telethon.sessions import StringSession
class Client(TelegramClient):
def __init__(self, session_string, *args, **kwargs):
super().__init__(StringSession(session_string), *args, **kwargs)
self.log = logging.getLogger(__name__)
2020-08-11 08:29:09 +02:00
2020-08-10 09:27:52 +02:00
async def download(self, file, file_size, offset, limit):
part_size = 1024 * 1024
first_part_cut = offset % part_size
first_part = math.floor(offset / part_size)
last_part_cut = part_size - (limit % part_size)
last_part = math.ceil(limit / part_size)
part_count = math.ceil(file_size / part_size)
part = first_part
try:
2020-08-12 13:03:44 +02:00
async for chunk in self.iter_download(file, offset=first_part * part_size, file_size=file_size, request_size=part_size):
2020-08-10 09:27:52 +02:00
if part == first_part:
yield chunk[first_part_cut:]
elif part == last_part:
yield chunk[:last_part_cut]
else:
yield chunk
2020-08-11 08:29:09 +02:00
self.log.debug(f"Part {part}/{last_part} (total {part_count}) served!")
2020-08-10 09:27:52 +02:00
part += 1
2020-08-11 08:29:09 +02:00
self.log.debug("serving finished")
2020-08-10 09:27:52 +02:00
except (GeneratorExit, StopAsyncIteration, asyncio.CancelledError):
2020-08-11 08:29:09 +02:00
self.log.debug("file serve interrupted")
2020-08-10 09:27:52 +02:00
raise
except Exception:
2020-08-11 08:29:09 +02:00
self.log.debug("file serve errored", exc_info=True)