Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/cytoid/__init__.py
2021-07-28 01:42:47 +08:00

34 lines
1.2 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import re
from database import BotDBUtil
from core.loader.decorator import command
from core.elements import MessageSession, Image
from .profile import cytoid_profile
from .rating import get_rating
@command('cytoid', help_doc=('~cytoid (b30|r30) <UserID> {查询一个用户的b30/r30记录}',
'~cytoid profile <UserID> {查询一个用户的基本信息}'))
async def cytoid(msg: MessageSession):
if msg.parsed_msg['profile']:
await cytoid_profile(msg)
if msg.parsed_msg['b30']:
query = 'b30'
elif msg.parsed_msg['r30']:
query = 'r30'
else:
query = False
if query:
qc = BotDBUtil.CoolDown(msg, 'cytoid_rank')
c = qc.check(300)
if c == 0:
img = await get_rating(msg.parsed_msg['<UserID>'], query)
if 'path' in img:
await msg.sendMessage([Image(path=img['path'])])
if 'text' in img:
await msg.sendMessage(img['text'])
if img['status']:
qc.reset()
else:
await msg.sendMessage(f'距离上次执行已过去{int(c)}本命令的冷却时间为300秒。')