2020-07-04 22:51:10 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2020-07-25 12:28:30 +08:00
|
|
|
import asyncio
|
2020-08-06 17:54:55 +08:00
|
|
|
from datetime import datetime
|
2020-07-25 12:28:30 +08:00
|
|
|
|
2020-07-05 20:39:34 +08:00
|
|
|
from nonebot.log import logger
|
2020-08-17 16:09:41 +08:00
|
|
|
from nonebot.rule import TrieRule
|
2020-07-05 20:39:34 +08:00
|
|
|
from nonebot.matcher import matchers
|
2020-08-21 14:24:32 +08:00
|
|
|
from nonebot.typing import Set, Type, Union, NoReturn
|
|
|
|
from nonebot.typing import Bot, Event, Matcher, PreProcessor
|
|
|
|
from nonebot.exception import IgnoredException, ExpiredException
|
|
|
|
from nonebot.exception import StopPropagation, _ExceptionContainer
|
2020-07-25 12:28:30 +08:00
|
|
|
|
2020-08-10 13:06:02 +08:00
|
|
|
_event_preprocessors: Set[PreProcessor] = set()
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
|
|
|
2020-08-10 13:06:02 +08:00
|
|
|
def event_preprocessor(func: PreProcessor) -> PreProcessor:
|
2020-07-25 12:28:30 +08:00
|
|
|
_event_preprocessors.add(func)
|
|
|
|
return func
|
2020-07-04 22:51:10 +08:00
|
|
|
|
|
|
|
|
2020-08-21 14:24:32 +08:00
|
|
|
async def _run_matcher(Matcher: Type[Matcher], bot: Bot, event: Event,
|
|
|
|
state: dict) -> Union[None, NoReturn]:
|
2020-08-24 17:59:36 +08:00
|
|
|
if Matcher.expire_time and datetime.now() > Matcher.expire_time:
|
2020-08-21 14:24:32 +08:00
|
|
|
raise _ExceptionContainer([ExpiredException])
|
|
|
|
|
|
|
|
try:
|
|
|
|
if not await Matcher.check_perm(
|
|
|
|
bot, event) or not await Matcher.check_rule(bot, event, state):
|
|
|
|
return
|
|
|
|
except Exception as e:
|
2020-08-27 16:43:58 +08:00
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
f"<r><bg #f8bbd0>Rule check failed for {Matcher}.</bg #f8bbd0></r>")
|
2020-08-21 14:24:32 +08:00
|
|
|
return
|
|
|
|
|
2020-08-26 17:47:36 +08:00
|
|
|
logger.info(f"Event will be handled by {Matcher}")
|
|
|
|
|
2020-08-21 14:24:32 +08:00
|
|
|
matcher = Matcher()
|
|
|
|
# TODO: BeforeMatcherRun
|
|
|
|
try:
|
|
|
|
logger.debug(f"Running matcher {matcher}")
|
|
|
|
await matcher.run(bot, event, state)
|
|
|
|
except Exception as e:
|
2020-08-27 16:43:58 +08:00
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
f"<r><bg #f8bbd0>Running matcher {matcher} failed.</bg #f8bbd0></r>"
|
|
|
|
)
|
2020-08-21 14:24:32 +08:00
|
|
|
|
|
|
|
exceptions = []
|
|
|
|
if Matcher.temp:
|
|
|
|
exceptions.append(ExpiredException)
|
|
|
|
if Matcher.block:
|
|
|
|
exceptions.append(StopPropagation)
|
|
|
|
if exceptions:
|
|
|
|
raise _ExceptionContainer(exceptions)
|
|
|
|
|
|
|
|
|
2020-08-10 13:06:02 +08:00
|
|
|
async def handle_event(bot: Bot, event: Event):
|
2020-08-27 16:43:58 +08:00
|
|
|
log_msg = f"<m>{bot.type.upper()} </m>| {event.self_id} [{event.name}]: "
|
2020-08-25 18:02:18 +08:00
|
|
|
if event.type == "message":
|
|
|
|
log_msg += f"Message {event.id} from "
|
|
|
|
log_msg += str(event.user_id)
|
|
|
|
if event.detail_type == "group":
|
2020-08-27 16:43:58 +08:00
|
|
|
log_msg += f"@[群:{event.group_id}]:"
|
|
|
|
|
|
|
|
log_msg += ' "' + "".join(
|
|
|
|
map(lambda x: str(x) if x.type == "text" else f"<le>{x!s}</le>",
|
|
|
|
event.message)) + '"' # type: ignore
|
2020-08-25 18:02:18 +08:00
|
|
|
elif event.type == "notice":
|
|
|
|
log_msg += f"Notice {event.raw_event}"
|
|
|
|
elif event.type == "request":
|
|
|
|
log_msg += f"Request {event.raw_event}"
|
|
|
|
elif event.type == "meta_event":
|
|
|
|
log_msg += f"MetaEvent {event.raw_event}"
|
2020-08-27 16:43:58 +08:00
|
|
|
logger.opt(colors=True).info(log_msg)
|
2020-08-25 18:02:18 +08:00
|
|
|
|
2020-07-25 12:28:30 +08:00
|
|
|
coros = []
|
2020-08-17 16:09:41 +08:00
|
|
|
state = {}
|
2020-07-25 12:28:30 +08:00
|
|
|
for preprocessor in _event_preprocessors:
|
2020-08-17 16:09:41 +08:00
|
|
|
coros.append(preprocessor(bot, event, state))
|
2020-07-25 12:28:30 +08:00
|
|
|
if coros:
|
|
|
|
try:
|
2020-08-25 18:02:18 +08:00
|
|
|
logger.debug("Running PreProcessors...")
|
2020-07-25 12:28:30 +08:00
|
|
|
await asyncio.gather(*coros)
|
|
|
|
except IgnoredException:
|
2020-08-27 16:43:58 +08:00
|
|
|
logger.opt(
|
|
|
|
colors=True).info(f"Event {event.name} is <b>ignored</b>")
|
2020-07-25 12:28:30 +08:00
|
|
|
return
|
2020-07-04 22:51:10 +08:00
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
# Trie Match
|
2020-08-24 17:59:36 +08:00
|
|
|
_, _ = TrieRule.get_value(bot, event, state)
|
2020-08-17 16:09:41 +08:00
|
|
|
|
2020-08-21 14:24:32 +08:00
|
|
|
break_flag = False
|
2020-07-04 22:51:10 +08:00
|
|
|
for priority in sorted(matchers.keys()):
|
2020-08-21 14:24:32 +08:00
|
|
|
if break_flag:
|
|
|
|
break
|
|
|
|
|
|
|
|
pending_tasks = [
|
|
|
|
_run_matcher(matcher, bot, event, state.copy())
|
|
|
|
for matcher in matchers[priority]
|
|
|
|
]
|
|
|
|
|
2020-08-27 16:43:58 +08:00
|
|
|
logger.debug(f"Checking for matchers in priority {priority}...")
|
2020-08-21 14:24:32 +08:00
|
|
|
results = await asyncio.gather(*pending_tasks, return_exceptions=True)
|
|
|
|
|
|
|
|
i = 0
|
|
|
|
for index, result in enumerate(results):
|
|
|
|
if isinstance(result, _ExceptionContainer):
|
|
|
|
e_list = result.exceptions
|
|
|
|
if StopPropagation in e_list:
|
2020-08-27 16:43:58 +08:00
|
|
|
if not break_flag:
|
|
|
|
break_flag = True
|
|
|
|
logger.debug("Stop event propagation")
|
2020-08-21 14:24:32 +08:00
|
|
|
if ExpiredException in e_list:
|
2020-08-27 16:43:58 +08:00
|
|
|
logger.debug(
|
|
|
|
f"Matcher {matchers[priority][index - i]} will be removed."
|
|
|
|
)
|
2020-08-21 14:24:32 +08:00
|
|
|
del matchers[priority][index - i]
|
|
|
|
i += 1
|