zhenxun_bot/plugins/hook.py

150 lines
6.1 KiB
Python
Raw Normal View History

2021-05-20 19:27:31 +08:00
from nonebot.matcher import Matcher
from nonebot.message import run_preprocessor, IgnoredException
from nonebot.typing import T_State
2021-07-30 21:21:51 +08:00
from nonebot.adapters.cqhttp import (
Bot,
MessageEvent,
PrivateMessageEvent,
GroupMessageEvent,
)
from configs.config import (
BAN_RESULT,
admin_plugins_auth,
MALICIOUS_BAN_TIME,
MALICIOUS_CHECK_TIME,
MALICIOUS_BAN_COUNT,
)
2021-05-20 19:27:31 +08:00
from models.ban_user import BanUser
2021-06-30 19:50:55 +08:00
from utils.utils import is_number, static_flmt, BanCheckLimiter
2021-07-30 21:21:51 +08:00
from utils.message_builder import at
2021-05-20 19:27:31 +08:00
from services.log import logger
from models.level_user import LevelUser
2021-07-30 21:21:51 +08:00
2021-05-20 19:27:31 +08:00
try:
import ujson as json
except ModuleNotFoundError:
import json
# 检查是否被ban
@run_preprocessor
async def _(matcher: Matcher, bot: Bot, event: MessageEvent, state: T_State):
2021-06-30 19:50:55 +08:00
if not isinstance(event, MessageEvent):
return
2021-07-30 21:21:51 +08:00
if matcher.type == "message" and matcher.priority not in [1, 9]:
if (
await BanUser.is_ban(event.user_id)
and str(event.user_id) not in bot.config.superusers
):
2021-05-20 19:27:31 +08:00
time = await BanUser.check_ban_time(event.user_id)
if is_number(time):
time = abs(int(time))
if time < 60:
2021-07-30 21:21:51 +08:00
time = str(time) + ""
2021-05-20 19:27:31 +08:00
else:
2021-07-30 21:21:51 +08:00
time = str(int(time / 60)) + ""
2021-05-20 19:27:31 +08:00
else:
2021-07-30 21:21:51 +08:00
time = str(time) + ""
if event.message_type == "group":
2021-05-20 19:27:31 +08:00
if not static_flmt.check(event.user_id):
2021-07-30 21:21:51 +08:00
raise IgnoredException("用户处于黑名单中")
2021-05-20 19:27:31 +08:00
static_flmt.start_cd(event.user_id)
if matcher.priority != 9:
2021-07-30 21:21:51 +08:00
await bot.send_group_msg(
group_id=event.group_id,
message=at(event.user_id) + BAN_RESULT + f" 在..在 {time}后才会理你喔",
)
2021-05-20 19:27:31 +08:00
else:
if not static_flmt.check(event.user_id):
2021-07-30 21:21:51 +08:00
raise IgnoredException("用户处于黑名单中")
2021-05-20 19:27:31 +08:00
static_flmt.start_cd(event.user_id)
if matcher.priority != 9:
2021-07-30 21:21:51 +08:00
await bot.send_private_msg(
user_id=event.user_id,
message=at(event.user_id) + BAN_RESULT + f" 在..在 {time}后才会理你喔",
)
raise IgnoredException("用户处于黑名单中")
2021-05-20 19:27:31 +08:00
2021-06-23 18:41:54 +08:00
_blmt = BanCheckLimiter(MALICIOUS_CHECK_TIME, MALICIOUS_BAN_COUNT)
2021-05-20 19:27:31 +08:00
# 恶意触发命令检测
@run_preprocessor
async def _(matcher: Matcher, bot: Bot, event: GroupMessageEvent, state: T_State):
2021-06-30 19:50:55 +08:00
if not isinstance(event, MessageEvent):
return
2021-07-30 21:21:51 +08:00
if matcher.type == "message" and matcher.priority not in [1, 9]:
2021-05-20 19:27:31 +08:00
if state["_prefix"]["raw_command"]:
# print(state["_prefix"]["raw_command"])
if _blmt.check(f'{event.user_id}{state["_prefix"]["raw_command"]}'):
if await BanUser.ban(event.user_id, 9, MALICIOUS_BAN_TIME * 60):
2021-07-30 21:21:51 +08:00
logger.info(f"USER {event.user_id} 触发了恶意触发检测")
2021-05-20 19:27:31 +08:00
# await update_img.finish('检测到恶意触发命令,您将被封禁 30 分钟', at_sender=True)
2021-07-30 21:21:51 +08:00
if event.message_type == "group":
2021-05-20 19:27:31 +08:00
if not static_flmt.check(event.user_id):
return
static_flmt.start_cd(event.user_id)
2021-07-30 21:21:51 +08:00
await bot.send_group_msg(
group_id=event.group_id,
message=at(event.user_id) + "检测到恶意触发命令,您将被封禁 30 分钟",
)
2021-05-20 19:27:31 +08:00
else:
if not static_flmt.check(event.user_id):
return
static_flmt.start_cd(event.user_id)
2021-07-30 21:21:51 +08:00
await bot.send_private_msg(
user_id=event.user_id,
message=at(event.user_id) + "检测到恶意触发命令,您将被封禁 30 分钟",
)
raise IgnoredException("检测到恶意触发命令")
2021-05-20 19:27:31 +08:00
_blmt.add(f'{event.user_id}{state["_prefix"]["raw_command"]}')
# 权限检测
@run_preprocessor
async def _(matcher: Matcher, bot: Bot, event: MessageEvent, state: T_State):
2021-07-30 21:21:51 +08:00
if not isinstance(event, MessageEvent) or await BanUser.is_ban(event.user_id):
2021-05-20 19:27:31 +08:00
return
if matcher.module in admin_plugins_auth.keys() and matcher.priority not in [1, 9]:
2021-07-30 21:21:51 +08:00
if event.message_type == "group":
if not await LevelUser.check_level(
event.user_id, event.group_id, admin_plugins_auth[matcher.module]
):
await bot.send_group_msg(
group_id=event.group_id,
message=f"{at(event.user_id)}你的权限不足喔,该功能需要的权限等级:"
f"{admin_plugins_auth[matcher.module]}",
)
raise IgnoredException("权限不足")
2021-05-20 19:27:31 +08:00
else:
2021-07-30 21:21:51 +08:00
if not await LevelUser.check_level(
event.user_id, 0, admin_plugins_auth[matcher.module]
):
await bot.send_private_msg(
user_id=event.user_id,
message=f"你的权限不足喔,该功能需要的权限等级:{admin_plugins_auth[matcher.module]}",
)
raise IgnoredException("权限不足")
2021-05-20 19:27:31 +08:00
# 为什么AI会自己和自己聊天
@run_preprocessor
async def _(matcher: Matcher, bot: Bot, event: PrivateMessageEvent, state: T_State):
2021-07-30 21:21:51 +08:00
if not isinstance(event, MessageEvent):
return
2021-06-15 10:57:08 +08:00
if event.user_id == int(bot.self_id):
2021-07-30 21:21:51 +08:00
raise IgnoredException("为什么AI会自己和自己聊天")
2021-05-20 19:27:31 +08:00
# 有命令就别说话了
@run_preprocessor
async def _(matcher: Matcher, bot: Bot, event: MessageEvent, state: T_State):
2021-07-30 21:21:51 +08:00
if not isinstance(event, MessageEvent):
return
if matcher.type == "message":
if state["_prefix"]["raw_command"] and matcher.module == "ai":
raise IgnoredException("有命令就别说话了")
2021-05-20 19:27:31 +08:00