LiteyukiBot-TriM/liteyuki/plugins/liteyuki_eventpush.py

125 lines
4.2 KiB
Python
Raw Normal View History

2024-03-24 15:07:08 +00:00
import nonebot
2024-03-24 15:09:59 +00:00
from nonebot import on_message, require
2024-03-24 15:07:08 +00:00
from nonebot.plugin import PluginMetadata
2024-03-24 15:09:59 +00:00
2024-03-26 13:33:40 +00:00
from liteyuki.utils.data import Database, LiteModel
2024-03-24 15:07:08 +00:00
from liteyuki.utils.ly_typing import T_Bot, T_MessageEvent
2024-03-26 13:33:40 +00:00
from liteyuki.utils.message import send_markdown
2024-03-24 15:07:08 +00:00
2024-03-24 15:09:59 +00:00
require("nonebot_plugin_alconna")
from nonebot_plugin_alconna import on_alconna
2024-03-26 13:33:40 +00:00
from arclet.alconna import Arparma, Alconna, Args, Option, Subcommand
2024-03-24 15:09:59 +00:00
2024-03-24 15:07:08 +00:00
class Node(LiteModel):
2024-03-26 13:33:40 +00:00
TABLE_NAME = "node"
bot_id: str = ""
session_type: str = ""
session_id: str = ""
2024-03-24 15:07:08 +00:00
def __str__(self):
return f"{self.bot_id}.{self.session_type}.{self.session_id}"
class Push(LiteModel):
2024-03-26 13:33:40 +00:00
TABLE_NAME = "push"
source: Node = Node()
target: Node = Node()
inde: int = 0
2024-03-24 15:07:08 +00:00
pushes_db = Database("data/pushes.ldb")
2024-03-26 13:33:40 +00:00
pushes_db.auto_migrate(Push(), Node())
2024-03-24 15:07:08 +00:00
alc = Alconna(
"lep",
Subcommand(
"add",
Args["source", str],
Args["target", str],
Option("bidirectional", Args["bidirectional", bool])
),
Subcommand(
"rm",
Args["index", int],
),
Subcommand(
"list",
)
)
add_push = on_alconna(alc)
@add_push.handle()
async def _(result: Arparma):
"""bot_id.session_type.session_id"""
if result.subcommands.get("add"):
source = result.subcommands["add"].args.get("source")
target = result.subcommands["add"].args.get("target")
if source and target:
source = source.split(".")
target = target.split(".")
push1 = Push(
source=Node(bot_id=source[0], session_type=source[1], session_id=source[2]),
target=Node(bot_id=target[0], session_type=target[1], session_id=target[2]),
2024-03-26 13:33:40 +00:00
inde=len(pushes_db.all(Push(), default=[]))
2024-03-24 15:07:08 +00:00
)
pushes_db.upsert(push1)
if result.subcommands["add"].args.get("bidirectional"):
push2 = Push(
source=Node(bot_id=target[0], session_type=target[1], session_id=target[2]),
target=Node(bot_id=source[0], session_type=source[1], session_id=source[2]),
2024-03-26 13:33:40 +00:00
inde=len(pushes_db.all(Push(), default=[]))
2024-03-24 15:07:08 +00:00
)
pushes_db.upsert(push2)
await add_push.finish("添加成功")
else:
await add_push.finish("参数缺失")
elif result.subcommands.get("rm"):
index = result.subcommands["rm"].args.get("index")
if index is not None:
try:
2024-03-26 13:33:40 +00:00
pushes_db.delete(Push(), "inde = ?", index)
2024-03-24 15:07:08 +00:00
await add_push.finish("删除成功")
except IndexError:
await add_push.finish("索引错误")
else:
await add_push.finish("参数缺失")
elif result.subcommands.get("list"):
await add_push.finish(
"\n".join([f"{push.inde} {push.source.bot_id}.{push.source.session_type}.{push.source.session_id} -> "
f"{push.target.bot_id}.{push.target.session_type}.{push.target.session_id}" for i, push in
2024-03-26 13:33:40 +00:00
enumerate(pushes_db.all(Push(), default=[]))]))
2024-03-24 15:07:08 +00:00
else:
await add_push.finish("参数错误")
@on_message(block=False).handle()
async def _(event: T_MessageEvent, bot: T_Bot):
2024-03-26 13:33:40 +00:00
for push in pushes_db.all(Push(), default=[]):
2024-03-24 15:07:08 +00:00
if str(push.source) == f"{bot.self_id}.{event.message_type}.{event.user_id if event.message_type == 'private' else event.group_id}":
bot2 = nonebot.get_bot(push.target.bot_id)
msg_formatted = ""
2024-03-26 13:33:40 +00:00
for line in str(event.message).split("\n"):
msg_formatted += f"**{line.strip()}**\n"
2024-03-24 15:07:08 +00:00
push_message = (
f"> From {event.sender.nickname}@{push.source.session_type}.{push.source.session_id}\n> Bot {bot.self_id}\n\n"
f"{msg_formatted}")
await send_markdown(push_message, bot2, message_type=push.target.session_type, session_id=push.target.session_id)
return
__author__ = "snowykami"
__plugin_meta__ = PluginMetadata(
name="轻雪事件推送",
description="事件推送插件支持单向和双向推送支持跨Bot推送",
usage="",
homepage="https://github.com/snowykami/LiteyukiBot",
extra={
"liteyuki": True,
}
)