mirror of
https://github.com/TriM-Organization/LiteyukiBot-TriM.git
synced 2026-06-14 16:42:30 +00:00
框架:我是汉化小能手
This commit is contained in:
@@ -271,9 +271,7 @@ def get_config_with_compat(
|
|||||||
|
|
||||||
def print_logo():
|
def print_logo():
|
||||||
"""@litedoc-hide"""
|
"""@litedoc-hide"""
|
||||||
print(
|
print("\033[34m" + r"""
|
||||||
"\033[34m"
|
|
||||||
+ r"""
|
|
||||||
▅▅▅▅▅▅▅▅▅▅▅▅▅▅██ ▅▅▅▅▅▅▅▅▅▅▅▅▅▅██ ██ ▅▅▅▅▅▅▅▅▅▅█™
|
▅▅▅▅▅▅▅▅▅▅▅▅▅▅██ ▅▅▅▅▅▅▅▅▅▅▅▅▅▅██ ██ ▅▅▅▅▅▅▅▅▅▅█™
|
||||||
▛ ██ ██ ▛ ██ ███ ██ ██
|
▛ ██ ██ ▛ ██ ███ ██ ██
|
||||||
██ ██ ███████████████ ██ ████████▅ ██
|
██ ██ ███████████████ ██ ████████▅ ██
|
||||||
@@ -285,10 +283,8 @@ def print_logo():
|
|||||||
███ ███ █████▛ ██ ██ ██ ██ ██
|
███ ███ █████▛ ██ ██ ██ ██ ██
|
||||||
███ ██ ███ █ ██ ██ ██ ██ ██
|
███ ██ ███ █ ██ ██ ██ ██ ██
|
||||||
███ █████ ██████ ███ ██████████████
|
███ █████ ██████ ███ ██████████████
|
||||||
商业标记 版权所有 © 2024 金羿Eilles
|
商业标记 版权所有 © 2026 金羿Eilles
|
||||||
机器软件 版权所有 © 2020-2024 神羽SnowyKami & 金羿Eilles\\
|
机器软件 版权所有 © 2020-2026 神羽SnowyKami & 金羿Eilles\\
|
||||||
会同 LiteyukiStudio & 睿乐组织
|
会同 LiteyukiStudio & 睿乐组织
|
||||||
保留所有权利
|
保留所有权利
|
||||||
"""
|
""" + "\033[0m")
|
||||||
+ "\033[0m"
|
|
||||||
)
|
|
||||||
|
|||||||
+59
-35
@@ -2,9 +2,19 @@
|
|||||||
"""
|
"""
|
||||||
本模块定义了一个通用的通道类,用于进程间通信
|
本模块定义了一个通用的通道类,用于进程间通信
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
from multiprocessing import Pipe
|
from multiprocessing import Pipe
|
||||||
from typing import Any, Callable, Coroutine, Generic, Optional, TypeAlias, TypeVar, get_args
|
from typing import (
|
||||||
|
Any,
|
||||||
|
Callable,
|
||||||
|
Coroutine,
|
||||||
|
Generic,
|
||||||
|
Optional,
|
||||||
|
TypeAlias,
|
||||||
|
TypeVar,
|
||||||
|
get_args,
|
||||||
|
)
|
||||||
|
|
||||||
from liteyuki.log import logger
|
from liteyuki.log import logger
|
||||||
from liteyuki.utils import IS_MAIN_PROCESS, is_coroutine_callable
|
from liteyuki.utils import IS_MAIN_PROCESS, is_coroutine_callable
|
||||||
@@ -12,7 +22,9 @@ from liteyuki.utils import IS_MAIN_PROCESS, is_coroutine_callable
|
|||||||
T = TypeVar("T")
|
T = TypeVar("T")
|
||||||
|
|
||||||
SYNC_ON_RECEIVE_FUNC: TypeAlias = Callable[[T], Any] # 同步接收函数
|
SYNC_ON_RECEIVE_FUNC: TypeAlias = Callable[[T], Any] # 同步接收函数
|
||||||
ASYNC_ON_RECEIVE_FUNC: TypeAlias = Callable[[T], Coroutine[Any, Any, Any]] # 异步接收函数
|
ASYNC_ON_RECEIVE_FUNC: TypeAlias = Callable[
|
||||||
|
[T], Coroutine[Any, Any, Any]
|
||||||
|
] # 异步接收函数
|
||||||
ON_RECEIVE_FUNC: TypeAlias = SYNC_ON_RECEIVE_FUNC | ASYNC_ON_RECEIVE_FUNC # 接收函数
|
ON_RECEIVE_FUNC: TypeAlias = SYNC_ON_RECEIVE_FUNC | ASYNC_ON_RECEIVE_FUNC # 接收函数
|
||||||
|
|
||||||
SYNC_FILTER_FUNC: TypeAlias = Callable[[T], bool] # 同步过滤函数
|
SYNC_FILTER_FUNC: TypeAlias = Callable[[T], bool] # 同步过滤函数
|
||||||
@@ -39,7 +51,9 @@ class Channel(Generic[T]):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
self.conn_send, self.conn_recv = Pipe()
|
self.conn_send, self.conn_recv = Pipe()
|
||||||
self._conn_send_inner, self._conn_recv_inner = Pipe() # 内部通道,用于子进程通信
|
self._conn_send_inner, self._conn_recv_inner = (
|
||||||
|
Pipe()
|
||||||
|
) # 内部通道,用于子进程通信
|
||||||
self._closed = False
|
self._closed = False
|
||||||
self._on_main_receive_func_ids: list[int] = []
|
self._on_main_receive_func_ids: list[int] = []
|
||||||
self._on_sub_receive_func_ids: list[int] = []
|
self._on_sub_receive_func_ids: list[int] = []
|
||||||
@@ -64,7 +78,9 @@ class Channel(Generic[T]):
|
|||||||
_channel[name] = self
|
_channel[name] = self
|
||||||
logger.debug(f"Channel {name} 已在主进程中初始化")
|
logger.debug(f"Channel {name} 已在主进程中初始化")
|
||||||
else:
|
else:
|
||||||
logger.debug(f"Channel {name} 已初始化于子进程中,之后应于主进程中手动设置为妙")
|
logger.debug(
|
||||||
|
f"Channel {name} 已初始化于子进程中,之后应于主进程中手动设置为妙"
|
||||||
|
)
|
||||||
|
|
||||||
def _get_generic_type(self) -> Optional[type]:
|
def _get_generic_type(self) -> Optional[type]:
|
||||||
"""
|
"""
|
||||||
@@ -72,7 +88,7 @@ class Channel(Generic[T]):
|
|||||||
Returns:
|
Returns:
|
||||||
Optional[type]: 泛型类型
|
Optional[type]: 泛型类型
|
||||||
"""
|
"""
|
||||||
if hasattr(self, '__orig_class__'):
|
if hasattr(self, "__orig_class__"):
|
||||||
return get_args(self.__orig_class__)[0]
|
return get_args(self.__orig_class__)[0]
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -98,7 +114,10 @@ class Channel(Generic[T]):
|
|||||||
elif isinstance(structure, dict):
|
elif isinstance(structure, dict):
|
||||||
if not isinstance(data, dict):
|
if not isinstance(data, dict):
|
||||||
return False
|
return False
|
||||||
return all(k in data and self._validate_structure(data[k], structure[k]) for k in structure)
|
return all(
|
||||||
|
k in data and self._validate_structure(data[k], structure[k])
|
||||||
|
for k in structure
|
||||||
|
)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
@@ -142,7 +161,9 @@ class Channel(Generic[T]):
|
|||||||
data = await loop.run_in_executor(None, self.receive)
|
data = await loop.run_in_executor(None, self.receive)
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def on_receive(self, filter_func: Optional[FILTER_FUNC] = None) -> Callable[[Callable[[T], Any]], Callable[[T], Any]]:
|
def on_receive(
|
||||||
|
self, filter_func: Optional[FILTER_FUNC] = None
|
||||||
|
) -> Callable[[Callable[[T], Any]], Callable[[T], Any]]:
|
||||||
"""
|
"""
|
||||||
接收数据并执行函数
|
接收数据并执行函数
|
||||||
Args:
|
Args:
|
||||||
@@ -187,37 +208,52 @@ class Channel(Generic[T]):
|
|||||||
data: 数据
|
data: 数据
|
||||||
"""
|
"""
|
||||||
if IS_MAIN_PROCESS:
|
if IS_MAIN_PROCESS:
|
||||||
[asyncio.create_task(_callback_funcs[func_id](data)) for func_id in self._on_main_receive_func_ids]
|
[
|
||||||
|
asyncio.create_task(_callback_funcs[func_id](data))
|
||||||
|
for func_id in self._on_main_receive_func_ids
|
||||||
|
]
|
||||||
else:
|
else:
|
||||||
[asyncio.create_task(_callback_funcs[func_id](data)) for func_id in self._on_sub_receive_func_ids]
|
[
|
||||||
|
asyncio.create_task(_callback_funcs[func_id](data))
|
||||||
|
for func_id in self._on_sub_receive_func_ids
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
"""子进程可用的主动和被动通道"""
|
"""子进程可用的主动和被动通道"""
|
||||||
active_channel: Channel = Channel(name="active_channel") # 主动通道
|
active_channel: Channel = Channel(name="active_channel") # 主动通道
|
||||||
passive_channel: Channel = Channel(name="passive_channel") # 被动通道
|
passive_channel: Channel = Channel(name="passive_channel") # 被动通道
|
||||||
publish_channel: Channel[tuple[str, dict[str, Any]]] = Channel(name="publish_channel") # 发布通道
|
publish_channel: Channel[tuple[str, dict[str, Any]]] = Channel(
|
||||||
|
name="publish_channel"
|
||||||
|
) # 发布通道
|
||||||
"""通道传递通道,主进程创建单例,子进程初始化时实例化"""
|
"""通道传递通道,主进程创建单例,子进程初始化时实例化"""
|
||||||
channel_deliver_active_channel: Channel[Channel[Any]] # 主动通道传递通道
|
channel_deliver_active_channel: Channel[Channel[Any]] # 主动通道传递通道
|
||||||
channel_deliver_passive_channel: Channel[tuple[str, dict[str, Any]]] # 被动通道传递通道
|
channel_deliver_passive_channel: Channel[tuple[str, dict[str, Any]]] # 被动通道传递通道
|
||||||
|
|
||||||
if IS_MAIN_PROCESS:
|
if IS_MAIN_PROCESS:
|
||||||
channel_deliver_active_channel = Channel(name="channel_deliver_active_channel") # 主动通道传递通道
|
channel_deliver_active_channel = Channel(
|
||||||
channel_deliver_passive_channel = Channel(name="channel_deliver_passive_channel") # 被动通道传递通道
|
name="channel_deliver_active_channel"
|
||||||
|
) # 主动通道传递通道
|
||||||
|
channel_deliver_passive_channel = Channel(
|
||||||
|
name="channel_deliver_passive_channel"
|
||||||
|
) # 被动通道传递通道
|
||||||
|
|
||||||
|
@channel_deliver_passive_channel.on_receive(
|
||||||
@channel_deliver_passive_channel.on_receive(filter_func=lambda data: data[0] == "set_channel")
|
filter_func=lambda data: data[0] == "set_channel"
|
||||||
|
)
|
||||||
def on_set_channel(data: tuple[str, dict[str, Any]]):
|
def on_set_channel(data: tuple[str, dict[str, Any]]):
|
||||||
name, channel = data[1]["name"], data[1]["channel_"]
|
name, channel = data[1]["name"], data[1]["channel_"]
|
||||||
set_channel(name, channel)
|
set_channel(name, channel)
|
||||||
|
|
||||||
|
@channel_deliver_passive_channel.on_receive(
|
||||||
@channel_deliver_passive_channel.on_receive(filter_func=lambda data: data[0] == "get_channel")
|
filter_func=lambda data: data[0] == "get_channel"
|
||||||
|
)
|
||||||
def on_get_channel(data: tuple[str, dict[str, Any]]):
|
def on_get_channel(data: tuple[str, dict[str, Any]]):
|
||||||
name, recv_chan = data[1]["name"], data[1]["recv_chan"]
|
name, recv_chan = data[1]["name"], data[1]["recv_chan"]
|
||||||
recv_chan.send(get_channel(name))
|
recv_chan.send(get_channel(name))
|
||||||
|
|
||||||
|
@channel_deliver_passive_channel.on_receive(
|
||||||
@channel_deliver_passive_channel.on_receive(filter_func=lambda data: data[0] == "get_channels")
|
filter_func=lambda data: data[0] == "get_channels"
|
||||||
|
)
|
||||||
def on_get_channels(data: tuple[str, dict[str, Any]]):
|
def on_get_channels(data: tuple[str, dict[str, Any]]):
|
||||||
recv_chan = data[1]["recv_chan"]
|
recv_chan = data[1]["recv_chan"]
|
||||||
recv_chan.send(get_channels())
|
recv_chan.send(get_channels())
|
||||||
@@ -241,10 +277,11 @@ def set_channel(name: str, channel: "Channel"):
|
|||||||
# 请求主进程设置通道
|
# 请求主进程设置通道
|
||||||
channel_deliver_passive_channel.send(
|
channel_deliver_passive_channel.send(
|
||||||
(
|
(
|
||||||
"set_channel", {
|
"set_channel",
|
||||||
|
{
|
||||||
"name": name,
|
"name": name,
|
||||||
"channel_": channel,
|
"channel_": channel,
|
||||||
}
|
},
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -273,13 +310,7 @@ def get_channel(name: str) -> "Channel":
|
|||||||
else:
|
else:
|
||||||
recv_chan = Channel[Channel[Any]]("recv_chan")
|
recv_chan = Channel[Channel[Any]]("recv_chan")
|
||||||
channel_deliver_passive_channel.send(
|
channel_deliver_passive_channel.send(
|
||||||
(
|
("get_channel", {"name": name, "recv_chan": recv_chan})
|
||||||
"get_channel",
|
|
||||||
{
|
|
||||||
"name" : name,
|
|
||||||
"recv_chan": recv_chan
|
|
||||||
}
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
return recv_chan.receive()
|
return recv_chan.receive()
|
||||||
|
|
||||||
@@ -294,12 +325,5 @@ def get_channels() -> dict[str, "Channel"]:
|
|||||||
return _channel
|
return _channel
|
||||||
else:
|
else:
|
||||||
recv_chan = Channel[dict[str, Channel[Any]]]("recv_chan")
|
recv_chan = Channel[dict[str, Channel[Any]]]("recv_chan")
|
||||||
channel_deliver_passive_channel.send(
|
channel_deliver_passive_channel.send(("get_channels", {"recv_chan": recv_chan}))
|
||||||
(
|
|
||||||
"get_channels",
|
|
||||||
{
|
|
||||||
"recv_chan": recv_chan
|
|
||||||
}
|
|
||||||
)
|
|
||||||
)
|
|
||||||
return recv_chan.receive()
|
return recv_chan.receive()
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
此模块用于注册观察者函数,使用watchdog监控文件变化并重启bot
|
此模块用于注册观察者函数,使用watchdog监控文件变化并重启bot
|
||||||
启用该模块需要在配置文件中设置`dev_mode`为True
|
启用该模块需要在配置文件中设置`dev_mode`为True
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import time
|
import time
|
||||||
from typing import Callable, TypeAlias
|
from typing import Callable, TypeAlias
|
||||||
|
|
||||||
@@ -21,6 +22,7 @@ def debounce(wait):
|
|||||||
"""
|
"""
|
||||||
防抖函数
|
防抖函数
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def decorator(func):
|
def decorator(func):
|
||||||
def wrapper(*args, **kwargs):
|
def wrapper(*args, **kwargs):
|
||||||
nonlocal last_call_time
|
nonlocal last_call_time
|
||||||
@@ -62,7 +64,9 @@ class CodeModifiedHandler(FileSystemEventHandler):
|
|||||||
self.on_modified(event)
|
self.on_modified(event)
|
||||||
|
|
||||||
|
|
||||||
def on_file_system_event(directories: tuple[str], recursive: bool = True, event_filter: FILTER_FUNC = None) -> Callable[[CALLBACK_FUNC], CALLBACK_FUNC]:
|
def on_file_system_event(
|
||||||
|
directories: tuple[str], recursive: bool = True, event_filter: FILTER_FUNC = None
|
||||||
|
) -> Callable[[CALLBACK_FUNC], CALLBACK_FUNC]:
|
||||||
"""
|
"""
|
||||||
注册文件系统变化监听器
|
注册文件系统变化监听器
|
||||||
Args:
|
Args:
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ importlib_metadata>=7.0.2
|
|||||||
watchdog>=4.0.0
|
watchdog>=4.0.0
|
||||||
jieba>=0.42.1
|
jieba>=0.42.1
|
||||||
python-dotenv>=1.0.1
|
python-dotenv>=1.0.1
|
||||||
|
pip
|
||||||
nonebot_plugin_session
|
nonebot_plugin_session
|
||||||
pypinyin
|
pypinyin
|
||||||
zhDateTime>=2.0.0
|
zhDateTime>=2.0.0
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ async def _(bot: T_Bot, event: T_MessageEvent, matcher: Matcher):
|
|||||||
reply = "尹灵温 更新完成!\n"
|
reply = "尹灵温 更新完成!\n"
|
||||||
reply += f"```\n{logs}\n```\n"
|
reply += f"```\n{logs}\n```\n"
|
||||||
btn_restart = md.btn_cmd(ulang.get("liteyuki.restart_now"), "reload-liteyuki")
|
btn_restart = md.btn_cmd(ulang.get("liteyuki.restart_now"), "reload-liteyuki")
|
||||||
pip.main(["install", "-r", "requirements.txt"])
|
# pip.main(["install", "-r", "requirements.txt"])
|
||||||
reply += f"{ulang.get('liteyuki.update_restart', RESTART=btn_restart)}"
|
reply += f"{ulang.get('liteyuki.update_restart', RESTART=btn_restart)}"
|
||||||
# await md.send_md(reply, bot)
|
# await md.send_md(reply, bot)
|
||||||
img_bytes = await md_to_pic(reply)
|
img_bytes = await md_to_pic(reply)
|
||||||
|
|||||||
@@ -12,6 +12,5 @@ __plugin_meta__ = PluginMetadata(
|
|||||||
"liteyuki": True,
|
"liteyuki": True,
|
||||||
"toggleable": True,
|
"toggleable": True,
|
||||||
"default_enable": True,
|
"default_enable": True,
|
||||||
}
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -22,13 +22,9 @@ async def update_blacklist():
|
|||||||
|
|
||||||
async def request_for_blacklist():
|
async def request_for_blacklist():
|
||||||
global blacklist
|
global blacklist
|
||||||
urls = [
|
urls = ["https://cdn.liteyuki.icu/static/ubl/"]
|
||||||
"https://cdn.liteyuki.icu/static/ubl/"
|
|
||||||
]
|
|
||||||
|
|
||||||
platforms = [
|
platforms = ["qq"]
|
||||||
"qq"
|
|
||||||
]
|
|
||||||
|
|
||||||
for plat in platforms:
|
for plat in platforms:
|
||||||
for url in urls:
|
for url in urls:
|
||||||
@@ -37,7 +33,7 @@ async def request_for_blacklist():
|
|||||||
resp = await client.get(url)
|
resp = await client.get(url)
|
||||||
blacklist_data[plat] = set((await resp.text()).splitlines())
|
blacklist_data[plat] = set((await resp.text()).splitlines())
|
||||||
blacklist = get_uni_set()
|
blacklist = get_uni_set()
|
||||||
nonebot.logger.info("blacklists updated")
|
nonebot.logger.info("轻雪联合黑名单已更新")
|
||||||
|
|
||||||
|
|
||||||
def get_uni_set() -> set:
|
def get_uni_set() -> set:
|
||||||
@@ -55,4 +51,4 @@ async def pre_handle(event: Event):
|
|||||||
return
|
return
|
||||||
|
|
||||||
if user_id in get_uni_set():
|
if user_id in get_uni_set():
|
||||||
raise IgnoredException("UserId in blacklist")
|
raise IgnoredException("用户处于黑名单之中,无法使用轻雪。")
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ def init():
|
|||||||
repo = Repo(".")
|
repo = Repo(".")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
nonebot.logger.error(
|
nonebot.logger.error(
|
||||||
f"无法读取 Git 仓库 `{e}`,你是否是从仓库直接下载的Zip文件?请使用git clone。"
|
f"无法读取 Git 仓库 `{e}`,你是否是从仓库直接下载的 `Zip` 文件?请使用 `git clone`。"
|
||||||
)
|
)
|
||||||
|
|
||||||
# temp_data: TempConfig = common_db.where_one(TempConfig(), default=TempConfig())
|
# temp_data: TempConfig = common_db.where_one(TempConfig(), default=TempConfig())
|
||||||
|
|||||||
@@ -36,7 +36,7 @@ class BasicConfig(BaseModel):
|
|||||||
satori: SatoriConfig = SatoriConfig()
|
satori: SatoriConfig = SatoriConfig()
|
||||||
data_path: str = "data/liteyuki"
|
data_path: str = "data/liteyuki"
|
||||||
chromium_path: str = (
|
chromium_path: str = (
|
||||||
"/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome" # type: ignore
|
"/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome" # pyright: ignore[reportInvalidStringEscapeSequence]
|
||||||
if platform.system() == "Darwin"
|
if platform.system() == "Darwin"
|
||||||
else (
|
else (
|
||||||
"C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"
|
"C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe"
|
||||||
|
|||||||
@@ -273,7 +273,7 @@ class Database:
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
table_name = model.TABLE_NAME
|
table_name = model.TABLE_NAME
|
||||||
logger.debug(f"Deleting {model} WHERE {condition} {args}")
|
logger.debug(f"数据库 Deleting {model} WHERE {condition} {args}")
|
||||||
if not table_name:
|
if not table_name:
|
||||||
raise ValueError(f"数据模型 {model.__class__.__name__} 未提供表名")
|
raise ValueError(f"数据模型 {model.__class__.__name__} 未提供表名")
|
||||||
if model.id is not None:
|
if model.id is not None:
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ def load_from_lang(file_path: str, lang_code: str = None):
|
|||||||
_language_data[lang_code].update(data)
|
_language_data[lang_code].update(data)
|
||||||
nonebot.logger.debug(f"已从 {file_path} 读取语言文件")
|
nonebot.logger.debug(f"已从 {file_path} 读取语言文件")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
nonebot.logger.error(f"无法读取以下目录中的语言文件 {file_path},详阅:{e}")
|
nonebot.logger.error(f"无法读取语言文件 {file_path},详阅:{e}")
|
||||||
|
|
||||||
|
|
||||||
def load_from_json(file_path: str, lang_code: str = None):
|
def load_from_json(file_path: str, lang_code: str = None):
|
||||||
@@ -64,9 +64,9 @@ def load_from_json(file_path: str, lang_code: str = None):
|
|||||||
if lang_code not in _language_data:
|
if lang_code not in _language_data:
|
||||||
_language_data[lang_code] = {}
|
_language_data[lang_code] = {}
|
||||||
_language_data[lang_code].update(data)
|
_language_data[lang_code].update(data)
|
||||||
nonebot.logger.debug(f"Loaded language data from {file_path}")
|
nonebot.logger.debug(f"已从 {file_path} 读取语言文件")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
nonebot.logger.error(f"Failed to load language data from {file_path}: {e}")
|
nonebot.logger.error(f"无法读取语言文件 {file_path},详阅:{e}")
|
||||||
|
|
||||||
|
|
||||||
def load_from_dir(dir_path: str):
|
def load_from_dir(dir_path: str):
|
||||||
@@ -85,7 +85,7 @@ def load_from_dir(dir_path: str):
|
|||||||
elif file.endswith(".json"):
|
elif file.endswith(".json"):
|
||||||
load_from_json(file_path)
|
load_from_json(file_path)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
nonebot.logger.error(f"Failed to load language data from {file}: {e}")
|
nonebot.logger.error(f"无法读取以下目录中的语言文件 {file},详阅:{e}")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -194,4 +194,4 @@ def load_from_file(path: str):
|
|||||||
continue
|
continue
|
||||||
func.functions.append(line)
|
func.functions.append(line)
|
||||||
loaded_functions[name] = func
|
loaded_functions[name] = func
|
||||||
nonebot.logger.debug(f"Loaded function {name}")
|
nonebot.logger.debug(f"已加载轻雪函数:{name}")
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ def load_from_file(file_path: str):
|
|||||||
word_bank[key] = set()
|
word_bank[key] = set()
|
||||||
word_bank[key].update(value_list)
|
word_bank[key].update(value_list)
|
||||||
|
|
||||||
nonebot.logger.debug(f"Loaded word bank from {file_path}")
|
nonebot.logger.debug(f"已从 {file_path} 路径加载词库")
|
||||||
|
|
||||||
|
|
||||||
def load_from_dir(dir_path: str):
|
def load_from_dir(dir_path: str):
|
||||||
@@ -39,7 +39,7 @@ def load_from_dir(dir_path: str):
|
|||||||
if file.endswith(".json"):
|
if file.endswith(".json"):
|
||||||
load_from_file(file_path)
|
load_from_file(file_path)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
nonebot.logger.error(f"Failed to load language data from {file}: {e}")
|
nonebot.logger.error(f"无法从 {file} 加载语言数据,出现如下问题:{e}")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -39,5 +39,5 @@ def load_lib(lib_name: str) -> ctypes.CDLL:
|
|||||||
"""
|
"""
|
||||||
whole_path = f"{lib_name}_{PLATFORM}_{ARCH}.{LIB_EXT}"
|
whole_path = f"{lib_name}_{PLATFORM}_{ARCH}.{LIB_EXT}"
|
||||||
if not os.path.exists(whole_path):
|
if not os.path.exists(whole_path):
|
||||||
raise FileNotFoundError(f"未见动态链接库 {whole_path}")
|
raise FileNotFoundError(f"未找到动态链接库 {whole_path}")
|
||||||
return ctypes.CDLL(whole_path)
|
return ctypes.CDLL(whole_path)
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ async def template2image(
|
|||||||
os.path.join(template_path, random_file_name), "w", encoding="utf-8"
|
os.path.join(template_path, random_file_name), "w", encoding="utf-8"
|
||||||
) as f:
|
) as f:
|
||||||
await f.write(raw_html)
|
await f.write(raw_html)
|
||||||
nonebot.logger.info("Debug HTML: %s" % f"{random_file_name}")
|
nonebot.logger.info("生成调试用 HTML 文件于 `%s`" % f"{random_file_name}")
|
||||||
|
|
||||||
return await template_to_pic(
|
return await template_to_pic(
|
||||||
template_name=template_name,
|
template_name=template_name,
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ class MarkdownMessage:
|
|||||||
image = Image.open(io.BytesIO(await resp.read()))
|
image = Image.open(io.BytesIO(await resp.read()))
|
||||||
return MarkdownMessage.image(url, image.size)
|
return MarkdownMessage.image(url, image.size)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
nonebot.logger.error(f"获取图片错误:{e}")
|
nonebot.logger.error("无法获取图片,详阅:{}".format(e))
|
||||||
return "[Image Error]"
|
return "[Image Error]"
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ def convert_duration(text: str, default) -> float:
|
|||||||
return duration
|
return duration
|
||||||
|
|
||||||
except BaseException as e:
|
except BaseException as e:
|
||||||
nonebot.logger.info(f"convert_duration error: {e}")
|
nonebot.logger.info("无法转换自然语言时间为秒数,详阅:{}".format(e))
|
||||||
return default
|
return default
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user