-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathbot.py
More file actions
77 lines (66 loc) · 2.62 KB
/
bot.py
File metadata and controls
77 lines (66 loc) · 2.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import aiohttp, asyncio, warnings, pytz
from datetime import datetime, timedelta
from pytz import timezone
from pyrogram import Client, __version__
from pyrogram.raw.all import layer
from config import Config
from aiohttp import web
from route import web_server
import pyrogram.utils
import pyromod
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton
import os
import time
pyrogram.utils.MIN_CHANNEL_ID = -1009147483647
# Setting SUPPORT_CHAT directly here
SUPPORT_CHAT = int(os.environ.get("SUPPORT_CHAT", "-1001953724858"))
PORT = Config.PORT
class Bot(Client):
def __init__(self):
super().__init__(
name="codeflixbots",
api_id=Config.API_ID,
api_hash=Config.API_HASH,
bot_token=Config.BOT_TOKEN,
workers=200,
plugins={"root": "plugins"},
sleep_threshold=15,
)
# Initialize the bot's start time for uptime calculation
self.start_time = time.time()
async def start(self, *args, **kwargs):
await super().start(*args, **kwargs)
me = await self.get_me()
self.mention = me.mention
self.username = me.username
self.uptime = Config.BOT_UPTIME
if Config.WEBHOOK:
app = web.AppRunner(await web_server())
await app.setup()
await web.TCPSite(app, "0.0.0.0", PORT).start()
print(f"{me.first_name} Is Started.....✨️")
# Calculate uptime using timedelta
uptime_seconds = int(time.time() - self.start_time)
uptime_string = str(timedelta(seconds=uptime_seconds))
for chat_id in [Config.LOG_CHANNEL, SUPPORT_CHAT]:
try:
curr = datetime.now(timezone("Asia/Kolkata"))
date = curr.strftime('%d %B, %Y')
time_str = curr.strftime('%I:%M:%S %p')
# Send the message with the photo
await self.send_photo(
chat_id=chat_id,
photo=Config.START_PIC,
caption=(
"**ᴀɴʏᴀ ɪs ʀᴇsᴛᴀʀᴛᴇᴅ ᴀɢᴀɪɴ !**\n\n"
f"ɪ ᴅɪᴅɴ'ᴛ sʟᴇᴘᴛ sɪɴᴄᴇ: `{uptime_string}`"
),
reply_markup=InlineKeyboardMarkup(
[[
InlineKeyboardButton("ᴜᴘᴅᴀᴛᴇs", url="https://t.me/codeflix_bots")
]]
)
)
except Exception as e:
print(f"Failed to send message in chat {chat_id}: {e}")
Bot().run()