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-09-30 18:01:31 +08:00
|
|
|
from nonebot.utils import escape_tag
|
2020-07-05 20:39:34 +08:00
|
|
|
from nonebot.matcher import matchers
|
2020-08-21 14:24:32 +08:00
|
|
|
from nonebot.exception import IgnoredException, ExpiredException
|
|
|
|
from nonebot.exception import StopPropagation, _ExceptionContainer
|
2020-11-07 17:35:44 +08:00
|
|
|
from nonebot.typing import Set, Type, Union, NoReturn, Bot, Event, Matcher
|
|
|
|
from nonebot.typing import EventPreProcessor, RunPreProcessor, EventPostProcessor, RunPostProcessor
|
2020-07-25 12:28:30 +08:00
|
|
|
|
2020-11-07 17:35:44 +08:00
|
|
|
_event_preprocessors: Set[EventPreProcessor] = set()
|
|
|
|
_event_postprocessors: Set[EventPostProcessor] = set()
|
|
|
|
_run_preprocessors: Set[RunPreProcessor] = set()
|
|
|
|
_run_postprocessors: Set[RunPostProcessor] = set()
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
|
|
|
2020-11-07 17:35:44 +08:00
|
|
|
def event_preprocessor(func: EventPreProcessor) -> EventPreProcessor:
|
2020-07-25 12:28:30 +08:00
|
|
|
_event_preprocessors.add(func)
|
|
|
|
return func
|
2020-07-04 22:51:10 +08:00
|
|
|
|
|
|
|
|
2020-11-07 17:35:44 +08:00
|
|
|
def event_postprocessor(func: EventPostProcessor) -> EventPostProcessor:
|
|
|
|
_event_postprocessors.add(func)
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
|
|
|
def run_preprocessor(func: RunPreProcessor) -> RunPreProcessor:
|
|
|
|
_run_preprocessors.add(func)
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
|
|
|
def run_postprocessor(func: RunPostProcessor) -> RunPostProcessor:
|
|
|
|
_run_postprocessors.add(func)
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
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()
|
2020-11-07 17:35:44 +08:00
|
|
|
|
|
|
|
coros = list(
|
|
|
|
map(lambda x: x(matcher, bot, event, state), _run_preprocessors))
|
|
|
|
if coros:
|
|
|
|
try:
|
|
|
|
await asyncio.gather(*coros)
|
|
|
|
except IgnoredException:
|
|
|
|
logger.opt(colors=True).info(
|
|
|
|
f"Matcher {matcher} running is <b>cancelled</b>")
|
|
|
|
return
|
|
|
|
except Exception as e:
|
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
"<r><bg #f8bbd0>Error when running RunPreProcessors. "
|
|
|
|
"Running cancelled!</bg #f8bbd0></r>")
|
|
|
|
return
|
|
|
|
|
|
|
|
exceptions = []
|
|
|
|
|
2020-08-21 14:24:32 +08:00
|
|
|
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-11-07 17:35:44 +08:00
|
|
|
exceptions.append(e)
|
2020-08-21 14:24:32 +08:00
|
|
|
|
|
|
|
if Matcher.temp:
|
|
|
|
exceptions.append(ExpiredException)
|
|
|
|
if Matcher.block:
|
|
|
|
exceptions.append(StopPropagation)
|
2020-11-07 17:35:44 +08:00
|
|
|
|
|
|
|
coros = list(
|
|
|
|
map(lambda x: x(matcher, exceptions, bot, event, state),
|
|
|
|
_run_postprocessors))
|
|
|
|
if coros:
|
|
|
|
try:
|
|
|
|
await asyncio.gather(*coros)
|
|
|
|
except Exception as e:
|
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
"<r><bg #f8bbd0>Error when running RunPostProcessors</bg #f8bbd0></r>"
|
|
|
|
)
|
|
|
|
|
2020-08-21 14:24:32 +08:00
|
|
|
if exceptions:
|
|
|
|
raise _ExceptionContainer(exceptions)
|
|
|
|
|
|
|
|
|
2020-08-10 13:06:02 +08:00
|
|
|
async def handle_event(bot: Bot, event: Event):
|
2020-10-29 17:06:07 +08:00
|
|
|
show_log = True
|
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(
|
2020-09-30 18:01:31 +08:00
|
|
|
map(
|
|
|
|
lambda x: escape_tag(str(x))
|
|
|
|
if x.type == "text" else f"<le>{escape_tag(str(x))}</le>",
|
2020-08-27 16:43:58 +08:00
|
|
|
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":
|
2020-10-29 17:06:07 +08:00
|
|
|
# log_msg += f"MetaEvent {event.detail_type}"
|
|
|
|
show_log = False
|
|
|
|
if show_log:
|
|
|
|
logger.opt(colors=True).info(log_msg)
|
2020-08-25 18:02:18 +08:00
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
state = {}
|
2020-11-07 17:35:44 +08:00
|
|
|
coros = list(map(lambda x: x(bot, event, state), _event_preprocessors))
|
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-11-07 17:35:44 +08:00
|
|
|
except Exception as e:
|
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
"<r><bg #f8bbd0>Error when running EventPreProcessors. "
|
|
|
|
"Event ignored!</bg #f8bbd0></r>")
|
|
|
|
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-10-29 17:06:07 +08:00
|
|
|
if show_log:
|
|
|
|
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
|
2020-11-07 17:35:44 +08:00
|
|
|
|
|
|
|
coros = list(map(lambda x: x(bot, event, state), _event_postprocessors))
|
|
|
|
if coros:
|
|
|
|
try:
|
|
|
|
logger.debug("Running PostProcessors...")
|
|
|
|
await asyncio.gather(*coros)
|
|
|
|
except Exception as e:
|
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
"<r><bg #f8bbd0>Error when running EventPostProcessors</bg #f8bbd0></r>"
|
|
|
|
)
|