2023-01-05 13:41:55 +02:00
|
|
|
from app import app
|
|
|
|
from os import getpid, listdir
|
|
|
|
from pyrogram import filters
|
|
|
|
from pyrogram.types import Message, BotCommandScopeDefault, BotCommandScopeChat
|
|
|
|
from pyrogram.errors import bad_request_400
|
|
|
|
from pyrogram.client import Client
|
|
|
|
from modules.utils import logWrite, should_quote, configGet
|
|
|
|
from modules import custom_filters
|
|
|
|
|
|
|
|
pid = getpid()
|
|
|
|
|
2023-01-05 14:01:57 +02:00
|
|
|
# Reset commands command =======================================================================================================
|
2023-01-05 13:41:55 +02:00
|
|
|
@app.on_message(custom_filters.enabled_general & ~filters.scheduled & filters.private & filters.command(["resetcommands"], prefixes=["/"]) & custom_filters.admin)
|
2023-01-05 14:01:57 +02:00
|
|
|
async def cmd_resetcommands(app: Client, msg: Message):
|
2023-01-05 13:41:55 +02:00
|
|
|
|
|
|
|
if msg.from_user.id == configGet("owner"):
|
|
|
|
|
|
|
|
logWrite(f"Resetting all commands on owner's request")
|
|
|
|
|
|
|
|
valid_locales = []
|
|
|
|
files_locales = listdir(f'{configGet("locale", "locations")}')
|
|
|
|
|
|
|
|
for entry in files_locales:
|
|
|
|
if entry.endswith(".json"):
|
|
|
|
valid_locales.append(".".join(entry.split(".")[:-1]))
|
|
|
|
|
2023-01-09 13:39:39 +02:00
|
|
|
logWrite(f'Resetting commands in groups {configGet("admin", "groups")} and {configGet("users", "groups")}', debug=True)
|
2023-01-05 13:41:55 +02:00
|
|
|
await app.delete_bot_commands(scope=BotCommandScopeChat(chat_id=configGet("admin", "groups")))
|
|
|
|
await app.delete_bot_commands(scope=BotCommandScopeChat(chat_id=configGet("users", "groups")))
|
|
|
|
|
|
|
|
for admin in configGet("admins"):
|
|
|
|
try:
|
2023-01-09 13:39:39 +02:00
|
|
|
logWrite(f'Resetting commands for admin {admin}', debug=True)
|
2023-01-05 13:41:55 +02:00
|
|
|
await app.delete_bot_commands(scope=BotCommandScopeChat(chat_id=admin))
|
|
|
|
except bad_request_400.PeerIdInvalid:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
2023-01-09 13:39:39 +02:00
|
|
|
logWrite(f'Resetting commands for owner {configGet("owner")}', debug=True)
|
2023-01-05 13:41:55 +02:00
|
|
|
for lc in valid_locales:
|
2023-01-09 13:39:39 +02:00
|
|
|
logWrite(f'Resetting commands for owner {configGet("owner")} [{lc}]', debug=True)
|
2023-01-05 13:41:55 +02:00
|
|
|
await app.delete_bot_commands(scope=BotCommandScopeChat(chat_id=configGet("owner")), language_code=lc)
|
|
|
|
await app.delete_bot_commands(scope=BotCommandScopeChat(chat_id=configGet("owner")))
|
|
|
|
except bad_request_400.PeerIdInvalid:
|
|
|
|
pass
|
|
|
|
|
|
|
|
for lc in valid_locales:
|
2023-01-09 13:39:39 +02:00
|
|
|
logWrite(f'Resetting commands for locale {lc}', debug=True)
|
2023-01-05 13:41:55 +02:00
|
|
|
await app.delete_bot_commands(scope=BotCommandScopeDefault(), language_code=lc)
|
|
|
|
|
2023-01-09 13:39:39 +02:00
|
|
|
logWrite(f'Resetting default commands', debug=True)
|
2023-01-05 13:41:55 +02:00
|
|
|
await app.delete_bot_commands()
|
|
|
|
|
|
|
|
await msg.reply_text("OK", quote=should_quote(msg))
|
|
|
|
|
2023-01-09 13:39:39 +02:00
|
|
|
logWrite(str(await app.get_bot_commands()), debug=True)
|
|
|
|
logWrite(str(await app.get_bot_commands(scope=BotCommandScopeChat(chat_id=configGet("owner")))), debug=True)
|
2023-01-05 13:41:55 +02:00
|
|
|
# ==============================================================================================================================
|