forked from abhinai2244/FileStore-Bot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbot.py
More file actions
142 lines (116 loc) · 4.45 KB
/
bot.py
File metadata and controls
142 lines (116 loc) · 4.45 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# Don't Remove Credit @CodeFlix_Bots, @rohit_1888
# Ask Doubt on telegram @CodeflixSupport
#
# Copyright (C) 2025 by Codeflix-Bots@Github, < https://github.com/Codeflix-Bots >.
#
# This file is part of < https://github.com/Codeflix-Bots/FileStore > project,
# and is released under the MIT License.
# Please see < https://github.com/Codeflix-Bots/FileStore/blob/master/LICENSE >
#
# All rights reserved.
#
from aiohttp import web
from plugins import web_server
import asyncio
import pyromod.listen
from pyrogram import Client
from pyrogram.enums import ParseMode
import sys
import pytz
from datetime import datetime
#rohit_1888 on Tg
from config import *
from database.db_premium import *
from database.database import *
from apscheduler.schedulers.asyncio import AsyncIOScheduler
import logging
# Suppress APScheduler logs below WARNING level
logging.getLogger("apscheduler").setLevel(logging.WARNING)
scheduler = AsyncIOScheduler(timezone="Asia/Kolkata")
scheduler.add_job(remove_expired_users, "interval", seconds=10)
# Reset verify count for all users daily at 00:00 IST
async def daily_reset_task():
try:
await db.reset_all_verify_counts()
except Exception:
pass
scheduler.add_job(daily_reset_task, "cron", hour=0, minute=0)
#scheduler.start()
def get_indian_time():
"""Returns the current time in IST."""
ist = pytz.timezone("Asia/Kolkata")
return datetime.now(ist)
name ="""
BY 𝐀𝐍𝐔𝐉 𝐊𝐔𝐌𝐀𝐑
"""
def get_indian_time():
"""Returns the current time in IST."""
ist = pytz.timezone("Asia/Kolkata")
return datetime.now(ist)
class Bot(Client):
def __init__(self):
super().__init__(
name="Bot",
api_hash=API_HASH,
api_id=APP_ID,
plugins={
"root": "plugins"
},
workers=TG_BOT_WORKERS,
bot_token=TG_BOT_TOKEN
)
self.LOGGER = LOGGER
async def start(self):
await super().start()
scheduler.start()
usr_bot_me = await self.get_me()
self.uptime = get_indian_time()
try:
db_channel = await self.get_chat(CHANNEL_ID)
self.db_channel = db_channel
test = await self.send_message(chat_id = db_channel.id, text = "Test Message")
await test.delete()
except Exception as e:
self.LOGGER(__name__).warning(e)
self.LOGGER(__name__).warning(f"Make Sure bot is Admin in DB Channel, and Double check the CHANNEL_ID Value, Current Value {CHANNEL_ID}")
self.LOGGER(__name__).info("\nBot Stopped. Join https://t.me/log_channel_a for support")
sys.exit()
self.set_parse_mode(ParseMode.HTML)
self.LOGGER(__name__).info(f"Bot Running..!\n\nCreated by \nhttps://t.me/log_channel_a")
self.LOGGER(__name__).info(f"""
___ ___ ___ ___ ___ _ _____ _____ ___ _____ ___
/ __/ _ \| \| __| __| | |_ _\ \/ / _ )/ _ \_ _/ __|
| (_| (_) | |) | _|| _|| |__ | | > <| _ \ (_) || | \__ \
\___\___/|___/|___|_| |____|___/_/\_\___/\___/ |_| |___/
""")
self.set_parse_mode(ParseMode.HTML)
self.username = usr_bot_me.username
self.LOGGER(__name__).info(f"Bot Running..! Made by @anujedits76")
# Start Web Server
app = web.AppRunner(await web_server())
await app.setup()
await web.TCPSite(app, "0.0.0.0", PORT).start()
try: await self.send_message(OWNER_ID, text = f"<b><blockquote> Bᴏᴛ Rᴇsᴛᴀʀᴛᴇᴅ by @anujedits76</blockquote></b>")
except: pass
async def stop(self, *args):
await super().stop()
self.LOGGER(__name__).info("Bot stopped.")
def run(self):
"""Run the bot."""
loop = asyncio.get_event_loop()
loop.run_until_complete(self.start())
self.LOGGER(__name__).info("Bot is now running. Thanks to @anujedits76")
try:
loop.run_forever()
except KeyboardInterrupt:
self.LOGGER(__name__).info("Shutting down...")
finally:
loop.run_until_complete(self.stop())
#
# Copyright (C) 2025 by Codeflix-Bots@Github, < https://github.com/Codeflix-Bots >.
#
# This file is part of < https://github.com/Codeflix-Bots/FileStore > project,
# and is released under the MIT License.
# Please see < https://github.com/Codeflix-Bots/FileStore/blob/master/LICENSE >
#
# All rights reserved.