-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcommands.py
59 lines (55 loc) · 1.94 KB
/
commands.py
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
# commands.py
from typing import Dict, List, Tuple
class BotCommands:
"""Bot commands configuration"""
@staticmethod
def get_commands() -> Dict[str, Dict[str, List[Tuple[str, str]]]]:
"""
Get bot commands for all supported languages
Returns dict: {
'en': {
'commands': [(command, description)],
'scope': 'default'
},
'zh': {
'commands': [(command, description)],
'scope': 'default'
}
}
"""
return {
'en': {
'commands': [
('start', 'Start the bot'),
('channels', 'Manage channels and forwarding'),
('language', 'Change language settings'),
('help', 'Show help message'),
],
'scope': 'default'
},
'zh': {
'commands': [
('start', '启动机器人'),
('channels', '管理频道和转发'),
('language', '更改语言设置'),
('help', '显示帮助信息'),
],
'scope': 'default'
}
}
@staticmethod
async def setup_commands(application):
"""Setup bot commands for each language"""
commands = BotCommands.get_commands()
for lang_code, config in commands.items():
try:
await application.bot.set_my_commands(
[
(command, description)
for command, description in config['commands']
],
language_code=lang_code
)
print(f"Successfully set up commands for language: {lang_code}")
except Exception as e:
print(f"Failed to set up commands for language {lang_code}: {e}")