mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
from nonebot.plugin import PluginMetadata
|
|
from nonebot_plugin_alconna import Alconna, Arparma, on_alconna
|
|
from nonebot_plugin_saa import Text
|
|
from nonebot_plugin_session import EventSession
|
|
|
|
from zhenxun.configs.utils import PluginExtraData
|
|
from zhenxun.services.log import logger
|
|
|
|
from ._data_source import get_data
|
|
|
|
url = "https://v2.alapi.cn/api/soul"
|
|
|
|
__plugin_meta__ = PluginMetadata(
|
|
name="鸡汤",
|
|
description="喏,亲手为你煮的鸡汤",
|
|
usage="""
|
|
不喝点什么感觉有点不舒服
|
|
指令:
|
|
鸡汤
|
|
""".strip(),
|
|
extra=PluginExtraData(
|
|
author="HibiKier",
|
|
version="0.1",
|
|
).dict(),
|
|
)
|
|
|
|
_matcher = on_alconna(
|
|
Alconna("鸡汤"),
|
|
priority=5,
|
|
block=True,
|
|
)
|
|
|
|
|
|
@_matcher.handle()
|
|
async def _(session: EventSession, arparma: Arparma):
|
|
try:
|
|
data, code = await get_data(url)
|
|
if code != 200 and isinstance(data, str):
|
|
await Text(data).finish(reply=True)
|
|
await Text(data["data"]["content"]).send(reply=True) # type: ignore
|
|
logger.info(
|
|
f" 发送鸡汤:" + data["data"]["content"], # type:ignore
|
|
arparma.header_result,
|
|
session=session,
|
|
)
|
|
except Exception as e:
|
|
await Text("鸡汤煮坏掉了...").send()
|
|
logger.error(f"鸡汤煮坏掉了", e=e)
|