2024-09-14 14:23:19 +08:00
|
|
|
|
from nonebot.adapters import Bot, Event
|
2024-12-10 19:49:11 +08:00
|
|
|
|
from nonebot.adapters.onebot.v11 import PokeNotifyEvent
|
2024-09-14 14:23:19 +08:00
|
|
|
|
from nonebot.exception import IgnoredException
|
2024-12-10 19:49:11 +08:00
|
|
|
|
from nonebot.matcher import Matcher
|
|
|
|
|
|
from nonebot_plugin_alconna import At, UniMsg
|
2024-09-14 14:23:19 +08:00
|
|
|
|
from nonebot_plugin_session import EventSession
|
2024-12-10 19:49:11 +08:00
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
from tortoise.exceptions import IntegrityError
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
|
|
|
|
|
from zhenxun.configs.config import Config
|
2024-10-21 19:07:35 +08:00
|
|
|
|
from zhenxun.models.bot_console import BotConsole
|
2024-12-10 19:49:11 +08:00
|
|
|
|
from zhenxun.models.group_console import GroupConsole
|
|
|
|
|
|
from zhenxun.models.level_user import LevelUser
|
2024-02-26 03:04:32 +08:00
|
|
|
|
from zhenxun.models.plugin_info import PluginInfo
|
|
|
|
|
|
from zhenxun.models.plugin_limit import PluginLimit
|
|
|
|
|
|
from zhenxun.models.user_console import UserConsole
|
2024-12-10 19:49:11 +08:00
|
|
|
|
from zhenxun.services.log import logger
|
2024-02-26 03:04:32 +08:00
|
|
|
|
from zhenxun.utils.enum import (
|
|
|
|
|
|
BlockType,
|
|
|
|
|
|
GoldHandle,
|
|
|
|
|
|
LimitWatchType,
|
|
|
|
|
|
PluginLimitType,
|
2024-12-10 19:49:11 +08:00
|
|
|
|
PluginType,
|
2024-02-26 03:04:32 +08:00
|
|
|
|
)
|
2024-12-10 19:49:11 +08:00
|
|
|
|
from zhenxun.utils.exception import InsufficientGold
|
|
|
|
|
|
from zhenxun.utils.message import MessageUtils
|
|
|
|
|
|
from zhenxun.utils.utils import CountLimiter, FreqLimiter, UserBlockLimiter
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
2024-08-18 22:26:53 +08:00
|
|
|
|
base_config = Config.get("hook")
|
|
|
|
|
|
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
|
|
|
|
|
class Limit(BaseModel):
|
|
|
|
|
|
limit: PluginLimit
|
|
|
|
|
|
limiter: FreqLimiter | UserBlockLimiter | CountLimiter
|
|
|
|
|
|
|
|
|
|
|
|
class Config:
|
|
|
|
|
|
arbitrary_types_allowed = True
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LimitManage:
|
2024-09-14 14:23:19 +08:00
|
|
|
|
add_module = [] # noqa: RUF012
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
2024-09-14 14:23:19 +08:00
|
|
|
|
cd_limit: dict[str, Limit] = {} # noqa: RUF012
|
|
|
|
|
|
block_limit: dict[str, Limit] = {} # noqa: RUF012
|
|
|
|
|
|
count_limit: dict[str, Limit] = {} # noqa: RUF012
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
def add_limit(cls, limit: PluginLimit):
|
|
|
|
|
|
"""添加限制
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
limit: PluginLimit
|
|
|
|
|
|
"""
|
|
|
|
|
|
if limit.module not in cls.add_module:
|
|
|
|
|
|
cls.add_module.append(limit.module)
|
|
|
|
|
|
if limit.limit_type == PluginLimitType.BLOCK:
|
|
|
|
|
|
cls.block_limit[limit.module] = Limit(
|
|
|
|
|
|
limit=limit, limiter=UserBlockLimiter()
|
|
|
|
|
|
)
|
|
|
|
|
|
elif limit.limit_type == PluginLimitType.CD:
|
|
|
|
|
|
cls.cd_limit[limit.module] = Limit(
|
|
|
|
|
|
limit=limit, limiter=FreqLimiter(limit.cd)
|
|
|
|
|
|
)
|
|
|
|
|
|
elif limit.limit_type == PluginLimitType.COUNT:
|
|
|
|
|
|
cls.count_limit[limit.module] = Limit(
|
|
|
|
|
|
limit=limit, limiter=CountLimiter(limit.max_count)
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
def unblock(
|
|
|
|
|
|
cls, module: str, user_id: str, group_id: str | None, channel_id: str | None
|
|
|
|
|
|
):
|
|
|
|
|
|
"""解除插件block
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
module: 模块名
|
|
|
|
|
|
user_id: 用户id
|
|
|
|
|
|
group_id: 群组id
|
|
|
|
|
|
channel_id: 频道id
|
|
|
|
|
|
"""
|
|
|
|
|
|
if limit_model := cls.block_limit.get(module):
|
|
|
|
|
|
limit = limit_model.limit
|
|
|
|
|
|
limiter: UserBlockLimiter = limit_model.limiter # type: ignore
|
|
|
|
|
|
key_type = user_id
|
|
|
|
|
|
if group_id and limit.watch_type == LimitWatchType.GROUP:
|
|
|
|
|
|
key_type = channel_id or group_id
|
2024-11-24 18:00:51 +08:00
|
|
|
|
logger.debug(
|
2024-11-26 19:29:32 +08:00
|
|
|
|
f"解除对象: {key_type} 的block限制",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
session=user_id,
|
|
|
|
|
|
group_id=group_id,
|
|
|
|
|
|
)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
limiter.set_false(key_type)
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
async def check(
|
|
|
|
|
|
cls,
|
2024-10-06 18:16:35 +08:00
|
|
|
|
module: str,
|
2024-02-26 03:04:32 +08:00
|
|
|
|
user_id: str,
|
|
|
|
|
|
group_id: str | None,
|
|
|
|
|
|
channel_id: str | None,
|
|
|
|
|
|
session: EventSession,
|
|
|
|
|
|
):
|
|
|
|
|
|
"""检测限制
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
module: 模块名
|
|
|
|
|
|
user_id: 用户id
|
|
|
|
|
|
group_id: 群组id
|
|
|
|
|
|
channel_id: 频道id
|
|
|
|
|
|
session: Session
|
|
|
|
|
|
|
|
|
|
|
|
异常:
|
|
|
|
|
|
IgnoredException: IgnoredException
|
|
|
|
|
|
"""
|
2024-10-06 18:16:35 +08:00
|
|
|
|
if limit_model := cls.cd_limit.get(module):
|
2024-02-26 03:04:32 +08:00
|
|
|
|
await cls.__check(limit_model, user_id, group_id, channel_id, session)
|
2024-10-06 18:16:35 +08:00
|
|
|
|
if limit_model := cls.block_limit.get(module):
|
2024-02-26 03:04:32 +08:00
|
|
|
|
await cls.__check(limit_model, user_id, group_id, channel_id, session)
|
2024-10-06 18:16:35 +08:00
|
|
|
|
if limit_model := cls.count_limit.get(module):
|
2024-02-26 03:04:32 +08:00
|
|
|
|
await cls.__check(limit_model, user_id, group_id, channel_id, session)
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
|
|
async def __check(
|
|
|
|
|
|
cls,
|
2024-10-01 00:05:43 +08:00
|
|
|
|
limit_model: Limit | None,
|
2024-02-26 03:04:32 +08:00
|
|
|
|
user_id: str,
|
|
|
|
|
|
group_id: str | None,
|
|
|
|
|
|
channel_id: str | None,
|
|
|
|
|
|
session: EventSession,
|
|
|
|
|
|
):
|
|
|
|
|
|
"""检测限制
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
limit_model: Limit
|
|
|
|
|
|
user_id: 用户id
|
|
|
|
|
|
group_id: 群组id
|
|
|
|
|
|
channel_id: 频道id
|
|
|
|
|
|
session: Session
|
|
|
|
|
|
|
|
|
|
|
|
异常:
|
|
|
|
|
|
IgnoredException: IgnoredException
|
|
|
|
|
|
"""
|
2024-09-14 14:23:19 +08:00
|
|
|
|
if not limit_model:
|
|
|
|
|
|
return
|
|
|
|
|
|
limit = limit_model.limit
|
|
|
|
|
|
limiter = limit_model.limiter
|
|
|
|
|
|
is_limit = (
|
|
|
|
|
|
LimitWatchType.ALL
|
|
|
|
|
|
or (group_id and limit.watch_type == LimitWatchType.GROUP)
|
|
|
|
|
|
or (not group_id and limit.watch_type == LimitWatchType.USER)
|
|
|
|
|
|
)
|
|
|
|
|
|
key_type = user_id
|
|
|
|
|
|
if group_id and limit.watch_type == LimitWatchType.GROUP:
|
|
|
|
|
|
key_type = channel_id or group_id
|
|
|
|
|
|
if is_limit and not limiter.check(key_type):
|
|
|
|
|
|
if limit.result:
|
|
|
|
|
|
await MessageUtils.build_message(limit.result).send()
|
|
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"{limit.module}({limit.limit_type}) 正在限制中...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-09-14 14:23:19 +08:00
|
|
|
|
session=session,
|
2024-02-26 03:04:32 +08:00
|
|
|
|
)
|
2024-09-14 14:23:19 +08:00
|
|
|
|
raise IgnoredException(f"{limit.module} 正在限制中...")
|
|
|
|
|
|
else:
|
2024-11-24 18:00:51 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"开始进行限制 {limit.module}({limit.limit_type})...",
|
|
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
session=user_id,
|
|
|
|
|
|
group_id=group_id,
|
|
|
|
|
|
)
|
2024-09-14 14:23:19 +08:00
|
|
|
|
if isinstance(limiter, FreqLimiter):
|
|
|
|
|
|
limiter.start_cd(key_type)
|
|
|
|
|
|
if isinstance(limiter, UserBlockLimiter):
|
|
|
|
|
|
limiter.set_true(key_type)
|
|
|
|
|
|
if isinstance(limiter, CountLimiter):
|
|
|
|
|
|
limiter.increase(key_type)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class IsSuperuserException(Exception):
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AuthChecker:
|
|
|
|
|
|
"""
|
|
|
|
|
|
权限检查
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
|
check_notice_info_cd = Config.get_config("hook", "CHECK_NOTICE_INFO_CD")
|
|
|
|
|
|
if check_notice_info_cd is None or check_notice_info_cd < 0:
|
|
|
|
|
|
raise ValueError("模块: [hook], 配置项: [CHECK_NOTICE_INFO_CD] 为空或小于0")
|
|
|
|
|
|
self._flmt = FreqLimiter(check_notice_info_cd)
|
|
|
|
|
|
self._flmt_g = FreqLimiter(check_notice_info_cd)
|
|
|
|
|
|
self._flmt_s = FreqLimiter(check_notice_info_cd)
|
|
|
|
|
|
self._flmt_c = FreqLimiter(check_notice_info_cd)
|
|
|
|
|
|
|
2024-08-18 22:26:53 +08:00
|
|
|
|
def is_send_limit_message(self, plugin: PluginInfo, sid: str) -> bool:
|
|
|
|
|
|
"""是否发送提示消息
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
plugin: PluginInfo
|
|
|
|
|
|
|
|
|
|
|
|
返回:
|
|
|
|
|
|
bool: 是否发送提示消息
|
|
|
|
|
|
"""
|
|
|
|
|
|
if not base_config.get("IS_SEND_TIP_MESSAGE"):
|
|
|
|
|
|
return False
|
|
|
|
|
|
if plugin.plugin_type == PluginType.DEPENDANT:
|
|
|
|
|
|
return False
|
2024-09-14 14:23:19 +08:00
|
|
|
|
return plugin.module != "ai" if self._flmt_s.check(sid) else False
|
2024-08-18 22:26:53 +08:00
|
|
|
|
|
2024-02-26 03:04:32 +08:00
|
|
|
|
async def auth(
|
|
|
|
|
|
self,
|
|
|
|
|
|
matcher: Matcher,
|
2024-08-13 00:47:39 +08:00
|
|
|
|
event: Event,
|
2024-02-26 03:04:32 +08:00
|
|
|
|
bot: Bot,
|
|
|
|
|
|
session: EventSession,
|
|
|
|
|
|
message: UniMsg,
|
|
|
|
|
|
):
|
|
|
|
|
|
"""权限检查
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
matcher: matcher
|
|
|
|
|
|
bot: bot
|
|
|
|
|
|
session: EventSession
|
|
|
|
|
|
message: UniMsg
|
|
|
|
|
|
"""
|
|
|
|
|
|
is_ignore = False
|
|
|
|
|
|
cost_gold = 0
|
|
|
|
|
|
user_id = session.id1
|
|
|
|
|
|
group_id = session.id3
|
|
|
|
|
|
channel_id = session.id2
|
|
|
|
|
|
if not group_id:
|
|
|
|
|
|
group_id = channel_id
|
|
|
|
|
|
channel_id = None
|
2024-08-13 00:47:39 +08:00
|
|
|
|
if matcher.type == "notice" and not isinstance(event, PokeNotifyEvent):
|
|
|
|
|
|
"""过滤除poke外的notice"""
|
|
|
|
|
|
return
|
2024-08-06 21:08:31 +08:00
|
|
|
|
if user_id and matcher.plugin and (module_path := matcher.plugin.module_name):
|
2024-08-10 12:10:53 +08:00
|
|
|
|
try:
|
|
|
|
|
|
user = await UserConsole.get_user(user_id, session.platform)
|
|
|
|
|
|
except IntegrityError as e:
|
|
|
|
|
|
logger.debug(
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"重复创建用户,已跳过该次权限...",
|
|
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
session=session,
|
|
|
|
|
|
e=e,
|
2024-08-10 12:10:53 +08:00
|
|
|
|
)
|
|
|
|
|
|
return
|
2024-08-06 21:08:31 +08:00
|
|
|
|
if plugin := await PluginInfo.get_or_none(module_path=module_path):
|
2024-08-18 22:26:53 +08:00
|
|
|
|
if plugin.plugin_type == PluginType.HIDDEN:
|
2024-10-24 16:27:37 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"插件: {plugin.name}:{plugin.module} "
|
|
|
|
|
|
"为HIDDEN,已跳过权限检查..."
|
|
|
|
|
|
)
|
2024-02-27 01:14:49 +08:00
|
|
|
|
return
|
2024-02-26 03:04:32 +08:00
|
|
|
|
try:
|
|
|
|
|
|
cost_gold = await self.auth_cost(user, plugin, session)
|
|
|
|
|
|
if session.id1 in bot.config.superusers:
|
|
|
|
|
|
if plugin.plugin_type == PluginType.SUPERUSER:
|
|
|
|
|
|
raise IsSuperuserException()
|
|
|
|
|
|
if not plugin.limit_superuser:
|
|
|
|
|
|
cost_gold = 0
|
|
|
|
|
|
raise IsSuperuserException()
|
2024-10-21 19:07:35 +08:00
|
|
|
|
await self.auth_bot(plugin, bot.self_id)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
await self.auth_group(plugin, session, message)
|
|
|
|
|
|
await self.auth_admin(plugin, session)
|
2024-08-13 00:47:39 +08:00
|
|
|
|
await self.auth_plugin(plugin, session, event)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
await self.auth_limit(plugin, session)
|
|
|
|
|
|
except IsSuperuserException:
|
|
|
|
|
|
logger.debug(
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"超级用户或被ban跳过权限检测...", "AuthChecker", session=session
|
2024-02-26 03:04:32 +08:00
|
|
|
|
)
|
|
|
|
|
|
except IgnoredException:
|
|
|
|
|
|
is_ignore = True
|
|
|
|
|
|
LimitManage.unblock(
|
|
|
|
|
|
matcher.plugin.name, user_id, group_id, channel_id
|
|
|
|
|
|
)
|
2024-08-12 22:26:13 +08:00
|
|
|
|
except AssertionError as e:
|
|
|
|
|
|
is_ignore = True
|
|
|
|
|
|
logger.debug("消息无法发送", session=session, e=e)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
if cost_gold and user_id:
|
|
|
|
|
|
"""花费金币"""
|
2024-08-05 01:10:50 +08:00
|
|
|
|
try:
|
|
|
|
|
|
await UserConsole.reduce_gold(
|
|
|
|
|
|
user_id,
|
|
|
|
|
|
cost_gold,
|
|
|
|
|
|
GoldHandle.PLUGIN,
|
|
|
|
|
|
matcher.plugin.name if matcher.plugin else "",
|
|
|
|
|
|
session.platform,
|
|
|
|
|
|
)
|
|
|
|
|
|
except InsufficientGold:
|
|
|
|
|
|
if u := await UserConsole.get_user(user_id):
|
|
|
|
|
|
u.gold = 0
|
|
|
|
|
|
await u.save(update_fields=["gold"])
|
2024-11-24 18:00:51 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"调用功能花费金币: {cost_gold}", "AuthChecker", session=session
|
|
|
|
|
|
)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
if is_ignore:
|
|
|
|
|
|
raise IgnoredException("权限检测 ignore")
|
|
|
|
|
|
|
2024-10-21 19:07:35 +08:00
|
|
|
|
async def auth_bot(self, plugin: PluginInfo, bot_id: str):
|
|
|
|
|
|
"""机器人权限
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
plugin: PluginInfo
|
|
|
|
|
|
bot_id: bot_id
|
|
|
|
|
|
"""
|
2024-12-10 20:16:14 +08:00
|
|
|
|
if not await BotConsole.get_bot_status(bot_id):
|
|
|
|
|
|
logger.debug("Bot休眠中阻断权限检测...", "AuthChecker")
|
|
|
|
|
|
raise IgnoredException("BotConsole休眠权限检测 ignore")
|
|
|
|
|
|
if await BotConsole.is_block_plugin(bot_id, plugin.module):
|
|
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"Bot插件 {plugin.name}({plugin.module}) 权限检查结果为关闭...",
|
|
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
)
|
|
|
|
|
|
raise IgnoredException("BotConsole插件权限检测 ignore")
|
2024-10-21 19:07:35 +08:00
|
|
|
|
|
2024-02-26 03:04:32 +08:00
|
|
|
|
async def auth_limit(self, plugin: PluginInfo, session: EventSession):
|
|
|
|
|
|
"""插件限制
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
plugin: PluginInfo
|
|
|
|
|
|
session: EventSession
|
|
|
|
|
|
"""
|
|
|
|
|
|
user_id = session.id1
|
|
|
|
|
|
group_id = session.id3
|
|
|
|
|
|
channel_id = session.id2
|
|
|
|
|
|
if not group_id:
|
|
|
|
|
|
group_id = channel_id
|
|
|
|
|
|
channel_id = None
|
2024-11-26 19:29:32 +08:00
|
|
|
|
if plugin.module not in LimitManage.add_module:
|
|
|
|
|
|
limit_list: list[PluginLimit] = await plugin.plugin_limit.filter(
|
|
|
|
|
|
status=True
|
|
|
|
|
|
).all() # type: ignore
|
|
|
|
|
|
for limit in limit_list:
|
|
|
|
|
|
LimitManage.add_limit(limit)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
if user_id:
|
|
|
|
|
|
await LimitManage.check(
|
2024-10-06 18:16:35 +08:00
|
|
|
|
plugin.module, user_id, group_id, channel_id, session
|
2024-02-26 03:04:32 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
2024-08-13 00:47:39 +08:00
|
|
|
|
async def auth_plugin(
|
|
|
|
|
|
self, plugin: PluginInfo, session: EventSession, event: Event
|
|
|
|
|
|
):
|
2024-02-26 03:04:32 +08:00
|
|
|
|
"""插件状态
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
plugin: PluginInfo
|
|
|
|
|
|
session: EventSession
|
|
|
|
|
|
"""
|
|
|
|
|
|
group_id = session.id3
|
|
|
|
|
|
channel_id = session.id2
|
|
|
|
|
|
if not group_id:
|
|
|
|
|
|
group_id = channel_id
|
|
|
|
|
|
channel_id = None
|
2024-09-14 14:23:19 +08:00
|
|
|
|
if user_id := session.id1:
|
|
|
|
|
|
is_poke = isinstance(event, PokeNotifyEvent)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
if group_id:
|
2024-08-18 22:26:53 +08:00
|
|
|
|
sid = group_id or user_id
|
2024-10-05 16:45:02 +08:00
|
|
|
|
if await GroupConsole.is_superuser_block_plugin(
|
|
|
|
|
|
group_id, plugin.module
|
2024-02-26 03:04:32 +08:00
|
|
|
|
):
|
2024-02-27 01:14:49 +08:00
|
|
|
|
"""超级用户群组插件状态"""
|
2024-08-18 22:26:53 +08:00
|
|
|
|
if self.is_send_limit_message(plugin, sid) and not is_poke:
|
2024-02-26 03:04:32 +08:00
|
|
|
|
self._flmt_s.start_cd(group_id or user_id)
|
2024-08-11 15:57:33 +08:00
|
|
|
|
await MessageUtils.build_message(
|
|
|
|
|
|
"超级管理员禁用了该群此功能..."
|
|
|
|
|
|
).send(reply_to=True)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
logger.debug(
|
2024-02-27 01:14:49 +08:00
|
|
|
|
f"{plugin.name}({plugin.module}) 超级管理员禁用了该群此功能...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
2024-02-27 01:14:49 +08:00
|
|
|
|
raise IgnoredException("超级管理员禁用了该群此功能...")
|
2024-10-05 16:45:02 +08:00
|
|
|
|
if await GroupConsole.is_normal_block_plugin(group_id, plugin.module):
|
2024-02-26 03:04:32 +08:00
|
|
|
|
"""群组插件状态"""
|
2024-08-18 22:26:53 +08:00
|
|
|
|
if self.is_send_limit_message(plugin, sid) and not is_poke:
|
2024-02-26 03:04:32 +08:00
|
|
|
|
self._flmt_s.start_cd(group_id or user_id)
|
2024-08-11 15:57:33 +08:00
|
|
|
|
await MessageUtils.build_message("该群未开启此功能...").send(
|
|
|
|
|
|
reply_to=True
|
|
|
|
|
|
)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
logger.debug(
|
2024-02-27 01:14:49 +08:00
|
|
|
|
f"{plugin.name}({plugin.module}) 未开启此功能...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
2024-02-27 01:14:49 +08:00
|
|
|
|
raise IgnoredException("该群未开启此功能...")
|
2024-12-25 12:03:49 +08:00
|
|
|
|
if plugin.block_type == BlockType.GROUP:
|
2024-02-27 01:14:49 +08:00
|
|
|
|
"""全局群组禁用"""
|
2024-02-26 03:04:32 +08:00
|
|
|
|
try:
|
2024-08-18 22:26:53 +08:00
|
|
|
|
if self.is_send_limit_message(plugin, sid) and not is_poke:
|
2024-02-26 03:04:32 +08:00
|
|
|
|
self._flmt_c.start_cd(group_id)
|
2024-08-11 15:57:33 +08:00
|
|
|
|
await MessageUtils.build_message(
|
|
|
|
|
|
"该功能在群组中已被禁用..."
|
|
|
|
|
|
).send(reply_to=True)
|
2024-02-27 01:14:49 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error(
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"auth_plugin 发送消息失败",
|
|
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
session=session,
|
|
|
|
|
|
e=e,
|
2024-02-27 01:14:49 +08:00
|
|
|
|
)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
logger.debug(
|
2024-02-27 01:14:49 +08:00
|
|
|
|
f"{plugin.name}({plugin.module}) 该插件在群组中已被禁用...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
2024-02-27 01:14:49 +08:00
|
|
|
|
raise IgnoredException("该插件在群组中已被禁用...")
|
2024-02-26 03:04:32 +08:00
|
|
|
|
else:
|
2024-08-18 22:26:53 +08:00
|
|
|
|
sid = user_id
|
2024-12-25 12:03:49 +08:00
|
|
|
|
if plugin.block_type == BlockType.PRIVATE:
|
2024-02-27 01:14:49 +08:00
|
|
|
|
"""全局私聊禁用"""
|
2024-02-26 03:04:32 +08:00
|
|
|
|
try:
|
2024-08-18 22:26:53 +08:00
|
|
|
|
if self.is_send_limit_message(plugin, sid) and not is_poke:
|
2024-02-26 03:04:32 +08:00
|
|
|
|
self._flmt_c.start_cd(user_id)
|
2024-08-11 15:57:33 +08:00
|
|
|
|
await MessageUtils.build_message(
|
|
|
|
|
|
"该功能在私聊中已被禁用..."
|
|
|
|
|
|
).send()
|
2024-02-27 01:14:49 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error(
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"auth_admin 发送消息失败",
|
|
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
session=session,
|
|
|
|
|
|
e=e,
|
2024-02-27 01:14:49 +08:00
|
|
|
|
)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"{plugin.name}({plugin.module}) 该插件在私聊中已被禁用...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
|
|
|
|
|
raise IgnoredException("该插件在私聊中已被禁用...")
|
|
|
|
|
|
if not plugin.status and plugin.block_type == BlockType.ALL:
|
|
|
|
|
|
"""全局状态"""
|
2024-09-14 14:23:19 +08:00
|
|
|
|
if group_id and await GroupConsole.is_super_group(group_id):
|
|
|
|
|
|
raise IsSuperuserException()
|
2024-02-26 03:04:32 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"{plugin.name}({plugin.module}) 全局未开启此功能...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
2024-08-18 22:26:53 +08:00
|
|
|
|
if self.is_send_limit_message(plugin, sid) and not is_poke:
|
2024-08-13 00:47:39 +08:00
|
|
|
|
self._flmt_s.start_cd(group_id or user_id)
|
|
|
|
|
|
await MessageUtils.build_message("全局未开启此功能...").send()
|
2024-02-26 03:04:32 +08:00
|
|
|
|
raise IgnoredException("全局未开启此功能...")
|
|
|
|
|
|
|
|
|
|
|
|
async def auth_admin(self, plugin: PluginInfo, session: EventSession):
|
|
|
|
|
|
"""管理员命令 个人权限
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
plugin: PluginInfo
|
|
|
|
|
|
session: EventSession
|
|
|
|
|
|
"""
|
|
|
|
|
|
user_id = session.id1
|
2024-02-27 01:14:49 +08:00
|
|
|
|
if user_id and plugin.admin_level:
|
2024-09-14 14:23:19 +08:00
|
|
|
|
if group_id := session.id3 or session.id2:
|
2024-02-27 01:14:49 +08:00
|
|
|
|
if not await LevelUser.check_level(
|
|
|
|
|
|
user_id, group_id, plugin.admin_level
|
|
|
|
|
|
):
|
2024-02-26 03:04:32 +08:00
|
|
|
|
try:
|
|
|
|
|
|
if self._flmt.check(user_id):
|
|
|
|
|
|
self._flmt.start_cd(user_id)
|
2024-08-11 15:57:33 +08:00
|
|
|
|
await MessageUtils.build_message(
|
2024-02-26 03:04:32 +08:00
|
|
|
|
[
|
2024-08-11 15:57:33 +08:00
|
|
|
|
At(flag="user", target=user_id),
|
2024-09-14 14:23:19 +08:00
|
|
|
|
f"你的权限不足喔,"
|
|
|
|
|
|
f"该功能需要的权限等级: {plugin.admin_level}",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
]
|
2024-08-11 15:57:33 +08:00
|
|
|
|
).send(reply_to=True)
|
2024-02-27 01:14:49 +08:00
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error(
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"auth_admin 发送消息失败",
|
|
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
session=session,
|
|
|
|
|
|
e=e,
|
2024-02-27 01:14:49 +08:00
|
|
|
|
)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"{plugin.name}({plugin.module}) 管理员权限不足...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
|
|
|
|
|
raise IgnoredException("管理员权限不足...")
|
2024-09-14 14:23:19 +08:00
|
|
|
|
elif not await LevelUser.check_level(user_id, None, plugin.admin_level):
|
|
|
|
|
|
try:
|
|
|
|
|
|
await MessageUtils.build_message(
|
|
|
|
|
|
f"你的权限不足喔,该功能需要的权限等级: {plugin.admin_level}"
|
|
|
|
|
|
).send()
|
|
|
|
|
|
except Exception as e:
|
|
|
|
|
|
logger.error(
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"auth_admin 发送消息失败", "AuthChecker", session=session, e=e
|
2024-02-26 03:04:32 +08:00
|
|
|
|
)
|
2024-09-14 14:23:19 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"{plugin.name}({plugin.module}) 管理员权限不足...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-09-14 14:23:19 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
|
|
|
|
|
raise IgnoredException("权限不足")
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
|
|
|
|
|
async def auth_group(
|
|
|
|
|
|
self, plugin: PluginInfo, session: EventSession, message: UniMsg
|
|
|
|
|
|
):
|
|
|
|
|
|
"""群黑名单检测 群总开关检测
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
plugin: PluginInfo
|
|
|
|
|
|
session: EventSession
|
|
|
|
|
|
message: UniMsg
|
|
|
|
|
|
"""
|
2024-09-14 14:23:19 +08:00
|
|
|
|
if not (group_id := session.id3 or session.id2):
|
|
|
|
|
|
return
|
|
|
|
|
|
text = message.extract_plain_text()
|
|
|
|
|
|
group = await GroupConsole.get_group(group_id)
|
|
|
|
|
|
if not group:
|
|
|
|
|
|
"""群不存在"""
|
2024-11-28 20:20:23 +08:00
|
|
|
|
logger.debug(
|
|
|
|
|
|
"群组信息不存在...",
|
|
|
|
|
|
"AuthChecker",
|
|
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
2024-09-14 14:23:19 +08:00
|
|
|
|
raise IgnoredException("群不存在")
|
|
|
|
|
|
if group.level < 0:
|
|
|
|
|
|
"""群权限小于0"""
|
|
|
|
|
|
logger.debug(
|
|
|
|
|
|
"群黑名单, 群权限-1...",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-09-14 14:23:19 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
|
|
|
|
|
raise IgnoredException("群黑名单")
|
|
|
|
|
|
if not group.status:
|
|
|
|
|
|
"""群休眠"""
|
|
|
|
|
|
if text.strip() != "醒来":
|
2024-11-24 18:00:51 +08:00
|
|
|
|
logger.debug("群休眠状态...", "AuthChecker", session=session)
|
2024-09-14 14:23:19 +08:00
|
|
|
|
raise IgnoredException("群休眠状态")
|
|
|
|
|
|
if plugin.level > group.level:
|
|
|
|
|
|
"""插件等级大于群等级"""
|
|
|
|
|
|
logger.debug(
|
|
|
|
|
|
f"{plugin.name}({plugin.module}) 群等级限制.."
|
|
|
|
|
|
f"该功能需要的群等级: {plugin.level}..",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-09-14 14:23:19 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
|
|
|
|
|
raise IgnoredException(f"{plugin.name}({plugin.module}) 群等级限制...")
|
2024-02-26 03:04:32 +08:00
|
|
|
|
|
|
|
|
|
|
async def auth_cost(
|
|
|
|
|
|
self, user: UserConsole, plugin: PluginInfo, session: EventSession
|
|
|
|
|
|
) -> int:
|
|
|
|
|
|
"""检测是否满足金币条件
|
|
|
|
|
|
|
|
|
|
|
|
参数:
|
|
|
|
|
|
user: UserConsole
|
|
|
|
|
|
plugin: PluginInfo
|
|
|
|
|
|
session: EventSession
|
|
|
|
|
|
|
|
|
|
|
|
返回:
|
|
|
|
|
|
int: 需要消耗的金币
|
|
|
|
|
|
"""
|
|
|
|
|
|
if user.gold < plugin.cost_gold:
|
|
|
|
|
|
"""插件消耗金币不足"""
|
|
|
|
|
|
try:
|
2024-08-11 15:57:33 +08:00
|
|
|
|
await MessageUtils.build_message(
|
|
|
|
|
|
f"金币不足..该功能需要{plugin.cost_gold}金币.."
|
|
|
|
|
|
).send()
|
2024-02-27 01:14:49 +08:00
|
|
|
|
except Exception as e:
|
2024-11-24 18:00:51 +08:00
|
|
|
|
logger.error(
|
|
|
|
|
|
"auth_cost 发送消息失败", "AuthChecker", session=session, e=e
|
|
|
|
|
|
)
|
2024-02-26 03:04:32 +08:00
|
|
|
|
logger.debug(
|
2024-09-14 14:23:19 +08:00
|
|
|
|
f"{plugin.name}({plugin.module}) 金币限制.."
|
|
|
|
|
|
f"该功能需要{plugin.cost_gold}金币..",
|
2024-11-24 18:00:51 +08:00
|
|
|
|
"AuthChecker",
|
2024-02-26 03:04:32 +08:00
|
|
|
|
session=session,
|
|
|
|
|
|
)
|
|
|
|
|
|
raise IgnoredException(f"{plugin.name}({plugin.module}) 金币限制...")
|
|
|
|
|
|
return plugin.cost_gold
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
checker = AuthChecker()
|