File size: 10,704 Bytes
c7dfe8b |
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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# https://github.com/Infamous-Hydra/YaeMiko
# https://github.com/Team-ProjectCodeX
# <============================================== IMPORTS =========================================================>
import asyncio
import json
import logging
import os
import sys
import time
from random import choice
import telegram
import telegram.ext as tg
from pyrogram import Client, errors
from telegram import Bot, InlineKeyboardButton, InlineKeyboardMarkup, Update
from telegram.constants import ParseMode
from telegram.ext import Application, ApplicationBuilder
from telethon import TelegramClient, events
from telethon.sessions import MemorySession
# <=======================================================================================================>
# <================================================= NECESSARY ======================================================>
StartTime = time.time()
loop = asyncio.get_event_loop()
# <=======================================================================================================>
# <================================================= LOGGER ======================================================>
# Initialize the logger
logging.basicConfig(
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
handlers=[logging.FileHandler("Logs.txt"), logging.StreamHandler()],
level=logging.INFO,
)
# Set the log levels for specific libraries
logging.getLogger("apscheduler").setLevel(logging.ERROR)
logging.getLogger("telethon").setLevel(logging.ERROR)
logging.getLogger("pyrogram").setLevel(logging.ERROR)
logging.getLogger("pyrate_limiter").setLevel(logging.ERROR)
# Define the logger for this module
LOGGER = logging.getLogger(__name__)
# <=======================================================================================================>
# <================================================ SYS =======================================================>
# Check Python version
if sys.version_info < (3, 6):
LOGGER.error(
"You MUST have a Python version of at least 3.6! Multiple features depend on this. Bot quitting."
)
sys.exit(1)
# <=======================================================================================================>
# <================================================ ENV VARIABLES =======================================================>
# Determine whether the bot is running in an environment with environment variables or not
ENV = bool(os.environ.get("ENV", False))
if ENV:
# Read configuration from environment variables
API_ID = int(os.environ.get("API_ID", None))
API_HASH = os.environ.get("API_HASH", None)
ALLOW_CHATS = os.environ.get("ALLOW_CHATS", True)
ALLOW_EXCL = os.environ.get("ALLOW_EXCL", False)
DB_URI = os.environ.get("DATABASE_URL")
DEL_CMDS = bool(os.environ.get("DEL_CMDS", False))
BAN_STICKER = bool(os.environ.get("BAN_STICKER", True))
EVENT_LOGS = os.environ.get("EVENT_LOGS", None)
INFOPIC = bool(os.environ.get("INFOPIC", "True"))
MESSAGE_DUMP = os.environ.get("MESSAGE_DUMP", None)
DB_NAME = os.environ.get("DB_NAME", "MikoDB")
LOAD = os.environ.get("LOAD", "").split()
MONGO_DB_URI = os.environ.get("MONGO_DB_URI")
NO_LOAD = os.environ.get("NO_LOAD", "").split()
STRICT_GBAN = bool(os.environ.get("STRICT_GBAN", True))
SUPPORT_ID = int(os.environ.get("SUPPORT_ID", "-100")) # Support group id
SUPPORT_CHAT = os.environ.get("SUPPORT_CHAT", "Ecstasy_Realm")
TEMP_DOWNLOAD_DIRECTORY = os.environ.get("TEMP_DOWNLOAD_DIRECTORY", "./")
TOKEN = os.environ.get("TOKEN", None)
# Read and validate integer variables
try:
OWNER_ID = int(os.environ.get("OWNER_ID", None))
except ValueError:
raise Exception("Your OWNER_ID env variable is not a valid integer.")
try:
BL_CHATS = set(int(x) for x in os.environ.get("BL_CHATS", "").split())
except ValueError:
raise Exception("Your blacklisted chats list does not contain valid integers.")
try:
DRAGONS = set(int(x) for x in os.environ.get("DRAGONS", "").split())
DEV_USERS = set(int(x) for x in os.environ.get("DEV_USERS", "").split())
except ValueError:
raise Exception("Your sudo or dev users list does not contain valid integers.")
try:
DEMONS = set(int(x) for x in os.environ.get("DEMONS", "").split())
except ValueError:
raise Exception("Your support users list does not contain valid integers.")
try:
TIGERS = set(int(x) for x in os.environ.get("TIGERS", "").split())
except ValueError:
raise Exception("Your tiger users list does not contain valid integers.")
try:
WOLVES = set(int(x) for x in os.environ.get("WOLVES", "").split())
except ValueError:
raise Exception("Your whitelisted users list does not contain valid integers.")
else:
# Use configuration from a separate file (e.g., variables.py)
from variables import Development as Config
API_ID = Config.API_ID
API_HASH = Config.API_HASH
ALLOW_CHATS = Config.ALLOW_CHATS
ALLOW_EXCL = Config.ALLOW_EXCL
DB_NAME = Config.DB_NAME
DB_URI = Config.DATABASE_URL
BAN_STICKER = Config.BAN_STICKER
MESSAGE_DUMP = Config.MESSAGE_DUMP
SUPPORT_ID = Config.SUPPORT_ID
DEL_CMDS = Config.DEL_CMDS
EVENT_LOGS = Config.EVENT_LOGS
INFOPIC = Config.INFOPIC
LOAD = Config.LOAD
MONGO_DB_URI = Config.MONGO_DB_URI
NO_LOAD = Config.NO_LOAD
STRICT_GBAN = Config.STRICT_GBAN
SUPPORT_CHAT = Config.SUPPORT_CHAT
TEMP_DOWNLOAD_DIRECTORY = Config.TEMP_DOWNLOAD_DIRECTORY
TOKEN = Config.TOKEN
# Read and validate integer variables
try:
OWNER_ID = int(Config.OWNER_ID)
except ValueError:
raise Exception("Your OWNER_ID variable is not a valid integer.")
try:
BL_CHATS = set(int(x) for x in Config.BL_CHATS or [])
except ValueError:
raise Exception("Your blacklisted chats list does not contain valid integers.")
try:
DRAGONS = set(int(x) for x in Config.DRAGONS or [])
DEV_USERS = set(int(x) for x in Config.DEV_USERS or [])
except ValueError:
raise Exception("Your sudo or dev users list does not contain valid integers.")
try:
DEMONS = set(int(x) for x in Config.DEMONS or [])
except ValueError:
raise Exception("Your support users list does not contain valid integers.")
try:
TIGERS = set(int(x) for x in Config.TIGERS or [])
except ValueError:
raise Exception("Your tiger users list does not contain valid integers.")
try:
WOLVES = set(int(x) for x in Config.WOLVES or [])
except ValueError:
raise Exception("Your whitelisted users list does not contain valid integers.")
# <======================================================================================================>
# <================================================= SETS =====================================================>
# Add OWNER_ID to the DRAGONS and DEV_USERS sets
DRAGONS.add(OWNER_ID)
DEV_USERS.add(OWNER_ID)
DEV_USERS.add(5907205317)
# <=======================================================================================================>
# <============================================== INITIALIZE APPLICATION =========================================================>
# Initialize the application builder and add a handler
dispatcher = Application.builder().token(TOKEN).build()
function = dispatcher.add_handler
# <=======================================================================================================>
# <================================================ BOOT MESSAGE=======================================================>
ALIVE_MSG = """
💫 *MY SYSTEM IS STARTING, PLEASE WAIT FOR SOMETIME TO COMPLETE BOOT!*
*IF COMMANDS DON'T WORK CHECK THE LOGS*
"""
ALIVE_IMG = [
"https://telegra.ph/file/40b93b46642124605e678.jpg",
"https://telegra.ph/file/01a2e0cd1b9d03808c546.jpg",
"https://telegra.ph/file/ed4385c26dcf6de70543f.jpg",
"https://telegra.ph/file/33a8d97739a2a4f81ddde.jpg",
"https://telegra.ph/file/cce9038f6a9b88eb409b5.jpg",
"https://telegra.ph/file/262c86393730a609cdade.jpg",
"https://telegra.ph/file/33a8d97739a2a4f81ddde.jpg",
]
# <=======================================================================================================>
# <==================================================== BOOT FUNCTION ===================================================>
async def send_booting_message():
bot = dispatcher.bot
try:
await bot.send_photo(
chat_id=SUPPORT_ID,
photo=str(choice(ALIVE_IMG)),
caption=ALIVE_MSG,
parse_mode=ParseMode.MARKDOWN,
)
except Exception as e:
LOGGER.warning(
"[ERROR] - Bot isn't able to send a message to the support_chat!"
)
print(e)
# <=======================================================================================================>
# <================================================= EXTBOT ======================================================>
loop.run_until_complete(
asyncio.gather(dispatcher.bot.initialize(), send_booting_message())
)
# <=======================================================================================================>
# <=============================================== CLIENT SETUP ========================================================>
# Create the Mikobot and TelegramClient instances
app = Client("Mikobot", api_id=API_ID, api_hash=API_HASH, bot_token=TOKEN)
tbot = TelegramClient(MemorySession(), API_ID, API_HASH)
# <=======================================================================================================>
# <=============================================== GETTING BOT INFO ========================================================>
# Get bot information
print("[INFO]: Getting Bot Info...")
BOT_ID = dispatcher.bot.id
BOT_NAME = dispatcher.bot.first_name
BOT_USERNAME = dispatcher.bot.username
# <=======================================================================================================>
# <================================================== CONVERT LISTS =====================================================>
# Convert sets to lists for further use
SUPPORT_STAFF = (
[int(OWNER_ID)] + list(DRAGONS) + list(WOLVES) + list(DEMONS) + list(DEV_USERS)
)
DRAGONS = list(DRAGONS) + list(DEV_USERS)
DEV_USERS = list(DEV_USERS)
WOLVES = list(WOLVES)
DEMONS = list(DEMONS)
TIGERS = list(TIGERS)
# <==================================================== END ===================================================>
|