mirror of
https://github.com/LiteyukiStudio/nonebot-plugin-marshoai.git
synced 2025-02-01 02:51:25 +08:00
154 lines
4.5 KiB
Python
Executable File
154 lines
4.5 KiB
Python
Executable File
# -*- coding: utf-8 -*-
|
|
"""
|
|
Copyright (C) 2020-2024 LiteyukiStudio. All Rights Reserved
|
|
本模块为工具加载模块
|
|
"""
|
|
import os
|
|
import traceback
|
|
from importlib import import_module
|
|
from pathlib import Path
|
|
from typing import Optional
|
|
|
|
from nonebot import logger
|
|
|
|
from .models import Plugin, PluginMetadata
|
|
from .utils import path_to_module_name
|
|
|
|
_plugins: dict[str, Plugin] = {}
|
|
|
|
__all__ = [
|
|
"load_plugin",
|
|
"load_plugins",
|
|
"get_plugin",
|
|
"get_plugins",
|
|
"_plugins",
|
|
]
|
|
|
|
|
|
def get_plugin(name: str) -> Plugin | None:
|
|
"""获取插件对象
|
|
|
|
Args:
|
|
name: 插件名称
|
|
Returns:
|
|
Optional[Plugin]: 插件对象
|
|
"""
|
|
return _plugins.get(name)
|
|
|
|
|
|
def get_plugins() -> dict[str, Plugin]:
|
|
"""获取所有插件
|
|
|
|
Returns:
|
|
dict[str, Plugin]: 插件集合
|
|
"""
|
|
return _plugins
|
|
|
|
|
|
def load_plugin(
|
|
module_path: str | Path, allow_reload: bool = False
|
|
) -> Optional[Plugin]:
|
|
"""加载单个插件,可以是本地插件或是通过 `pip` 安装的插件。
|
|
该函数产生的副作用在于将插件加载到 `_plugins` 中。
|
|
|
|
Args:
|
|
module_path: 插件名称 `path.to.your.plugin`
|
|
或插件路径 `pathlib.Path(path/to/your/plugin)`
|
|
Returns:
|
|
Optional[Plugin]: 插件对象
|
|
"""
|
|
module_path = (
|
|
path_to_module_name(Path(module_path))
|
|
if isinstance(module_path, Path)
|
|
else module_path
|
|
)
|
|
try:
|
|
module = import_module(module_path) # 导入模块对象
|
|
plugin = Plugin(
|
|
name=module.__name__.split(".")[-1],
|
|
module=module,
|
|
module_name=module_path,
|
|
module_path=module.__file__,
|
|
)
|
|
if plugin.name in _plugins and not allow_reload:
|
|
raise ValueError(f"插件名称重复: {plugin.name}")
|
|
else:
|
|
_plugins[plugin.name] = plugin
|
|
|
|
plugin.metadata = getattr(module, "__marsho_meta__", None)
|
|
|
|
if plugin.metadata is None:
|
|
logger.opt(colors=True).warning(
|
|
f"成功加载小棉插件 <y>{plugin.name}</y>, 但是没有定义元数据"
|
|
)
|
|
else:
|
|
logger.opt(colors=True).success(
|
|
f'成功加载小棉插件 <c>"{plugin.metadata.name}"</c>'
|
|
)
|
|
|
|
return plugin
|
|
|
|
except Exception as e:
|
|
logger.opt(colors=True).success(f'加载小棉插件失败 "<r>{module_path}</r>"')
|
|
traceback.print_exc()
|
|
return None
|
|
|
|
|
|
def load_plugins(*plugin_dirs: str) -> set[Plugin]:
|
|
"""导入文件夹下多个插件
|
|
|
|
参数:
|
|
plugin_dir: 文件夹路径
|
|
ignore_warning: 是否忽略警告,通常是目录不存在或目录为空
|
|
返回:
|
|
set[Plugin]: 插件集合
|
|
"""
|
|
plugins = set()
|
|
for plugin_dir in plugin_dirs:
|
|
for f in os.listdir(plugin_dir):
|
|
path = Path(os.path.join(plugin_dir, f))
|
|
module_name = None
|
|
if os.path.isfile(path) and f.endswith(".py"):
|
|
"""单文件加载"""
|
|
module_name = f"{path_to_module_name(Path(plugin_dir))}.{f[:-3]}"
|
|
|
|
elif os.path.isdir(path) and os.path.exists(
|
|
os.path.join(path, "__init__.py")
|
|
):
|
|
"""包加载"""
|
|
module_name = path_to_module_name(path)
|
|
|
|
if module_name and (plugin := load_plugin(module_name)):
|
|
plugins.add(plugin)
|
|
return plugins
|
|
|
|
|
|
def reload_plugin(plugin: Plugin) -> Optional[Plugin]:
|
|
"""开发模式下的重新加载插件
|
|
该方法无法保证没有副作用,因为插件可能会有自己的初始化方法
|
|
如果出现异常请重启即可
|
|
Args:
|
|
plugin: 插件对象
|
|
Returns:
|
|
Optional[Plugin]: 插件对象
|
|
"""
|
|
try:
|
|
if plugin.module_path:
|
|
if new_plugin := load_plugin(plugin.module_name, True):
|
|
logger.opt(colors=True).debug(
|
|
f'重新加载插件 "<y>{new_plugin.name}</y>" 成功, 若出现异常或副作用请重启'
|
|
)
|
|
return new_plugin
|
|
else:
|
|
logger.opt(colors=True).error(
|
|
f'重新加载插件失败 "<r>{plugin.name}</r>"'
|
|
)
|
|
return None
|
|
else:
|
|
logger.opt(colors=True).error(f'插件不支持重载 "<r>{plugin.name}</r>"')
|
|
return None
|
|
except Exception as e:
|
|
logger.opt(colors=True).error(f'重新加载插件失败 "<r>{plugin.name}</r>"')
|
|
traceback.print_exc()
|
|
return None
|