2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
插件
|
|
|
|
|
====
|
|
|
|
|
|
|
|
|
|
为 NoneBot 插件开发提供便携的定义函数。
|
|
|
|
|
"""
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
import re
|
2020-08-24 17:59:36 +08:00
|
|
|
|
import sys
|
2020-08-15 17:22:10 +08:00
|
|
|
|
import pkgutil
|
2020-06-30 10:13:58 +08:00
|
|
|
|
import importlib
|
2020-08-29 22:32:40 +08:00
|
|
|
|
from dataclasses import dataclass
|
2020-08-24 17:59:36 +08:00
|
|
|
|
from importlib._bootstrap import _load
|
2020-11-21 20:40:09 +08:00
|
|
|
|
from contextvars import Context, ContextVar, copy_context
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
2020-07-05 20:39:34 +08:00
|
|
|
|
from nonebot.log import logger
|
2020-10-22 22:08:19 +08:00
|
|
|
|
from nonebot.matcher import Matcher
|
2020-08-20 17:15:05 +08:00
|
|
|
|
from nonebot.permission import Permission
|
2020-08-29 21:59:36 +08:00
|
|
|
|
from nonebot.typing import Handler, RuleChecker
|
2020-10-30 16:26:04 +08:00
|
|
|
|
from nonebot.rule import Rule, startswith, endswith, keyword, command, regex
|
2020-10-18 15:04:45 +08:00
|
|
|
|
from nonebot.typing import Any, Set, List, Dict, Type, Tuple, Union, Optional, ModuleType
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
|
|
|
|
plugins: Dict[str, "Plugin"] = {}
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:类型: ``Dict[str, Plugin]``
|
|
|
|
|
:说明: 已加载的插件
|
|
|
|
|
"""
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
2020-11-21 20:40:09 +08:00
|
|
|
|
_tmp_matchers: ContextVar[Set[Type[Matcher]]] = ContextVar("_tmp_matchers")
|
|
|
|
|
_export: ContextVar["Export"] = ContextVar("_export")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Export(dict):
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
插件导出内容以使得其他插件可以获得。
|
|
|
|
|
:示例:
|
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
|
|
nonebot.export().default = "bar"
|
|
|
|
|
|
|
|
|
|
@nonebot.export()
|
|
|
|
|
def some_function():
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
@nonebot.export().sub
|
|
|
|
|
def something_else():
|
|
|
|
|
pass
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def __call__(self, func, **kwargs):
|
|
|
|
|
self[func.__name__] = func
|
|
|
|
|
self.update(kwargs)
|
|
|
|
|
return func
|
|
|
|
|
|
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
|
super().__setitem__(key,
|
|
|
|
|
Export(value) if isinstance(value, dict) else value)
|
|
|
|
|
|
|
|
|
|
def __setattr__(self, name, value):
|
|
|
|
|
self[name] = Export(value) if isinstance(value, dict) else value
|
|
|
|
|
|
|
|
|
|
def __getattr__(self, name):
|
|
|
|
|
if name not in self:
|
|
|
|
|
self[name] = Export()
|
|
|
|
|
return self[name]
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-29 22:32:40 +08:00
|
|
|
|
@dataclass(eq=False)
|
2020-06-30 10:13:58 +08:00
|
|
|
|
class Plugin(object):
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""存储插件信息"""
|
2020-08-29 22:32:40 +08:00
|
|
|
|
name: str
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
- **类型**: ``str``
|
|
|
|
|
- **说明**: 插件名称,使用 文件/文件夹 名称作为插件名
|
|
|
|
|
"""
|
2020-08-29 22:32:40 +08:00
|
|
|
|
module: ModuleType
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
- **类型**: ``ModuleType``
|
|
|
|
|
- **说明**: 插件模块对象
|
|
|
|
|
"""
|
2020-08-29 22:32:40 +08:00
|
|
|
|
matcher: Set[Type[Matcher]]
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
- **类型**: ``Set[Type[Matcher]]``
|
|
|
|
|
- **说明**: 插件内定义的 ``Matcher``
|
|
|
|
|
"""
|
2020-11-21 20:40:09 +08:00
|
|
|
|
export: Export
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
|
|
|
|
|
2020-10-16 15:12:15 +08:00
|
|
|
|
def on(type: str = "",
|
|
|
|
|
rule: Optional[Union[Rule, RuleChecker]] = None,
|
2020-09-27 18:05:13 +08:00
|
|
|
|
permission: Optional[Permission] = None,
|
2020-08-20 17:15:05 +08:00
|
|
|
|
*,
|
2020-08-29 21:59:36 +08:00
|
|
|
|
handlers: Optional[List[Handler]] = None,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
temp: bool = False,
|
2020-08-20 17:15:05 +08:00
|
|
|
|
priority: int = 1,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block: bool = False,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
state: Optional[dict] = None) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个基础事件响应器,可自定义类型。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``type: str``: 事件响应器类型
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``permission: Optional[Permission]``: 事件响应权限
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-10-16 15:12:15 +08:00
|
|
|
|
matcher = Matcher.new(type,
|
2020-08-20 17:15:05 +08:00
|
|
|
|
Rule() & rule,
|
2020-09-27 18:05:13 +08:00
|
|
|
|
permission or Permission(),
|
2020-08-20 17:15:05 +08:00
|
|
|
|
temp=temp,
|
|
|
|
|
priority=priority,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block=block,
|
2020-08-20 17:15:05 +08:00
|
|
|
|
handlers=handlers,
|
|
|
|
|
default_state=state)
|
2020-11-21 20:40:09 +08:00
|
|
|
|
_tmp_matchers.get().add(matcher)
|
2020-08-20 17:15:05 +08:00
|
|
|
|
return matcher
|
|
|
|
|
|
|
|
|
|
|
2020-09-27 17:54:07 +08:00
|
|
|
|
def on_metaevent(rule: Optional[Union[Rule, RuleChecker]] = None,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
*,
|
2020-08-29 21:59:36 +08:00
|
|
|
|
handlers: Optional[List[Handler]] = None,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
temp: bool = False,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
priority: int = 1,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block: bool = False,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
state: Optional[dict] = None) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个元事件响应器。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-08-20 17:15:05 +08:00
|
|
|
|
matcher = Matcher.new("meta_event",
|
|
|
|
|
Rule() & rule,
|
|
|
|
|
Permission(),
|
2020-07-25 12:28:30 +08:00
|
|
|
|
temp=temp,
|
|
|
|
|
priority=priority,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block=block,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
handlers=handlers,
|
|
|
|
|
default_state=state)
|
2020-11-21 20:40:09 +08:00
|
|
|
|
_tmp_matchers.get().add(matcher)
|
2020-07-25 12:28:30 +08:00
|
|
|
|
return matcher
|
|
|
|
|
|
|
|
|
|
|
2020-09-27 17:54:07 +08:00
|
|
|
|
def on_message(rule: Optional[Union[Rule, RuleChecker]] = None,
|
2020-09-27 18:05:13 +08:00
|
|
|
|
permission: Optional[Permission] = None,
|
2020-06-30 10:13:58 +08:00
|
|
|
|
*,
|
2020-08-29 21:59:36 +08:00
|
|
|
|
handlers: Optional[List[Handler]] = None,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
temp: bool = False,
|
2020-06-30 10:13:58 +08:00
|
|
|
|
priority: int = 1,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block: bool = True,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
state: Optional[dict] = None) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个消息事件响应器。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``permission: Optional[Permission]``: 事件响应权限
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-08-20 17:15:05 +08:00
|
|
|
|
matcher = Matcher.new("message",
|
|
|
|
|
Rule() & rule,
|
2020-09-27 18:05:13 +08:00
|
|
|
|
permission or Permission(),
|
2020-07-25 12:28:30 +08:00
|
|
|
|
temp=temp,
|
|
|
|
|
priority=priority,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block=block,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
handlers=handlers,
|
|
|
|
|
default_state=state)
|
2020-11-21 20:40:09 +08:00
|
|
|
|
_tmp_matchers.get().add(matcher)
|
2020-07-25 12:28:30 +08:00
|
|
|
|
return matcher
|
|
|
|
|
|
|
|
|
|
|
2020-09-27 17:54:07 +08:00
|
|
|
|
def on_notice(rule: Optional[Union[Rule, RuleChecker]] = None,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
*,
|
2020-08-29 21:59:36 +08:00
|
|
|
|
handlers: Optional[List[Handler]] = None,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
temp: bool = False,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
priority: int = 1,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block: bool = False,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
state: Optional[dict] = None) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个通知事件响应器。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-08-20 17:15:05 +08:00
|
|
|
|
matcher = Matcher.new("notice",
|
|
|
|
|
Rule() & rule,
|
|
|
|
|
Permission(),
|
2020-07-25 12:28:30 +08:00
|
|
|
|
temp=temp,
|
|
|
|
|
priority=priority,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block=block,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
handlers=handlers,
|
|
|
|
|
default_state=state)
|
2020-11-21 20:40:09 +08:00
|
|
|
|
_tmp_matchers.get().add(matcher)
|
2020-07-25 12:28:30 +08:00
|
|
|
|
return matcher
|
|
|
|
|
|
|
|
|
|
|
2020-09-27 17:54:07 +08:00
|
|
|
|
def on_request(rule: Optional[Union[Rule, RuleChecker]] = None,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
*,
|
2020-08-29 21:59:36 +08:00
|
|
|
|
handlers: Optional[List[Handler]] = None,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
temp: bool = False,
|
2020-07-25 12:28:30 +08:00
|
|
|
|
priority: int = 1,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block: bool = False,
|
2020-08-25 15:23:10 +08:00
|
|
|
|
state: Optional[dict] = None) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个请求事件响应器。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-08-20 17:15:05 +08:00
|
|
|
|
matcher = Matcher.new("request",
|
|
|
|
|
Rule() & rule,
|
|
|
|
|
Permission(),
|
2020-06-30 10:13:58 +08:00
|
|
|
|
temp=temp,
|
|
|
|
|
priority=priority,
|
2020-08-21 14:24:32 +08:00
|
|
|
|
block=block,
|
2020-06-30 10:13:58 +08:00
|
|
|
|
handlers=handlers,
|
|
|
|
|
default_state=state)
|
2020-11-21 20:40:09 +08:00
|
|
|
|
_tmp_matchers.get().add(matcher)
|
2020-06-30 10:13:58 +08:00
|
|
|
|
return matcher
|
|
|
|
|
|
|
|
|
|
|
2020-08-17 16:09:41 +08:00
|
|
|
|
def on_startswith(msg: str,
|
2020-09-27 17:54:07 +08:00
|
|
|
|
rule: Optional[Optional[Union[Rule, RuleChecker]]] = None,
|
2020-08-17 16:09:41 +08:00
|
|
|
|
**kwargs) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个消息事件响应器,并且当消息的**文本部分**以指定内容开头时响应。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``msg: str``: 指定消息开头内容
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``permission: Optional[Permission]``: 事件响应权限
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-10-30 16:26:04 +08:00
|
|
|
|
return on_message(startswith(msg) & rule, **kwargs)
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def on_endswith(msg: str,
|
2020-09-27 17:54:07 +08:00
|
|
|
|
rule: Optional[Optional[Union[Rule, RuleChecker]]] = None,
|
2020-08-17 16:09:41 +08:00
|
|
|
|
**kwargs) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个消息事件响应器,并且当消息的**文本部分**以指定内容结尾时响应。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``msg: str``: 指定消息结尾内容
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``permission: Optional[Permission]``: 事件响应权限
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-10-30 16:26:04 +08:00
|
|
|
|
return on_message(endswith(msg) & rule, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def on_keyword(keywords: Set[str],
|
|
|
|
|
rule: Optional[Union[Rule, RuleChecker]] = None,
|
|
|
|
|
**kwargs) -> Type[Matcher]:
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个消息事件响应器,并且当消息纯文本部分包含关键词时响应。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``keywords: Set[str]``: 关键词列表
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``permission: Optional[Permission]``: 事件响应权限
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
|
|
|
|
return on_message(keyword(*keywords) & rule, **kwargs)
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-23 20:01:58 +08:00
|
|
|
|
def on_command(cmd: Union[str, Tuple[str, ...]],
|
2020-08-17 16:09:41 +08:00
|
|
|
|
rule: Optional[Union[Rule, RuleChecker]] = None,
|
2020-09-28 12:45:55 +08:00
|
|
|
|
aliases: Optional[Set[Union[str, Tuple[str, ...]]]] = None,
|
2020-10-22 22:08:19 +08:00
|
|
|
|
**kwargs) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个消息事件响应器,并且当消息以指定命令开头时响应。
|
|
|
|
|
|
|
|
|
|
命令匹配规则参考: `命令形式匹配 <rule.html#command-command>`_
|
|
|
|
|
:参数:
|
|
|
|
|
* ``cmd: Union[str, Tuple[str, ...]]``: 指定命令内容
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``aliases: Optional[Set[Union[str, Tuple[str, ...]]]]``: 命令别名
|
|
|
|
|
* ``permission: Optional[Permission]``: 事件响应权限
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-08-29 21:59:36 +08:00
|
|
|
|
|
|
|
|
|
async def _strip_cmd(bot, event, state: dict):
|
|
|
|
|
message = event.message
|
|
|
|
|
event.message = message.__class__(
|
|
|
|
|
str(message)[len(state["_prefix"]["raw_command"]):].strip())
|
|
|
|
|
|
|
|
|
|
handlers = kwargs.pop("handlers", [])
|
|
|
|
|
handlers.insert(0, _strip_cmd)
|
|
|
|
|
|
2020-10-22 22:08:19 +08:00
|
|
|
|
commands = set([cmd]) | (aliases or set())
|
2020-10-30 16:26:04 +08:00
|
|
|
|
return on_message(command(*commands) & rule, handlers=handlers, **kwargs)
|
2020-08-17 16:09:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def on_regex(pattern: str,
|
|
|
|
|
flags: Union[int, re.RegexFlag] = 0,
|
|
|
|
|
rule: Optional[Rule] = None,
|
|
|
|
|
**kwargs) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个消息事件响应器,并且当消息匹配正则表达式时响应。
|
|
|
|
|
|
|
|
|
|
命令匹配规则参考: `正则匹配 <rule.html#regex-regex-flags-0>`_
|
|
|
|
|
:参数:
|
|
|
|
|
* ``pattern: str``: 正则表达式
|
|
|
|
|
* ``flags: Union[int, re.RegexFlag]``: 正则匹配标志
|
|
|
|
|
* ``rule: Optional[Union[Rule, RuleChecker]]``: 事件响应规则
|
|
|
|
|
* ``permission: Optional[Permission]``: 事件响应权限
|
|
|
|
|
* ``handlers: Optional[List[Handler]]``: 事件处理函数列表
|
|
|
|
|
* ``temp: bool``: 是否为临时事件响应器(仅执行一次)
|
|
|
|
|
* ``priority: int``: 事件响应器优先级
|
|
|
|
|
* ``block: bool``: 是否阻止事件向更低优先级传递
|
|
|
|
|
* ``state: Optional[dict]``: 默认的 state
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
2020-10-30 16:26:04 +08:00
|
|
|
|
return on_message(regex(pattern, flags) & rule, **kwargs)
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
|
|
|
|
|
2020-10-18 15:04:45 +08:00
|
|
|
|
class CommandGroup:
|
|
|
|
|
"""命令组,用于声明一组有相同名称前缀的命令。"""
|
|
|
|
|
|
|
|
|
|
def __init__(self, cmd: Union[str, Tuple[str, ...]], **kwargs):
|
|
|
|
|
"""
|
|
|
|
|
:参数:
|
|
|
|
|
* ``cmd: Union[str, Tuple[str, ...]]``: 命令前缀
|
|
|
|
|
* ``**kwargs``: 其他传递给 ``on_command`` 的参数默认值,参考 `on_command <#on-command-cmd-rule-none-aliases-none-kwargs>`_
|
|
|
|
|
"""
|
|
|
|
|
self.basecmd: Tuple[str, ...] = (cmd,) if isinstance(cmd, str) else cmd
|
|
|
|
|
"""
|
|
|
|
|
- **类型**: ``Tuple[str, ...]``
|
|
|
|
|
- **说明**: 命令前缀
|
|
|
|
|
"""
|
|
|
|
|
if "aliases" in kwargs:
|
|
|
|
|
del kwargs["aliases"]
|
|
|
|
|
self.base_kwargs: Dict[str, Any] = kwargs
|
|
|
|
|
"""
|
|
|
|
|
- **类型**: ``Dict[str, Any]``
|
|
|
|
|
- **说明**: 其他传递给 ``on_command`` 的参数默认值
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def command(self, cmd: Union[str, Tuple[str, ...]],
|
2020-10-22 22:08:19 +08:00
|
|
|
|
**kwargs) -> Type[Matcher]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
注册一个新的命令。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``cmd: Union[str, Tuple[str, ...]]``: 命令前缀
|
|
|
|
|
* ``**kwargs``: 其他传递给 ``on_command`` 的参数,将会覆盖命令组默认值
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Type[Matcher]``
|
|
|
|
|
"""
|
|
|
|
|
sub_cmd = (cmd,) if isinstance(cmd, str) else cmd
|
|
|
|
|
cmd = self.basecmd + sub_cmd
|
|
|
|
|
|
|
|
|
|
final_kwargs = self.base_kwargs.copy()
|
|
|
|
|
final_kwargs.update(kwargs)
|
|
|
|
|
return on_command(cmd, **final_kwargs)
|
|
|
|
|
|
|
|
|
|
|
2020-06-30 10:13:58 +08:00
|
|
|
|
def load_plugin(module_path: str) -> Optional[Plugin]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
使用 ``importlib`` 加载单个插件,可以是本地插件或是通过 ``pip`` 安装的插件。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``module_path: str``: 插件名称 ``path.to.your.plugin``
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Optional[Plugin]``
|
|
|
|
|
"""
|
2020-11-21 20:40:09 +08:00
|
|
|
|
|
|
|
|
|
def _load_plugin(module_path: str) -> Optional[Plugin]:
|
|
|
|
|
try:
|
|
|
|
|
_tmp_matchers.set(set())
|
|
|
|
|
_export.set(Export())
|
|
|
|
|
if module_path in plugins:
|
|
|
|
|
return plugins[module_path]
|
|
|
|
|
elif module_path in sys.modules:
|
|
|
|
|
logger.warning(
|
|
|
|
|
f"Module {module_path} has been loaded by other plugins! Ignored"
|
|
|
|
|
)
|
|
|
|
|
return
|
|
|
|
|
module = importlib.import_module(module_path)
|
|
|
|
|
for m in _tmp_matchers.get():
|
|
|
|
|
m.module = module_path
|
|
|
|
|
plugin = Plugin(module_path, module, _tmp_matchers.get(),
|
|
|
|
|
_export.get())
|
|
|
|
|
plugins[module_path] = plugin
|
|
|
|
|
logger.opt(
|
|
|
|
|
colors=True).info(f'Succeeded to import "<y>{module_path}</y>"')
|
|
|
|
|
return plugin
|
|
|
|
|
except Exception as e:
|
|
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
|
f'<r><bg #f8bbd0>Failed to import "{module_path}"</bg #f8bbd0></r>'
|
2020-08-29 21:59:36 +08:00
|
|
|
|
)
|
2020-11-21 20:40:09 +08:00
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
context: Context = copy_context()
|
|
|
|
|
return context.run(_load_plugin, module_path)
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
|
|
|
|
|
2020-08-15 17:22:10 +08:00
|
|
|
|
def load_plugins(*plugin_dir: str) -> Set[Plugin]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
导入目录下多个插件,以 ``_`` 开头的插件不会被导入!
|
|
|
|
|
:参数:
|
|
|
|
|
- ``*plugin_dir: str``: 插件路径
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Set[Plugin]``
|
|
|
|
|
"""
|
2020-11-21 20:40:09 +08:00
|
|
|
|
|
|
|
|
|
def _load_plugin(module_info) -> Optional[Plugin]:
|
|
|
|
|
_tmp_matchers.set(set())
|
|
|
|
|
_export.set(Export())
|
2020-08-15 17:22:10 +08:00
|
|
|
|
name = module_info.name
|
|
|
|
|
if name.startswith("_"):
|
2020-11-21 20:40:09 +08:00
|
|
|
|
return
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
2020-10-18 15:04:45 +08:00
|
|
|
|
spec = module_info.module_finder.find_spec(name, None)
|
2020-08-29 21:59:36 +08:00
|
|
|
|
if spec.name in plugins:
|
2020-11-21 20:40:09 +08:00
|
|
|
|
return
|
2020-08-29 21:59:36 +08:00
|
|
|
|
elif spec.name in sys.modules:
|
|
|
|
|
logger.warning(
|
|
|
|
|
f"Module {spec.name} has been loaded by other plugin! Ignored")
|
2020-11-21 20:40:09 +08:00
|
|
|
|
return
|
2020-08-24 17:59:36 +08:00
|
|
|
|
|
2020-08-15 17:22:10 +08:00
|
|
|
|
try:
|
2020-08-24 17:59:36 +08:00
|
|
|
|
module = _load(spec)
|
2020-08-15 17:22:10 +08:00
|
|
|
|
|
2020-11-21 20:40:09 +08:00
|
|
|
|
for m in _tmp_matchers.get():
|
2020-08-27 16:43:58 +08:00
|
|
|
|
m.module = name
|
2020-11-21 20:40:09 +08:00
|
|
|
|
plugin = Plugin(name, module, _tmp_matchers.get(), _export.get())
|
2020-08-15 17:22:10 +08:00
|
|
|
|
plugins[name] = plugin
|
2020-08-27 13:27:42 +08:00
|
|
|
|
logger.opt(colors=True).info(f'Succeeded to import "<y>{name}</y>"')
|
2020-11-21 20:40:09 +08:00
|
|
|
|
return plugin
|
2020-08-15 17:22:10 +08:00
|
|
|
|
except Exception as e:
|
2020-08-27 13:27:42 +08:00
|
|
|
|
logger.opt(colors=True, exception=e).error(
|
|
|
|
|
f'<r><bg #f8bbd0>Failed to import "{name}"</bg #f8bbd0></r>')
|
2020-11-21 20:40:09 +08:00
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
loaded_plugins = set()
|
|
|
|
|
for module_info in pkgutil.iter_modules(plugin_dir):
|
|
|
|
|
context: Context = copy_context()
|
|
|
|
|
result = context.run(_load_plugin, module_info)
|
|
|
|
|
if result:
|
|
|
|
|
loaded_plugins.add(result)
|
2020-08-15 17:22:10 +08:00
|
|
|
|
return loaded_plugins
|
2020-06-30 10:13:58 +08:00
|
|
|
|
|
|
|
|
|
|
2020-10-18 15:04:45 +08:00
|
|
|
|
def load_builtin_plugins() -> Optional[Plugin]:
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
导入 NoneBot 内置插件
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Plugin``
|
|
|
|
|
"""
|
2020-08-29 21:59:36 +08:00
|
|
|
|
return load_plugin("nonebot.plugins.base")
|
|
|
|
|
|
|
|
|
|
|
2020-11-21 18:33:35 +08:00
|
|
|
|
def get_plugin(name: str) -> Optional[Plugin]:
|
|
|
|
|
"""
|
|
|
|
|
:说明:
|
|
|
|
|
获取当前导入的某个插件。
|
|
|
|
|
:参数:
|
|
|
|
|
* ``name: str``: 插件名,与 ``load_plugin`` 参数一致。如果为 ``load_plugins`` 导入的插件,则为文件(夹)名。
|
|
|
|
|
:返回:
|
|
|
|
|
- ``Optional[Plugin]``
|
|
|
|
|
"""
|
|
|
|
|
return plugins.get(name)
|
|
|
|
|
|
|
|
|
|
|
2020-06-30 10:13:58 +08:00
|
|
|
|
def get_loaded_plugins() -> Set[Plugin]:
|
2020-10-18 15:04:45 +08:00
|
|
|
|
"""
|
|
|
|
|
:说明:
|
2020-11-21 18:33:35 +08:00
|
|
|
|
获取当前已导入的所有插件。
|
2020-10-18 15:04:45 +08:00
|
|
|
|
:返回:
|
|
|
|
|
- ``Set[Plugin]``
|
|
|
|
|
"""
|
2020-06-30 10:13:58 +08:00
|
|
|
|
return set(plugins.values())
|
2020-11-21 20:40:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def export() -> Export:
|
|
|
|
|
return _export.get()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def require(name: str) -> Optional[Export]:
|
|
|
|
|
plugin = get_plugin(name)
|
|
|
|
|
return plugin.export if plugin else None
|