tgfs / WebStreamer /utils /broadcast_helper.py
S VIVEGANANDAN
Push latest changes from FileStreamBot-1
b0bc1a0
raw
history blame contribute delete
767 Bytes
# This file is a part of TG-FileStreamBot
import asyncio
import traceback
from pyrogram.types import Message
from pyrogram.errors import FloodWait, InputUserDeactivated, UserIsBlocked, PeerIdInvalid
async def send_msg(user_id: int, message: Message):
try:
await message.copy(chat_id=user_id)
return 200, None
except FloodWait as e:
await asyncio.sleep(e.value)
return send_msg(user_id, message)
except InputUserDeactivated:
return 400, f"{user_id} : deactivated\n"
except UserIsBlocked:
return 400, f"{user_id} : blocked the bot\n"
except PeerIdInvalid:
return 400, f"{user_id} : user id invalid\n"
except Exception as e:
return 500, f"{user_id} : {traceback.format_exc()}\n"