2020-11-13 17:15:45 +08:00
|
|
|
|
"""
|
|
|
|
|
事件处理
|
|
|
|
|
========
|
2020-11-16 15:06:37 +08:00
|
|
|
|
|
|
|
|
|
NoneBot 内部处理并按优先级分发事件给所有事件响应器,提供了多个插槽以进行事件的预处理等。
|
2020-11-13 17:15:45 +08:00
|
|
|
|
"""
|
|
|
|
|
|
2020-07-25 12:28:30 +08:00
|
|
|
|
import asyncio
|
2020-08-06 17:54:55 +08:00
|
|
|
|
from datetime import datetime
|
2021-04-09 12:26:27 +08:00
|
|
|
|
from typing import Set, Type, Optional, TYPE_CHECKING
|
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-11-16 11:25:42 +08:00
|
|
|
|
from nonebot.matcher import matchers, Matcher
|
2020-12-09 17:51:24 +08:00
|
|
|
|
from nonebot.exception import IgnoredException, StopPropagation, NoLogException
|
2020-12-17 21:09:30 +08:00
|
|
|
|
from nonebot.typing import T_State, T_EventPreProcessor, T_RunPreProcessor, T_EventPostProcessor, T_RunPostProcessor
|
2020-12-06 02:30:19 +08:00
|
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
2020-12-07 00:06:09 +08:00
|
|
|
|
from nonebot.adapters import Bot, Event
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
_event_preprocessors: Set[T_EventPreProcessor] = set()
|
|
|
|
|
_event_postprocessors: Set[T_EventPostProcessor] = set()
|
|
|
|
|
_run_preprocessors: Set[T_RunPreProcessor] = set()
|
|
|
|
|
_run_postprocessors: Set[T_RunPostProcessor] = set()
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
def event_preprocessor(func: T_EventPreProcessor) -> T_EventPreProcessor:
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
事件预处理。装饰一个函数,使它在每次接收到事件并分发给各响应器之前执行。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
事件预处理函数接收三个参数。
|
|
|
|
|
|
|
|
|
|
* ``bot: Bot``: Bot 对象
|
|
|
|
|
* ``event: Event``: Event 对象
|
2020-12-17 21:09:30 +08:00
|
|
|
|
* ``state: T_State``: 当前 State
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
2020-07-25 12:28:30 +08:00
|
|
|
|
_event_preprocessors.add(func)
|
|
|
|
|
return func
|
2020-07-04 22:51:10 +08:00
|
|
|
|
|
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
def event_postprocessor(func: T_EventPostProcessor) -> T_EventPostProcessor:
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
事件后处理。装饰一个函数,使它在每次接收到事件并分发给各响应器之后执行。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
事件后处理函数接收三个参数。
|
|
|
|
|
|
|
|
|
|
* ``bot: Bot``: Bot 对象
|
|
|
|
|
* ``event: Event``: Event 对象
|
2020-12-17 21:09:30 +08:00
|
|
|
|
* ``state: T_State``: 当前事件运行前 State
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
2020-11-07 17:35:44 +08:00
|
|
|
|
_event_postprocessors.add(func)
|
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
def run_preprocessor(func: T_RunPreProcessor) -> T_RunPreProcessor:
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
运行预处理。装饰一个函数,使它在每次事件响应器运行前执行。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
运行预处理函数接收四个参数。
|
|
|
|
|
|
|
|
|
|
* ``matcher: Matcher``: 当前要运行的事件响应器
|
|
|
|
|
* ``bot: Bot``: Bot 对象
|
|
|
|
|
* ``event: Event``: Event 对象
|
2020-12-17 21:09:30 +08:00
|
|
|
|
* ``state: T_State``: 当前 State
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
2020-11-07 17:35:44 +08:00
|
|
|
|
_run_preprocessors.add(func)
|
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
def run_postprocessor(func: T_RunPostProcessor) -> T_RunPostProcessor:
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
运行后处理。装饰一个函数,使它在每次事件响应器运行后执行。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
运行后处理函数接收五个参数。
|
|
|
|
|
|
|
|
|
|
* ``matcher: Matcher``: 运行完毕的事件响应器
|
|
|
|
|
* ``exception: Optional[Exception]``: 事件响应器运行错误(如果存在)
|
|
|
|
|
* ``bot: Bot``: Bot 对象
|
|
|
|
|
* ``event: Event``: Event 对象
|
2020-12-17 21:09:30 +08:00
|
|
|
|
* ``state: T_State``: 当前 State
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
2020-11-07 17:35:44 +08:00
|
|
|
|
_run_postprocessors.add(func)
|
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
|
|
2021-02-01 11:42:05 +08:00
|
|
|
|
async def _check_matcher(priority: int, Matcher: Type[Matcher], bot: "Bot",
|
|
|
|
|
event: "Event", state: T_State) -> None:
|
|
|
|
|
if Matcher.expire_time and datetime.now() > Matcher.expire_time:
|
2020-11-16 11:25:42 +08:00
|
|
|
|
try:
|
2021-02-01 11:42:05 +08:00
|
|
|
|
matchers[priority].remove(Matcher)
|
2020-11-16 11:25:42 +08:00
|
|
|
|
except Exception:
|
|
|
|
|
pass
|
2021-02-01 11:42:05 +08:00
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
if not await Matcher.check_perm(
|
|
|
|
|
bot, event) or not await Matcher.check_rule(bot, event, state):
|
|
|
|
|
return
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
|
f"<r><bg #f8bbd0>Rule check failed for {Matcher}.</bg #f8bbd0></r>")
|
2021-02-03 11:23:13 +08:00
|
|
|
|
return
|
2021-02-01 11:42:05 +08:00
|
|
|
|
|
|
|
|
|
if Matcher.temp:
|
2021-01-02 10:57:55 +08:00
|
|
|
|
try:
|
2021-02-01 11:42:05 +08:00
|
|
|
|
matchers[priority].remove(Matcher)
|
2021-01-02 10:57:55 +08:00
|
|
|
|
except Exception:
|
|
|
|
|
pass
|
2021-02-01 11:42:05 +08:00
|
|
|
|
|
|
|
|
|
await _run_matcher(Matcher, bot, event, state)
|
2020-08-21 14:24:32 +08:00
|
|
|
|
|
2020-11-16 11:25:42 +08:00
|
|
|
|
|
2020-12-06 02:30:19 +08:00
|
|
|
|
async def _run_matcher(Matcher: Type[Matcher], bot: "Bot", event: "Event",
|
2020-12-17 21:09:30 +08:00
|
|
|
|
state: T_State) -> None:
|
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
|
|
|
|
|
|
2020-11-16 11:25:42 +08:00
|
|
|
|
exception = None
|
2020-11-07 17:35:44 +08:00
|
|
|
|
|
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-16 11:25:42 +08:00
|
|
|
|
exception = e
|
2020-11-07 17:35:44 +08:00
|
|
|
|
|
|
|
|
|
coros = list(
|
2020-11-16 11:25:42 +08:00
|
|
|
|
map(lambda x: x(matcher, exception, bot, event, state),
|
2020-11-07 17:35:44 +08:00
|
|
|
|
_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-12-24 22:19:08 +08:00
|
|
|
|
if matcher.block:
|
2020-11-16 11:25:42 +08:00
|
|
|
|
raise StopPropagation
|
2020-12-05 20:32:38 +08:00
|
|
|
|
return
|
2020-08-21 14:24:32 +08:00
|
|
|
|
|
|
|
|
|
|
2021-04-08 23:35:08 +08:00
|
|
|
|
async def handle_event(bot: "Bot", event: "Event") -> Optional[Exception]:
|
2020-11-16 15:06:37 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
处理一个事件。调用该函数以实现分发事件。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
* ``bot: Bot``: Bot 对象
|
|
|
|
|
* ``event: Event``: Event 对象
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-11-16 15:06:37 +08:00
|
|
|
|
:示例:
|
2020-11-16 19:57:49 +08:00
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
2020-11-16 15:06:37 +08:00
|
|
|
|
|
|
|
|
|
import asyncio
|
|
|
|
|
asyncio.create_task(handle_event(bot, event))
|
|
|
|
|
"""
|
2020-10-29 17:06:07 +08:00
|
|
|
|
show_log = True
|
2020-12-09 17:51:24 +08:00
|
|
|
|
log_msg = f"<m>{bot.type.upper()} {bot.self_id}</m> | "
|
|
|
|
|
try:
|
2020-12-19 14:16:47 +08:00
|
|
|
|
log_msg += event.get_log_string()
|
2020-12-09 17:51:24 +08:00
|
|
|
|
except NoLogException:
|
2020-10-29 17:06:07 +08:00
|
|
|
|
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:
|
2021-03-27 14:42:43 +08:00
|
|
|
|
if show_log:
|
|
|
|
|
logger.debug("Running PreProcessors...")
|
2020-07-25 12:28:30 +08:00
|
|
|
|
await asyncio.gather(*coros)
|
2021-04-08 23:35:08 +08:00
|
|
|
|
except IgnoredException as e:
|
2020-12-09 17:51:24 +08:00
|
|
|
|
logger.opt(colors=True).info(
|
2021-04-09 12:26:27 +08:00
|
|
|
|
f"Event {event.get_event_name()} is <b>ignored</b>")
|
2021-04-08 23:35:08 +08:00
|
|
|
|
return e
|
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. "
|
2021-04-09 12:26:27 +08:00
|
|
|
|
"Event ignored!</bg #f8bbd0></r>")
|
2021-04-08 23:35:08 +08:00
|
|
|
|
return e
|
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
|
|
|
|
|
|
2020-11-16 11:25:42 +08:00
|
|
|
|
if show_log:
|
|
|
|
|
logger.debug(f"Checking for matchers in priority {priority}...")
|
|
|
|
|
|
2020-08-21 14:24:32 +08:00
|
|
|
|
pending_tasks = [
|
2021-02-01 11:42:05 +08:00
|
|
|
|
_check_matcher(priority, matcher, bot, event, state.copy())
|
|
|
|
|
for matcher in matchers[priority]
|
2020-08-21 14:24:32 +08:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
results = await asyncio.gather(*pending_tasks, return_exceptions=True)
|
|
|
|
|
|
2020-11-16 11:25:42 +08:00
|
|
|
|
for result in results:
|
2021-04-08 23:35:08 +08:00
|
|
|
|
if not isinstance(result, Exception):
|
|
|
|
|
continue
|
2020-11-18 14:43:12 +08:00
|
|
|
|
if isinstance(result, StopPropagation):
|
2021-04-08 23:35:08 +08:00
|
|
|
|
break_flag = True
|
|
|
|
|
logger.debug("Stop event propagation")
|
|
|
|
|
else:
|
2021-03-27 14:42:43 +08:00
|
|
|
|
logger.opt(colors=True, exception=result).error(
|
|
|
|
|
"<r><bg #f8bbd0>Error when checking Matcher.</bg #f8bbd0></r>"
|
|
|
|
|
)
|
2021-04-08 23:35:08 +08:00
|
|
|
|
return result
|
2020-11-07 17:35:44 +08:00
|
|
|
|
|
|
|
|
|
coros = list(map(lambda x: x(bot, event, state), _event_postprocessors))
|
|
|
|
|
if coros:
|
|
|
|
|
try:
|
2021-03-27 14:42:43 +08:00
|
|
|
|
if show_log:
|
|
|
|
|
logger.debug("Running PostProcessors...")
|
2020-11-07 17:35:44 +08:00
|
|
|
|
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>"
|
|
|
|
|
)
|
2021-04-08 23:35:08 +08:00
|
|
|
|
return e
|