File size: 2,158 Bytes
970583e |
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 |
from __future__ import annotations
from typing import TYPE_CHECKING
from aiogram.types import BotCommand, BotCommandScopeDefault
if TYPE_CHECKING:
from aiogram import Bot
users_commands: dict[str, dict[str, str]] = {
"en": {
"help": "help",
"contacts": "developer contact details",
"menu": "main menu with earning schemes",
"settings": "setting information about you",
"supports": "support contacts",
},
"uk": {
"help": "help",
"contacts": "developer contact details",
"menu": "main menu with earning schemes",
"settings": "setting information about you",
"supports": "support contacts",
},
"ru": {
"help": "help",
"contacts": "developer contact details",
"menu": "main menu with earning schemes",
"settings": "setting information about you",
"supports": "support contacts",
},
}
admins_commands: dict[str, dict[str, str]] = {
"en": {
"ping": "Check bot ping",
"stats": "Show bot stats",
},
"uk": {
"ping": "Check bot ping",
"stats": "Show bot stats",
},
"ru": {
"ping": "Check bot ping",
"stats": "Show bot stats",
},
}
async def set_default_commands(bot: Bot) -> None:
await remove_default_commands(bot)
for language_code, commands in users_commands.items():
await bot.set_my_commands(
[BotCommand(command=command, description=description) for command, description in commands.items()],
scope=BotCommandScopeDefault(),
language_code=language_code,
)
""" Commands for admins
for admin_id in await admin_ids():
await bot.set_my_commands(
[
BotCommand(command=command, description=description)
for command, description in admins_commands[language_code].items()
],
scope=BotCommandScopeChat(chat_id=admin_id),
)
"""
async def remove_default_commands(bot: Bot) -> None:
await bot.delete_my_commands(scope=BotCommandScopeDefault())
|