2023-01-10 13:52:44 +02:00
|
|
|
from os import listdir
|
|
|
|
from pyrogram.client import Client
|
|
|
|
from pyrogram.types import BotCommand, BotCommandScopeChat
|
|
|
|
from modules.utils import configGet, locale
|
|
|
|
|
2023-01-10 14:06:24 +02:00
|
|
|
async def register_commands(app: Client):
|
|
|
|
|
2023-01-10 13:52:44 +02:00
|
|
|
if configGet("submit", "mode"):
|
|
|
|
# Registering user commands
|
|
|
|
for entry in listdir(configGet("locale", "locations")):
|
|
|
|
if entry.endswith(".json"):
|
|
|
|
commands_list = []
|
|
|
|
for command in configGet("commands"):
|
|
|
|
commands_list.append(BotCommand(command, locale(command, "commands", locale=entry.replace(".json", ""))))
|
2023-01-10 14:06:24 +02:00
|
|
|
await app.set_bot_commands(commands_list, language_code=entry.replace(".json", ""))
|
2023-01-10 13:52:44 +02:00
|
|
|
|
|
|
|
# Registering user commands for fallback locale
|
|
|
|
commands_list = []
|
|
|
|
for command in configGet("commands"):
|
|
|
|
commands_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale_fallback"))))
|
2023-01-10 14:06:24 +02:00
|
|
|
await app.set_bot_commands(commands_list)
|
2023-01-10 13:52:44 +02:00
|
|
|
|
|
|
|
# Registering admin commands
|
|
|
|
commands_admin_list = []
|
2023-01-10 14:06:24 +02:00
|
|
|
|
2023-01-10 13:52:44 +02:00
|
|
|
if configGet("submit", "mode"):
|
|
|
|
for command in configGet("commands"):
|
2023-01-10 14:06:24 +02:00
|
|
|
|
2023-01-10 13:52:44 +02:00
|
|
|
commands_admin_list.append(BotCommand(command, locale(command, "commands", locale=configGet("locale"))))
|
|
|
|
for command in configGet("commands_admin"):
|
|
|
|
commands_admin_list.append(BotCommand(command, locale(command, "commands_admin", locale=configGet("locale"))))
|
2023-01-10 14:06:24 +02:00
|
|
|
|
|
|
|
await app.set_bot_commands(commands_admin_list, scope=BotCommandScopeChat(chat_id=configGet("admin")))
|