forked from Ice9Coffee/HoshinoBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.py
59 lines (52 loc) · 1.9 KB
/
help.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
from hoshino import Service, priv
from hoshino.typing import CQEvent
sv = Service('_help_', manage_priv=priv.SUPERUSER, visible=False)
TOP_MANUAL = '''
=====================
- HoshinoBot使用说明 -
=====================
发送方括号[]内的关键词即可触发
※功能采取模块化管理,群管理可控制开关
[!帮助] 会战管理v2
[怎么拆日和] 竞技场查询
[星乃来发十连] 转蛋模拟
[pcr速查] 常用网址
[官漫132] 四格漫画(日)
[切噜一下] 切噜语转换
[lssv] 查看功能模块的开关状态(群管理限定)
[来杯咖啡] 联系维护组
发送以下关键词查看更多:
[帮助pcr会战]
[帮助pcr查询]
[帮助pcr娱乐]
[帮助pcr订阅]
[帮助kancolle]
[帮助通用]
========
※除这里中写明外 另有其他隐藏功能:)
※隐藏功能属于赠品 不保证可用性
※本bot开源,可自行搭建
※服务器运行及开发维护需要成本,赞助支持请私戳作者
※您的支持是本bot更新维护的动力
※※调教时请注意使用频率,您的滥用可能会导致bot账号被封禁
'''.strip()
def gen_bundle_manual(bundle_name, service_list, gid):
manual = [bundle_name]
service_list = sorted(service_list, key=lambda s: s.name)
for sv in service_list:
if sv.visible:
spit_line = '=' * max(0, 18 - len(sv.name))
manual.append(f"|{'○' if sv.check_enabled(gid) else '×'}| {sv.name} {spit_line}")
if sv.help:
manual.append(sv.help)
return '\n'.join(manual)
@sv.on_prefix(('help', '帮助'))
async def send_help(bot, ev: CQEvent):
bundle_name = ev.message.extract_plain_text().strip()
bundles = Service.get_bundles()
if not bundle_name:
await bot.send(ev, TOP_MANUAL)
elif bundle_name in bundles:
msg = gen_bundle_manual(bundle_name, bundles[bundle_name], ev.group_id)
await bot.send(ev, msg)
# else: ignore