Update app.py
Browse files
app.py
CHANGED
@@ -1,33 +1,82 @@
|
|
1 |
import telebot
|
2 |
-
from fastapi import FastAPI, Request
|
3 |
import uvicorn
|
|
|
4 |
|
5 |
-
# Your bot token is
|
6 |
TOKEN = "6655373829:AAGduLdLyNx7zUtxH73Sp3Z1vHKS35tV9WU"
|
7 |
-
#
|
8 |
WEBHOOK_URL = "https://astraos-testing.hf.space/webhook"
|
9 |
|
|
|
10 |
bot = telebot.TeleBot(TOKEN, parse_mode="HTML")
|
|
|
|
|
11 |
app = FastAPI()
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
@app.post("/webhook")
|
14 |
async def telegram_webhook(request: Request):
|
15 |
-
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
update = telebot.types.Update.de_json(json_data)
|
18 |
-
# Process the
|
19 |
bot.process_new_updates([update])
|
|
|
20 |
return {"status": "ok"}
|
21 |
|
22 |
@app.get("/")
|
23 |
def home():
|
|
|
|
|
|
|
24 |
return {"message": "Bot is running via webhook"}
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
@bot.message_handler(commands=["start"])
|
27 |
def start_command(message):
|
28 |
-
|
|
|
|
|
|
|
|
|
29 |
|
|
|
30 |
if __name__ == "__main__":
|
31 |
-
#
|
32 |
-
#
|
33 |
uvicorn.run(app, host="0.0.0.0", port=7860)
|
|
|
1 |
import telebot
|
2 |
+
from fastapi import FastAPI, Request, HTTPException
|
3 |
import uvicorn
|
4 |
+
from pydantic import BaseModel
|
5 |
|
6 |
+
# Your bot token is needed internally to send messages via Telegram's API.
|
7 |
TOKEN = "6655373829:AAGduLdLyNx7zUtxH73Sp3Z1vHKS35tV9WU"
|
8 |
+
# Your externally configured webhook URL (set up previously via BotFather or API call)
|
9 |
WEBHOOK_URL = "https://astraos-testing.hf.space/webhook"
|
10 |
|
11 |
+
# Initialize the TeleBot instance
|
12 |
bot = telebot.TeleBot(TOKEN, parse_mode="HTML")
|
13 |
+
|
14 |
+
# Create a FastAPI app instance
|
15 |
app = FastAPI()
|
16 |
|
17 |
+
# --- Models for request validation ---
|
18 |
+
class MessageRequest(BaseModel):
|
19 |
+
chat_id: int
|
20 |
+
text: str
|
21 |
+
|
22 |
+
# --- Endpoints ---
|
23 |
+
|
24 |
@app.post("/webhook")
|
25 |
async def telegram_webhook(request: Request):
|
26 |
+
"""
|
27 |
+
This endpoint receives incoming update payloads from Telegram.
|
28 |
+
Telegram sends updates as JSON via a POST request to this URL.
|
29 |
+
"""
|
30 |
+
try:
|
31 |
+
json_data = await request.json()
|
32 |
+
except Exception as e:
|
33 |
+
raise HTTPException(status_code=400, detail="Invalid JSON payload")
|
34 |
+
|
35 |
update = telebot.types.Update.de_json(json_data)
|
36 |
+
# Process the update (this will call any message handlers you've set up)
|
37 |
bot.process_new_updates([update])
|
38 |
+
# Acknowledge receipt of the update
|
39 |
return {"status": "ok"}
|
40 |
|
41 |
@app.get("/")
|
42 |
def home():
|
43 |
+
"""
|
44 |
+
A simple endpoint to verify that your bot’s webhook server is running.
|
45 |
+
"""
|
46 |
return {"message": "Bot is running via webhook"}
|
47 |
|
48 |
+
@app.post("/send_message")
|
49 |
+
async def send_message(msg: MessageRequest):
|
50 |
+
"""
|
51 |
+
This endpoint allows you to send a message from your bot to a user.
|
52 |
+
You provide a JSON payload with 'chat_id' and 'text'.
|
53 |
+
|
54 |
+
For example, you can POST:
|
55 |
+
|
56 |
+
{
|
57 |
+
"chat_id": 123456789,
|
58 |
+
"text": "Hello from webhook-only mode!"
|
59 |
+
}
|
60 |
+
|
61 |
+
The message is sent by calling the Telegram Bot API internally.
|
62 |
+
"""
|
63 |
+
try:
|
64 |
+
sent_message = bot.send_message(msg.chat_id, msg.text)
|
65 |
+
return {"status": "sent", "message_id": sent_message.message_id}
|
66 |
+
except Exception as e:
|
67 |
+
raise HTTPException(status_code=500, detail=str(e))
|
68 |
+
|
69 |
+
# --- Example Message Handler ---
|
70 |
@bot.message_handler(commands=["start"])
|
71 |
def start_command(message):
|
72 |
+
"""
|
73 |
+
When a user sends /start to your bot via Telegram (received via webhook),
|
74 |
+
this handler sends a welcome message.
|
75 |
+
"""
|
76 |
+
bot.reply_to(message, "Hello! I'm running via FastAPI webhook and ready to send messages!")
|
77 |
|
78 |
+
# --- Running the App ---
|
79 |
if __name__ == "__main__":
|
80 |
+
# We run the FastAPI app using uvicorn. Since your webhook is already set up on Telegram,
|
81 |
+
# you only need to start the server to receive updates.
|
82 |
uvicorn.run(app, host="0.0.0.0", port=7860)
|