71 lines
1.9 KiB
Python
71 lines
1.9 KiB
Python
import logging
|
|
import json
|
|
|
|
from contextlib import asynccontextmanager
|
|
from fastapi import FastAPI, HTTPException, Response
|
|
from fastapi.responses import HTMLResponse
|
|
from telegram_client import TelegramClient
|
|
from config import get_settings
|
|
|
|
logger = logging.getLogger(__name__)
|
|
client = TelegramClient()
|
|
settings = get_settings()
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(_: FastAPI):
|
|
# Startup
|
|
await client.start()
|
|
yield
|
|
# Shutdown
|
|
await client.stop()
|
|
|
|
app = FastAPI(
|
|
title="PyroTg Bridge",
|
|
lifespan=lifespan
|
|
)
|
|
|
|
@app.get("/html/{channel}/{post_id}", response_class=HTMLResponse)
|
|
async def get_post_html(channel: str, post_id: int):
|
|
try:
|
|
post = await client.get_post(channel, post_id)
|
|
if post.get("error"):
|
|
raise HTTPException(
|
|
status_code=404,
|
|
detail=post["details"]
|
|
)
|
|
if "error" in post:
|
|
raise HTTPException(status_code=404, detail=post["details"])
|
|
return post["html"]
|
|
except Exception as e:
|
|
logger.error(f"HTML endpoint error: {str(e)}")
|
|
raise HTTPException(status_code=500, detail=str(e)) from e
|
|
|
|
@app.get("/json/{channel}/{post_id}")
|
|
async def get_post(channel: str, post_id: int):
|
|
try:
|
|
data = await client.get_post(channel, post_id)
|
|
if data.get("error"):
|
|
raise HTTPException(
|
|
status_code=404,
|
|
detail=data
|
|
)
|
|
return Response(
|
|
content=json.dumps(data),
|
|
media_type="application/json"
|
|
)
|
|
except Exception as e:
|
|
logger.error(f"API error: {str(e)}")
|
|
raise HTTPException(
|
|
status_code=404,
|
|
detail={
|
|
"error": "post_retrieval_error",
|
|
"message": str(e)
|
|
}
|
|
) from e
|
|
|
|
@app.get("/status")
|
|
async def health_check():
|
|
return {
|
|
"status": "ok",
|
|
"connected": client.client.is_connected
|
|
} |