mirror of
https://github.com/flibusta-apps/telegram_files_cache_server.git
synced 2025-12-06 14:45:36 +01:00
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
from typing import Optional
|
|
|
|
import httpx
|
|
|
|
from core.config import env_config
|
|
|
|
|
|
async def download(
|
|
source_id: int, remote_id: int, file_type: str
|
|
) -> Optional[tuple[httpx.Response, httpx.AsyncClient, str]]:
|
|
headers = {"Authorization": env_config.DOWNLOADER_API_KEY}
|
|
|
|
client = httpx.AsyncClient(timeout=120)
|
|
request = client.build_request(
|
|
"GET",
|
|
f"{env_config.DOWNLOADER_URL}/download/{source_id}/{remote_id}/{file_type}",
|
|
headers=headers,
|
|
)
|
|
response = await client.send(request, stream=True)
|
|
|
|
if response.status_code != 200:
|
|
return None
|
|
|
|
content_disposition = response.headers["Content-Disposition"]
|
|
name = content_disposition.replace("attachment; filename=", "")
|
|
|
|
return response, client, name
|
|
|
|
|
|
async def get_filename(book_id: int, file_type: str) -> Optional[str]:
|
|
headers = {"Authorization": env_config.DOWNLOADER_API_KEY}
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
response = await client.get(
|
|
f"{env_config.DOWNLOADER_URL}/filename/{book_id}/{file_type}",
|
|
headers=headers,
|
|
timeout=5 * 60,
|
|
)
|
|
|
|
if response.status_code != 200:
|
|
return None
|
|
|
|
return response.text
|