2020-09-13 13:01:23 +08:00
|
|
|
|
"""
|
|
|
|
|
规则
|
|
|
|
|
====
|
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
每个事件响应器 ``Matcher`` 拥有一个匹配规则 ``Rule`` ,其中是 **异步** ``RuleChecker`` 的集合,只有当所有 ``RuleChecker`` 检查结果为 ``True`` 时继续运行。
|
2020-09-13 13:01:23 +08:00
|
|
|
|
|
|
|
|
|
\:\:\:tip 提示
|
2020-10-06 02:08:48 +08:00
|
|
|
|
``RuleChecker`` 既可以是 async function 也可以是 sync function,但在最终会被 ``nonebot.utils.run_sync`` 转换为 async function
|
2020-09-13 13:01:23 +08:00
|
|
|
|
\:\:\:
|
|
|
|
|
"""
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
2020-05-02 20:03:36 +08:00
|
|
|
|
import re
|
2021-02-02 11:59:14 +08:00
|
|
|
|
import shlex
|
2020-08-14 17:41:24 +08:00
|
|
|
|
import asyncio
|
2020-08-17 16:09:41 +08:00
|
|
|
|
from itertools import product
|
2021-02-02 11:59:14 +08:00
|
|
|
|
from argparse import Namespace, ArgumentParser as ArgParser
|
|
|
|
|
from typing import Any, Dict, Union, Tuple, Optional, Callable, Sequence, NoReturn, Awaitable, TYPE_CHECKING
|
2020-05-05 16:11:05 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
from pygtrie import CharTrie
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
from nonebot import get_driver
|
|
|
|
|
from nonebot.log import logger
|
|
|
|
|
from nonebot.utils import run_sync
|
2021-02-02 11:59:14 +08:00
|
|
|
|
from nonebot.exception import ParserExit
|
2020-12-17 21:09:30 +08:00
|
|
|
|
from nonebot.typing import T_State, T_RuleChecker
|
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-08-14 17:41:24 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
class Rule:
|
2020-09-13 13:01:23 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
``Matcher`` 规则类,当事件传递时,在 ``Matcher`` 运行前进行检查。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
:示例:
|
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
|
|
Rule(async_function) & sync_function
|
|
|
|
|
# 等价于
|
|
|
|
|
from nonebot.utils import run_sync
|
|
|
|
|
Rule(async_function, run_sync(sync_function))
|
|
|
|
|
"""
|
2020-08-17 16:09:41 +08:00
|
|
|
|
__slots__ = ("checkers",)
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
def __init__(
|
2020-12-17 21:09:30 +08:00
|
|
|
|
self, *checkers: Callable[["Bot", "Event", T_State],
|
|
|
|
|
Awaitable[bool]]) -> None:
|
2020-09-13 13:01:23 +08:00
|
|
|
|
"""
|
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
* ``*checkers: Callable[[Bot, Event, T_State], Awaitable[bool]]``: **异步** RuleChecker
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
"""
|
|
|
|
|
self.checkers = set(checkers)
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
存储 ``RuleChecker``
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
:类型:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
* ``Set[Callable[[Bot, Event, T_State], Awaitable[bool]]]``
|
2020-09-13 13:01:23 +08:00
|
|
|
|
"""
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
async def __call__(self, bot: "Bot", event: "Event",
|
|
|
|
|
state: T_State) -> bool:
|
2020-09-13 13:01:23 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
检查是否符合所有规则
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
* ``bot: Bot``: Bot 对象
|
|
|
|
|
* ``event: Event``: Event 对象
|
2020-12-17 21:09:30 +08:00
|
|
|
|
* ``state: T_State``: 当前 State
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
:返回:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 13:01:23 +08:00
|
|
|
|
- ``bool``
|
|
|
|
|
"""
|
2020-08-17 16:09:41 +08:00
|
|
|
|
results = await asyncio.gather(
|
|
|
|
|
*map(lambda c: c(bot, event, state), self.checkers))
|
|
|
|
|
return all(results)
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
def __and__(self, other: Optional[Union["Rule", T_RuleChecker]]) -> "Rule":
|
2020-09-13 13:01:23 +08:00
|
|
|
|
checkers = self.checkers.copy()
|
2020-09-27 18:05:13 +08:00
|
|
|
|
if other is None:
|
|
|
|
|
return self
|
|
|
|
|
elif isinstance(other, Rule):
|
2020-09-13 13:01:23 +08:00
|
|
|
|
checkers |= other.checkers
|
2020-08-17 16:09:41 +08:00
|
|
|
|
elif asyncio.iscoroutinefunction(other):
|
2020-09-13 13:01:23 +08:00
|
|
|
|
checkers.add(other) # type: ignore
|
2020-08-14 17:41:24 +08:00
|
|
|
|
else:
|
2020-09-13 13:01:23 +08:00
|
|
|
|
checkers.add(run_sync(other))
|
2020-08-17 16:09:41 +08:00
|
|
|
|
return Rule(*checkers)
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
def __or__(self, other) -> NoReturn:
|
|
|
|
|
raise RuntimeError("Or operation between rules is not allowed.")
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
class TrieRule:
|
|
|
|
|
prefix: CharTrie = CharTrie()
|
|
|
|
|
suffix: CharTrie = CharTrie()
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
@classmethod
|
|
|
|
|
def add_prefix(cls, prefix: str, value: Any):
|
|
|
|
|
if prefix in cls.prefix:
|
|
|
|
|
logger.warning(f'Duplicated prefix rule "{prefix}"')
|
|
|
|
|
return
|
|
|
|
|
cls.prefix[prefix] = value
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
@classmethod
|
|
|
|
|
def add_suffix(cls, suffix: str, value: Any):
|
|
|
|
|
if suffix[::-1] in cls.suffix:
|
|
|
|
|
logger.warning(f'Duplicated suffix rule "{suffix}"')
|
|
|
|
|
return
|
|
|
|
|
cls.suffix[suffix[::-1]] = value
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
@classmethod
|
2020-12-06 02:30:19 +08:00
|
|
|
|
def get_value(cls, bot: "Bot", event: "Event",
|
2020-12-17 21:09:30 +08:00
|
|
|
|
state: T_State) -> Tuple[Dict[str, Any], Dict[str, Any]]:
|
2020-12-09 19:57:49 +08:00
|
|
|
|
if event.get_type() != "message":
|
2020-09-08 14:36:21 +08:00
|
|
|
|
state["_prefix"] = {"raw_command": None, "command": None}
|
|
|
|
|
state["_suffix"] = {"raw_command": None, "command": None}
|
|
|
|
|
return {
|
|
|
|
|
"raw_command": None,
|
|
|
|
|
"command": None
|
|
|
|
|
}, {
|
|
|
|
|
"raw_command": None,
|
|
|
|
|
"command": None
|
|
|
|
|
}
|
2020-08-24 17:59:36 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
prefix = None
|
|
|
|
|
suffix = None
|
2020-12-09 19:57:49 +08:00
|
|
|
|
message = event.get_message()
|
|
|
|
|
message_seg = message[0]
|
2020-12-10 02:13:25 +08:00
|
|
|
|
if message_seg.is_text():
|
2020-12-09 19:57:49 +08:00
|
|
|
|
prefix = cls.prefix.longest_prefix(str(message_seg).lstrip())
|
|
|
|
|
message_seg_r = message[-1]
|
2020-12-10 02:13:25 +08:00
|
|
|
|
if message_seg_r.is_text():
|
2020-12-09 19:57:49 +08:00
|
|
|
|
suffix = cls.suffix.longest_prefix(
|
|
|
|
|
str(message_seg_r).rstrip()[::-1])
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-08-29 21:59:36 +08:00
|
|
|
|
state["_prefix"] = {
|
|
|
|
|
"raw_command": prefix.key,
|
|
|
|
|
"command": prefix.value
|
2020-09-08 14:36:21 +08:00
|
|
|
|
} if prefix else {
|
|
|
|
|
"raw_command": None,
|
|
|
|
|
"command": None
|
|
|
|
|
}
|
2020-08-29 21:59:36 +08:00
|
|
|
|
state["_suffix"] = {
|
|
|
|
|
"raw_command": suffix.key,
|
|
|
|
|
"command": suffix.value
|
2020-09-08 14:36:21 +08:00
|
|
|
|
} if suffix else {
|
|
|
|
|
"raw_command": None,
|
|
|
|
|
"command": None
|
|
|
|
|
}
|
2020-08-14 17:41:24 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
return ({
|
2020-08-29 21:59:36 +08:00
|
|
|
|
"raw_command": prefix.key,
|
|
|
|
|
"command": prefix.value
|
2020-09-08 14:36:21 +08:00
|
|
|
|
} if prefix else {
|
|
|
|
|
"raw_command": None,
|
|
|
|
|
"command": None
|
|
|
|
|
}, {
|
2020-08-29 21:59:36 +08:00
|
|
|
|
"raw_command": suffix.key,
|
|
|
|
|
"command": suffix.value
|
2020-09-08 14:36:21 +08:00
|
|
|
|
} if suffix else {
|
|
|
|
|
"raw_command": None,
|
|
|
|
|
"command": None
|
|
|
|
|
})
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
def startswith(msg: str) -> Rule:
|
2020-09-13 22:36:40 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 22:36:40 +08:00
|
|
|
|
匹配消息开头
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 22:36:40 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 22:36:40 +08:00
|
|
|
|
* ``msg: str``: 消息开头字符串
|
|
|
|
|
"""
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
async def _startswith(bot: "Bot", event: "Event", state: T_State) -> bool:
|
2020-12-09 19:57:49 +08:00
|
|
|
|
if event.get_type() != "message":
|
|
|
|
|
return False
|
|
|
|
|
text = event.get_plaintext()
|
|
|
|
|
return text.startswith(msg)
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
return Rule(_startswith)
|
2020-07-25 12:28:30 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
def endswith(msg: str) -> Rule:
|
2020-09-13 22:36:40 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 22:36:40 +08:00
|
|
|
|
匹配消息结尾
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 22:36:40 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-09-13 22:36:40 +08:00
|
|
|
|
* ``msg: str``: 消息结尾字符串
|
|
|
|
|
"""
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
async def _endswith(bot: "Bot", event: "Event", state: T_State) -> bool:
|
2020-12-09 19:57:49 +08:00
|
|
|
|
if event.get_type() != "message":
|
|
|
|
|
return False
|
|
|
|
|
return event.get_plaintext().endswith(msg)
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
return Rule(_endswith)
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
|
|
|
|
|
2020-10-30 16:26:04 +08:00
|
|
|
|
def keyword(*keywords: str) -> Rule:
|
2020-10-06 02:08:48 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
匹配消息关键词
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-30 16:26:04 +08:00
|
|
|
|
* ``*keywords: str``: 关键词
|
2020-10-06 02:08:48 +08:00
|
|
|
|
"""
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
async def _keyword(bot: "Bot", event: "Event", state: T_State) -> bool:
|
2020-12-09 19:57:49 +08:00
|
|
|
|
if event.get_type() != "message":
|
|
|
|
|
return False
|
|
|
|
|
text = event.get_plaintext()
|
|
|
|
|
return bool(text and any(keyword in text for keyword in keywords))
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
return Rule(_keyword)
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
|
|
|
|
|
2020-10-22 22:08:19 +08:00
|
|
|
|
def command(*cmds: Union[str, Tuple[str, ...]]) -> Rule:
|
2020-10-06 02:08:48 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
命令形式匹配,根据配置里提供的 ``command_start``, ``command_sep`` 判断消息是否为命令。
|
2020-10-28 13:17:41 +08:00
|
|
|
|
|
|
|
|
|
可以通过 ``state["_prefix"]["command"]`` 获取匹配成功的命令(例:``("test",)``),通过 ``state["_prefix"]["raw_command"]`` 获取匹配成功的原始命令文本(例:``"/test"``)。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-22 22:08:19 +08:00
|
|
|
|
* ``*cmds: Union[str, Tuple[str, ...]]``: 命令内容
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
:示例:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
使用默认 ``command_start``, ``command_sep`` 配置
|
|
|
|
|
|
|
|
|
|
命令 ``("test",)`` 可以匹配:``/test`` 开头的消息
|
|
|
|
|
命令 ``("test", "sub")`` 可以匹配”``/test.sub`` 开头的消息
|
|
|
|
|
|
|
|
|
|
\:\:\:tip 提示
|
|
|
|
|
命令内容与后续消息间无需空格!
|
|
|
|
|
\:\:\:
|
|
|
|
|
"""
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
config = get_driver().config
|
|
|
|
|
command_start = config.command_start
|
|
|
|
|
command_sep = config.command_sep
|
2020-10-22 22:08:19 +08:00
|
|
|
|
commands = list(cmds)
|
|
|
|
|
for index, command in enumerate(commands):
|
|
|
|
|
if isinstance(command, str):
|
|
|
|
|
commands[index] = command = (command,)
|
|
|
|
|
|
|
|
|
|
if len(command) == 1:
|
|
|
|
|
for start in command_start:
|
|
|
|
|
TrieRule.add_prefix(f"{start}{command[0]}", command)
|
|
|
|
|
else:
|
|
|
|
|
for start, sep in product(command_start, command_sep):
|
|
|
|
|
TrieRule.add_prefix(f"{start}{sep.join(command)}", command)
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
async def _command(bot: "Bot", event: "Event", state: T_State) -> bool:
|
2020-10-22 22:08:19 +08:00
|
|
|
|
return state["_prefix"]["command"] in commands
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
return Rule(_command)
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
|
|
|
|
|
2021-02-02 11:59:14 +08:00
|
|
|
|
class ArgumentParser(ArgParser):
|
|
|
|
|
|
|
|
|
|
def _print_message(self, message, file=None):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
def exit(self, status=0, message=None):
|
|
|
|
|
raise ParserExit(status=status, message=message)
|
|
|
|
|
|
|
|
|
|
def parse_args(
|
|
|
|
|
self,
|
|
|
|
|
args: Optional[Sequence[str]] = None,
|
|
|
|
|
namespace: Optional[Namespace] = None
|
|
|
|
|
) -> Union[ParserExit, Namespace]:
|
|
|
|
|
try:
|
|
|
|
|
return super().parse_args(args=args,
|
|
|
|
|
namespace=namespace) # type: ignore
|
|
|
|
|
except ParserExit as e:
|
|
|
|
|
return e
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def shell_command(*cmds: Union[str, Tuple[str, ...]],
|
|
|
|
|
parser: Optional[ArgumentParser] = None) -> Rule:
|
2021-02-01 22:28:48 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
|
|
|
|
|
支持 ``shell_like`` 解析参数的命令形式匹配,根据配置里提供的 ``command_start``, ``command_sep`` 判断消息是否为命令。
|
|
|
|
|
|
|
|
|
|
可以通过 ``state["_prefix"]["command"]`` 获取匹配成功的命令(例:``("test",)``),通过 ``state["_prefix"]["raw_command"]`` 获取匹配成功的原始命令文本(例:``"/test"``)。
|
|
|
|
|
|
2021-02-02 11:59:14 +08:00
|
|
|
|
可以通过 ``state["argv"]`` 获取用户输入的原始参数列表
|
2021-02-01 22:28:48 +08:00
|
|
|
|
|
2021-02-02 11:59:14 +08:00
|
|
|
|
添加 ``parser`` 参数后, 可以自动处理消息并将结果保存在 ``state["args"]`` 中。
|
2021-02-01 22:28:48 +08:00
|
|
|
|
|
|
|
|
|
:参数:
|
|
|
|
|
|
|
|
|
|
* ``*cmds: Union[str, Tuple[str, ...]]``: 命令内容
|
2021-02-02 11:59:14 +08:00
|
|
|
|
* ``parser: Optional[ArgumentParser]``: ``nonebot.rule.ArgumentParser`` 对象
|
2021-02-01 22:28:48 +08:00
|
|
|
|
|
|
|
|
|
:示例:
|
|
|
|
|
|
2021-02-02 11:59:14 +08:00
|
|
|
|
使用默认 ``command_start``, ``command_sep`` 配置,更多示例参考 ``argparse`` 标准库文档。
|
2021-02-01 22:28:48 +08:00
|
|
|
|
|
2021-02-02 11:59:14 +08:00
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
|
|
from nonebot.rule import ArgumentParser
|
|
|
|
|
|
|
|
|
|
parser = ArgumentParser()
|
|
|
|
|
parser.add_argument("-a", type=bool)
|
|
|
|
|
|
|
|
|
|
rule = shell_command("ls", parser=parser)
|
2021-02-01 22:28:48 +08:00
|
|
|
|
|
|
|
|
|
\:\:\:tip 提示
|
|
|
|
|
命令内容与后续消息间无需空格!
|
|
|
|
|
\:\:\:
|
|
|
|
|
"""
|
2021-02-02 11:59:14 +08:00
|
|
|
|
if not isinstance(parser, ArgumentParser):
|
|
|
|
|
raise TypeError(
|
|
|
|
|
"`parser` must be an instance of nonebot.rule.ArgumentParser")
|
|
|
|
|
|
2021-02-01 22:28:48 +08:00
|
|
|
|
config = get_driver().config
|
|
|
|
|
command_start = config.command_start
|
|
|
|
|
command_sep = config.command_sep
|
|
|
|
|
commands = list(cmds)
|
|
|
|
|
for index, command in enumerate(commands):
|
|
|
|
|
if isinstance(command, str):
|
|
|
|
|
commands[index] = command = (command,)
|
|
|
|
|
|
|
|
|
|
if len(command) == 1:
|
|
|
|
|
for start in command_start:
|
|
|
|
|
TrieRule.add_prefix(f"{start}{command[0]}", command)
|
|
|
|
|
else:
|
|
|
|
|
for start, sep in product(command_start, command_sep):
|
|
|
|
|
TrieRule.add_prefix(f"{start}{sep.join(command)}", command)
|
|
|
|
|
|
2021-02-02 11:59:14 +08:00
|
|
|
|
async def _shell_command(bot: "Bot", event: "Event",
|
|
|
|
|
state: T_State) -> bool:
|
2021-02-01 22:28:48 +08:00
|
|
|
|
if state["_prefix"]["command"] in commands:
|
2021-02-02 11:59:14 +08:00
|
|
|
|
message = str(event.get_message())
|
|
|
|
|
strip_message = message[len(state["_prefix"]["raw_command"]
|
|
|
|
|
):].lstrip()
|
|
|
|
|
state["argv"] = shlex.split(strip_message)
|
|
|
|
|
if parser:
|
|
|
|
|
args = parser.parse_args(state["argv"])
|
|
|
|
|
state["args"] = args
|
2021-02-01 22:28:48 +08:00
|
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
|
|
|
|
|
2021-02-02 11:59:14 +08:00
|
|
|
|
return Rule(_shell_command)
|
2021-02-01 22:28:48 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
def regex(regex: str, flags: Union[int, re.RegexFlag] = 0) -> Rule:
|
2020-10-06 02:08:48 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-28 13:23:48 +08:00
|
|
|
|
根据正则表达式进行匹配。
|
2020-10-30 16:26:04 +08:00
|
|
|
|
|
2021-02-01 11:42:05 +08:00
|
|
|
|
可以通过 ``state["_matched"]`` ``state["_matched_groups"]`` ``state["_matched_dict"]``
|
|
|
|
|
获取正则表达式匹配成功的文本。
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-10-06 02:08:48 +08:00
|
|
|
|
* ``regex: str``: 正则表达式
|
|
|
|
|
* ``flags: Union[int, re.RegexFlag]``: 正则标志
|
2020-10-18 15:04:45 +08:00
|
|
|
|
|
|
|
|
|
\:\:\:tip 提示
|
|
|
|
|
正则表达式匹配使用 search 而非 match,如需从头匹配请使用 ``r"^xxx"`` 来确保匹配开头
|
|
|
|
|
\:\:\:
|
2020-10-06 02:08:48 +08:00
|
|
|
|
"""
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
pattern = re.compile(regex, flags)
|
2020-05-02 20:03:36 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
async def _regex(bot: "Bot", event: "Event", state: T_State) -> bool:
|
2020-12-09 19:57:49 +08:00
|
|
|
|
if event.get_type() != "message":
|
|
|
|
|
return False
|
|
|
|
|
matched = pattern.search(str(event.get_message()))
|
2020-10-28 13:23:48 +08:00
|
|
|
|
if matched:
|
2020-10-28 13:45:54 +08:00
|
|
|
|
state["_matched"] = matched.group()
|
2021-02-01 11:42:05 +08:00
|
|
|
|
state["_matched_groups"] = matched.groups()
|
|
|
|
|
state["_matched_dict"] = matched.groupdict()
|
2020-10-26 17:18:26 +08:00
|
|
|
|
return True
|
|
|
|
|
else:
|
|
|
|
|
return False
|
2020-10-30 16:26:04 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
return Rule(_regex)
|
2020-08-23 10:45:26 +08:00
|
|
|
|
|
|
|
|
|
|
2020-12-10 02:13:25 +08:00
|
|
|
|
def to_me() -> Rule:
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-12-31 17:58:09 +08:00
|
|
|
|
通过 ``event.is_tome()`` 判断事件是否与机器人有关
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-12-10 02:13:25 +08:00
|
|
|
|
:参数:
|
2020-11-30 11:08:00 +08:00
|
|
|
|
|
2020-12-10 02:13:25 +08:00
|
|
|
|
* 无
|
|
|
|
|
"""
|
2020-08-23 10:45:26 +08:00
|
|
|
|
|
2020-12-17 21:09:30 +08:00
|
|
|
|
async def _to_me(bot: "Bot", event: "Event", state: T_State) -> bool:
|
2020-12-10 02:13:25 +08:00
|
|
|
|
return event.is_tome()
|
2020-08-23 10:45:26 +08:00
|
|
|
|
|
2020-12-10 02:13:25 +08:00
|
|
|
|
return Rule(_to_me)
|