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-10-24 18:55:45 +08:00

37 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.

from core.elements import MessageSession, Image
from core.component import on_command
from database import BotDBUtil
from .profile import cytoid_profile
from .rating import get_rating
cytoid = on_command('cytoid',
developers=['OasisAkari'])
@cytoid.handle('profile <UserID> {查询一个用户的基本信息}')
async def _(msg: MessageSession):
if msg.parsed_msg['profile']:
await cytoid_profile(msg)
@cytoid.handle('(b30|r30) <UserID> {查询一个用户的b30/r30记录}')
async def _(msg: MessageSession):
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秒。')