Files
DanDingNoneBot/danding_bot/plugins/auto_recall/__init__.py
XiaM-Admin dedc872f1b 功能:通过 HTTP API 实现 Danding_QqPush 插件,用于 QQ 群通知
- 增加了通过外部 HTTP API 向 QQ 群组发送消息的核心功能。
- 实现了对长文本消息的图片渲染,以避免被认定为垃圾信息。
- 支持在消息中提及特定的 QQ 用户。
- 创建了用于 API 令牌和图片渲染设置的配置选项。
- 开发了一个测试脚本以验证 API 功能。
- 对现有代码进行了重构,以提高组织性和可维护性。
2026-01-20 21:19:05 +08:00

53 lines
1.8 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 asyncio
from typing import Optional, Dict, Any
from nonebot import get_driver, get_plugin_config, logger
from nonebot.adapters.onebot.v11 import Bot
from nonebot.plugin import PluginMetadata
from nonebot.exception import MockApiException
from nonebot.adapters import Bot
from nonebot.typing import T_State
from .config import Config
# 插件元信息
__plugin_meta__ = PluginMetadata(
name="auto_recall",
description="一个通用的消息撤回插件,监控所有发出的消息并在指定时间后撤回",
usage="无需手动调用,插件会自动监控并撤回消息",
config=Config,
)
# 获取插件配置
plugin_config = get_plugin_config(Config)
# 注册 API 调用后钩子
@Bot.on_called_api
async def handle_api_result(
bot: Bot, exception: Optional[Exception], api: str, data: Dict[str, Any], result: Any
):
"""拦截 send_msg 和 send_group_msg API 调用,监控发出的消息"""
if api not in ["send_msg", "send_group_msg"] or exception:
return
# 获取消息 ID
message_id = result.get("message_id")
if not message_id:
logger.warning("未找到 message_id无法撤回消息")
return
# 获取撤回延迟时间
recall_delay = plugin_config.recall_delay
# 启动异步任务,延迟撤回消息
asyncio.create_task(recall_message_after_delay(bot, message_id, recall_delay))
async def recall_message_after_delay(bot: Bot, message_id: int, delay: int):
"""在指定时间后撤回消息"""
await asyncio.sleep(delay) # 等待指定时间
try:
await bot.delete_msg(message_id=message_id) # 撤回消息
except Exception as e:
if "success" in str(e).lower() or "timeout" in str(e).lower():
# 忽略成功和超时的错误
return
logger.error(f"撤回消息失败: {str(e)}")