diff options
| -rw-r--r-- | HydroRoll/__init__.py | 4 | ||||
| -rw-r--r-- | HydroRoll/config.py | 124 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_bot/__init__.py | 30 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_bot/config.py | 11 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_dice/__init__.py | 51 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_dice/config.py | 13 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_echo/__init__.py | 17 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_echo/config.py | 11 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_luck/__init__.py | 21 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_luck/config.py | 15 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_send/__init__.py | 28 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_send/config.py | 15 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_system/__init__.py | 75 | ||||
| -rw-r--r-- | HydroRoll/plugins/HydroRoll_plugin_system/config.py | 11 | ||||
| -rw-r--r-- | README.md | 8 | ||||
| -rw-r--r-- | docs/public/.drawio/水系架构.drawio.html | 4 | ||||
| -rw-r--r-- | pyproject.toml | 10 | ||||
| -rw-r--r-- | tests/config.toml | 4 | ||||
| -rw-r--r-- | tests/main.py | 2 |
19 files changed, 440 insertions, 14 deletions
diff --git a/HydroRoll/__init__.py b/HydroRoll/__init__.py new file mode 100644 index 0000000..c72c991 --- /dev/null +++ b/HydroRoll/__init__.py @@ -0,0 +1,4 @@ +name = "hydroroll" + +from hydroroll.bot import Bot +from hydroroll.config import GlobalConfig
\ No newline at end of file diff --git a/HydroRoll/config.py b/HydroRoll/config.py new file mode 100644 index 0000000..6739249 --- /dev/null +++ b/HydroRoll/config.py @@ -0,0 +1,124 @@ +import argparse +import sys +import platform +from importlib.metadata import version +from iamai import Plugin +import os +import pickle +import threading + + +# 创建全局 ArgumentParser 对象 +global_parser = argparse.ArgumentParser(description='hydroroll[水系] 全局命令参数') + +# 定义全局配置类 +class GlobalConfig: + _name = "hydroroll" + _version = "0.1.0" + _svn = "2" + _author = "简律纯" + _iamai_version = version('iamai') + _python_ver = sys.version + _python_ver_raw= '.'.join(map(str, platform.python_version_tuple()[:3])) + current_path = os.path.dirname(os.path.abspath('__file__')) + + # 定义系统组件 + class HydroSystem: + def __init__(self): + self.parser = argparse.ArgumentParser(description='hydroroll[水系].system 系统命令参数') + self.subparsers = self.parser.add_subparsers() + self.status_parser = self.subparsers.add_parser('status', aliases=['s'], help='系统状态') + self.reload_parser = self.subparsers.add_parser('reload', aliases=['rld'], help='重新加载系统') + self.restart_parser = self.subparsers.add_parser('restart', aliases=['rst'], help='重启系统') + self.help = '\n'.join(self.parser.format_help().replace('\r\n', '\n').replace('\r', '').split('\n')[2:-3]) + class HydroBot: + def __init__(self) -> None: + self.parser = argparse.ArgumentParser(description="Bot命令") + + +class ConfigManager: + def __init__(self, directory): + self.directory = directory + self.configs = {} + self.locks = {} + + def get(self, filename, section, key, default=None): + if not self._check_file_exists(filename): + return default + config = self._get_config(filename) + if section not in config: + return default + return config[section].get(key, default) + + def set(self, filename, section, key, value): + config = self._get_config(filename) + if section not in config: + config[section] = {} + config[section][key] = value + self._save_config(filename, config) + + def delete(self, filename, section, key): + config = self._get_config(filename) + if section not in config: + return + if key not in config[section]: + return + del config[section][key] + self._save_config(filename, config) + + def sections(self, filename): + if not self._check_file_exists(filename): + return [] + config = self._get_config(filename) + return list(config.keys()) + + def section_items(self, filename, section): + if not self._check_file_exists(filename): + return [] + config = self._get_config(filename) + if section not in config: + return [] + return list(config[section].items()) + + def files(self): + return [filename for filename in os.listdir(self.directory) if filename.endswith('.dat')] + + def _get_lock(self, filename): + if filename not in self.locks: + self.locks[filename] = threading.Lock() + return self.locks[filename] + + def _get_config(self, filename): + with self._get_lock(filename): + if filename not in self.configs: + filepath = os.path.join(self.directory, filename) + if os.path.exists(filepath): + try: + with open(filepath, 'rb') as f: + self.configs[filename] = pickle.load(f) + except: + pass + if filename not in self.configs: + self.configs[filename] = {} + return self.configs[filename] + + def _save_config(self, filename, config): + with self._get_lock(filename): + try: + filepath = os.path.join(self.directory, filename) + backuppath = os.path.join(self.directory, filename + '.bak') + lockpath = os.path.join(self.directory, filename + '.lock') + with open(lockpath, 'wb') as f: + pass + if os.path.exists(filepath): + os.replace(filepath, backuppath) + with open(filepath, 'wb') as f: + pickle.dump(config, f) + os.remove(backuppath) + os.remove(lockpath) + except: + pass + + def _check_file_exists(self, filename): + filepath = os.path.join(self.directory, filename) + return os.path.exists(filepath) and filename.endswith('.dat') diff --git a/HydroRoll/plugins/HydroRoll_plugin_bot/__init__.py b/HydroRoll/plugins/HydroRoll_plugin_bot/__init__.py new file mode 100644 index 0000000..2b3eec8 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_bot/__init__.py @@ -0,0 +1,30 @@ +import re +from importlib.metadata import version +from plugins.hydroroll_plugin_base import CommandPluginBase +from hydroroll.config import GlobalConfig + +from .config import Config + + +class HydroBot(CommandPluginBase[None, Config]): + Config = Config + CurrentConfig = GlobalConfig + priority = 0 + + def __post_init__(self): + self.re_pattern = re.compile(r"(?P<bot_info_str>.*)", flags=re.I) + + def bot_info(self): + info_str = f'{self.CurrentConfig._name} '\ + f'{self.CurrentConfig._version}({self.CurrentConfig._svn}) '\ + f'by {self.CurrentConfig._author} '\ + f'on Python {self.CurrentConfig._python_ver_raw} '\ + f'with {" & ".join([adapter + "("+version("iamai-adapter-"+adapter) +")" for adapter in dict(self.bot.config.adapter)])} '\ + f'for iamai({self.CurrentConfig._iamai_version})' + + return info_str + + async def handle(self) -> None: + await self.event.reply( + self.format_str(self.config.message_str, self.bot_info()) + ) diff --git a/HydroRoll/plugins/HydroRoll_plugin_bot/config.py b/HydroRoll/plugins/HydroRoll_plugin_bot/config.py new file mode 100644 index 0000000..717b7b2 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_bot/config.py @@ -0,0 +1,11 @@ +from typing import Set + +from plugins.hydroroll_plugin_base import CommandPluginConfig + + +class Config(CommandPluginConfig): + __config_name__ = "plugin_bot_info" + command: Set[str] = {"bot"} + """命令文本。""" + message_str: str = "{message}" + """最终发送消息的格式。""" diff --git a/HydroRoll/plugins/HydroRoll_plugin_dice/__init__.py b/HydroRoll/plugins/HydroRoll_plugin_dice/__init__.py new file mode 100644 index 0000000..2c9d2b4 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_dice/__init__.py @@ -0,0 +1,51 @@ +import re +import random + +from iamai.log import logger + +from plugins.hydroroll_plugin_base import CommandPluginBase + +from .config import Config + +__all__ = ["Dice"] + +class Dice(CommandPluginBase[None, Config]): + Config = Config + + def __post_init__(self): + self.re_pattern = re.compile( + r"\s*(?P<dice_times>\d+)d(?P<dice_faces>\d+)([*x](?P<dice_multiply>\d+))?", + flags=re.I, + ) + + async def handle(self) -> None: + dice_times = int(self.msg_match.group("dice_times")) + dice_faces = int(self.msg_match.group("dice_faces")) + if self.msg_match.group("dice_multiply") is None: + dice_multiply = None + else: + dice_multiply = int(self.msg_match.group("dice_multiply")) + + if dice_times > self.config.max_dice_times: + await self.event.reply( + self.format_str(self.config.exceed_max_dice_times_str) + ) + return + + dice = [random.randint(1, dice_faces) for _ in range(dice_times)] + dice_sum = sum(dice) + if dice_multiply is None: + result_str = f"{dice_times}D{dice_faces}=" + if dice_times != 1: + result_str += f"{'+'.join(map(lambda x: str(x), dice))}=" + result_str += str(dice_sum) + else: + result_str = f"{dice_times}D{dice_faces}x{dice_multiply}=" + if dice_times != 1: + result_str += ( + f"({'+'.join(map(lambda x: str(x), dice))})x{dice_multiply}=" + ) + result_str += f"{dice_sum}x{dice_multiply}={dice_sum * dice_multiply}" + + logger.info(f"Dice Plugin: {result_str}") + await self.event.reply(self.format_str(self.config.message_str, result_str)) diff --git a/HydroRoll/plugins/HydroRoll_plugin_dice/config.py b/HydroRoll/plugins/HydroRoll_plugin_dice/config.py new file mode 100644 index 0000000..4846409 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_dice/config.py @@ -0,0 +1,13 @@ +from typing import Set + +from plugins.hydroroll_plugin_base import CommandPluginConfig + + +class Config(CommandPluginConfig): + __config_name__ = "plugin_dice" + command: Set[str] = {"r", "roll", "dice"} + """命令文本。""" + max_dice_times: int = 1000 + """最大单次投掷次数。""" + exceed_max_dice_times_str: str = "错误:超过最大投掷次数。" + """超过最大单次投掷次数时的提示语。""" diff --git a/HydroRoll/plugins/HydroRoll_plugin_echo/__init__.py b/HydroRoll/plugins/HydroRoll_plugin_echo/__init__.py new file mode 100644 index 0000000..e800384 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_echo/__init__.py @@ -0,0 +1,17 @@ +import re + +from plugins.hydroroll_plugin_base import CommandPluginBase + +from .config import Config + + +class Echo(CommandPluginBase[None, Config]): + Config = Config + + def __post_init__(self): + self.re_pattern = re.compile(r"(?P<echo_str>.*)", flags=re.I) + + async def handle(self) -> None: + await self.event.reply( + self.format_str(self.config.message_str, self.msg_match.group("echo_str")) + ) diff --git a/HydroRoll/plugins/HydroRoll_plugin_echo/config.py b/HydroRoll/plugins/HydroRoll_plugin_echo/config.py new file mode 100644 index 0000000..030bbec --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_echo/config.py @@ -0,0 +1,11 @@ +from typing import Set + +from plugins.hydroroll_plugin_base import CommandPluginConfig + + +class Config(CommandPluginConfig): + __config_name__ = "plugin_echo" + command: Set[str] = {"echo"} + """命令文本。""" + message_str: str = "*{user_name} {message}" + """最终发送消息的格式。""" diff --git a/HydroRoll/plugins/HydroRoll_plugin_luck/__init__.py b/HydroRoll/plugins/HydroRoll_plugin_luck/__init__.py new file mode 100644 index 0000000..a30c964 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_luck/__init__.py @@ -0,0 +1,21 @@ +import re +import time +import random + +from plugins.hydroroll_plugin_base import CommandPluginBase + +from .config import Config + + +class Luck(CommandPluginBase[None, Config]): + Config = Config + + def __post_init__(self): + self.re_pattern = re.compile(r".*", flags=re.I) + + async def handle(self) -> None: + random.seed( + time.strftime("%Y%j", time.localtime()) + self.format_str("{user_id}") + ) + lucy = random.randint(self.config.min_int, self.config.max_int) + await self.event.reply(self.format_str(self.config.message_str, str(lucy))) diff --git a/HydroRoll/plugins/HydroRoll_plugin_luck/config.py b/HydroRoll/plugins/HydroRoll_plugin_luck/config.py new file mode 100644 index 0000000..eeef14b --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_luck/config.py @@ -0,0 +1,15 @@ +from typing import Set + +from plugins.hydroroll_plugin_base import CommandPluginConfig + + +class Config(CommandPluginConfig): + __config_name__ = "plugin_luck" + command: Set[str] = {"luck"} + """命令文本。""" + min_int: int = 0 + """最小随机整数。""" + max_int: int = 100 + """最大随机整数。""" + message_str: str = "{user_name}今天的运气是: {message}" + """最终发送消息的格式。""" diff --git a/HydroRoll/plugins/HydroRoll_plugin_send/__init__.py b/HydroRoll/plugins/HydroRoll_plugin_send/__init__.py new file mode 100644 index 0000000..234e5b3 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_send/__init__.py @@ -0,0 +1,28 @@ +import re + +from plugins.hydroroll_plugin_base import CommandPluginBase + +from .config import Config + + +class Send(CommandPluginBase[None, Config]): + Config = Config + + def __post_init__(self): + self.re_pattern = re.compile(r"\s*(?P<message>.*)", flags=re.I) + + async def handle(self) -> None: + try: + await self.event.adapter.send( + self.msg_match.group("message"), + "private", + self.config.send_user_id, + ) + except Exception as e: + if self.config.send_filed_msg is not None: + await self.event.reply( + self.format_str(self.config.send_filed_msg, repr(e)) + ) + else: + if self.config.send_success_msg is not None: + await self.event.reply(self.format_str(self.config.send_success_msg)) diff --git a/HydroRoll/plugins/HydroRoll_plugin_send/config.py b/HydroRoll/plugins/HydroRoll_plugin_send/config.py new file mode 100644 index 0000000..6903c0f --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_send/config.py @@ -0,0 +1,15 @@ +from typing import Set, Optional + +from plugins.hydroroll_plugin_base import CommandPluginConfig + + +class Config(CommandPluginConfig): + __config_name__ = "plugin_send" + command: Set[str] = {"send"} + """命令文本。""" + send_user_id: int = 2753364619 + """发送消息的对象的 QQ 号码。""" + send_success_msg: Optional[str] = "已将消息送出√" + """发送成功时回复的消息,设置为 None 表示不发送任何消息。""" + send_filed_msg: Optional[str] = "发送失败:{message}" + """发送失败时回复的消息。""" diff --git a/HydroRoll/plugins/HydroRoll_plugin_system/__init__.py b/HydroRoll/plugins/HydroRoll_plugin_system/__init__.py new file mode 100644 index 0000000..6e4f232 --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_system/__init__.py @@ -0,0 +1,75 @@ +import re +from plugins.hydroroll_plugin_base import CommandPluginBase +from .config import Config +import psutil +import time +from hydroroll.config import GlobalConfig +from iamai.adapter.cqhttp.message import CQHTTPMessageSegment + +class System(CommandPluginBase[None, Config]): + priority: int = 0 + block: bool = True + Config = Config + CurrentConfig = GlobalConfig + + def __post_init__(self): + self.re_pattern = re.compile(r"(?P<system_info_str>.*)", flags=re.I) + + def eventReply(self, message: str): + return self.event.reply( + self.format_str(self.config.message_str, message) + ) + + def get_system_status(self) -> str: + cpu_usage = psutil.cpu_percent() + memory_usage = psutil.virtual_memory().percent + disk_usage = psutil.disk_usage('/').percent + + current_time = time.time() + start_time = psutil.Process().create_time() + + uptime_seconds = int(current_time - start_time) + uptime_str = time.strftime("%H:%M:%S", time.gmtime(uptime_seconds)) + + info_str = f"{self.CurrentConfig._name} Ver.{self.CurrentConfig._version}" + info_str += f"({self.CurrentConfig._svn}) built in Python {self.CurrentConfig._python_ver}\n" + info_str += f"本地时间: {time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())}\n" + info_str += f"已启动时间:{uptime_str}\n" + info_str += f"CPU使用率:{cpu_usage}%\n" + info_str += f"内存占用率:{memory_usage}%\n" + info_str += f"磁盘使用率:{disk_usage}%" + + return info_str + + async def handle(self) -> None: + system = self.CurrentConfig.HydroSystem() + try: + sub_command = self.event.get_plain_text().split()[1] + except IndexError: + sub_command = "" + + if sub_command in ["status", "s"]: + await self.event.reply( + self.format_str(self.config.message_str, + self.get_system_status()) + ) + elif sub_command in ["restart", "rst"]: + await self.event.reply( + self.format_str(self.config.message_str, "正在重启系统...") + ) + self.bot.restart() + + elif sub_command in ["reload", "rld"]: + await self.event.reply( + self.format_str(self.config.message_str, "正在重载...") + ) + self.bot.reload_plugins() + await self.event.reply( + self.format_str(self.config.message_str, + f"已加载{len(self.bot.plugins)}枚插件") + ) + else: + await self.event.reply( + CQHTTPMessageSegment.reply(self.event.message_id) + + self.format_str(self.config.message_str, system.help) + ) diff --git a/HydroRoll/plugins/HydroRoll_plugin_system/config.py b/HydroRoll/plugins/HydroRoll_plugin_system/config.py new file mode 100644 index 0000000..416fcbe --- /dev/null +++ b/HydroRoll/plugins/HydroRoll_plugin_system/config.py @@ -0,0 +1,11 @@ +from typing import Set + +from plugins.hydroroll_plugin_base import CommandPluginConfig + + +class Config(CommandPluginConfig): + __config_name__ = "plugin_system_info" + command: Set[str] = {"system"} + """命令文本。""" + message_str: str = "{message}" + """最终发送消息的格式。""" @@ -4,18 +4,18 @@ <source media="(prefers-color-scheme: dark)" srcset="image/readme/1682620162817.png">
<img src="image/readme/1682620162817.png" height="128">
</picture>
- <h1 align="center">HydroRoll'</h1>
+ <h1 align="center">hydroroll'</h1>
</a>
</p>
<p align="center">
- <a aria-label="Vercel Site" href="https://HydroRoll.retrofor.space/">
+ <a aria-label="Vercel Site" href="https://hydroroll.retrofor.space/">
<img src="https://img.shields.io/badge/DOCS%20AND%20BLOGS-000000.svg?style=for-the-badge&logo=Vercel&labelColor=000">
</a>
- <a aria-label="PYTHON version" href="https://pypi.org/project/HydroRoll">
+ <a aria-label="PYTHON version" href="https://pypi.org/project/hydroroll">
<img alt="" src="https://img.shields.io/npm/v/turbo.svg?style=for-the-badge&labelColor=000000">
</a>
- <a aria-label="License" href="https://github.com/retrofor/HydroRoll/blob/main/LICENSE">
+ <a aria-label="License" href="https://github.com/retrofor/hydroroll/blob/main/LICENSE">
<img alt="" src="https://img.shields.io/npm/l/turbo.svg?style=for-the-badge&labelColor=000000&color=">
</a>
<a aria-label="Join the community on GitHub" href="https://github.com/vercel/turbo/discussions">
diff --git a/docs/public/.drawio/水系架构.drawio.html b/docs/public/.drawio/水系架构.drawio.html index c0a5bc8..24034fe 100644 --- a/docs/public/.drawio/水系架构.drawio.html +++ b/docs/public/.drawio/水系架构.drawio.html @@ -2,11 +2,11 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>diagrams.net</title> -<meta http-equiv="refresh" content="0;URL='https://app.diagrams.net/#Hretrofor%2FHydroRoll%2Fmain%2Fdocs%2Fpublic%2F.drawio%2F%E6%B0%B4%E7%B3%BB%E6%9E%B6%E6%9E%84.drawio.html'"/> +<meta http-equiv="refresh" content="0;URL='https://app.diagrams.net/#Hretrofor%2Fhydroroll%2Fmain%2Fdocs%2Fpublic%2F.drawio%2F%E6%B0%B4%E7%B3%BB%E6%9E%B6%E6%9E%84.drawio.html'"/> <meta charset="utf-8"/> </head> <body> <div class="mxgraph" style="max-width:100%;border:1px solid transparent;" data-mxgraph="{"highlight":"#0000ff","nav":true,"resize":true,"xml":"<mxfile host=\"app.diagrams.net\" modified=\"2023-04-27T18:01:02.634Z\" agent=\"5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.48\" etag=\"98FMvntx2dP42k30fXe-\" version=\"20.4.0\" type=\"github\"><diagram name=\"Page-1\" id=\"5f0bae14-7c28-e335-631c-24af17079c00\"><mxGraphModel dx=\"2302\" dy=\"878\" grid=\"1\" gridSize=\"10\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"1100\" pageHeight=\"850\" math=\"0\" shadow=\"0\"><root><mxCell id=\"0\"/><mxCell id=\"1\" parent=\"0\"/><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-74\" value=\"文件目录结构\" style=\"swimlane;sketch=1;hachureGap=4;jiggle=2;strokeColor=default;fontFamily=Helvetica;fontSize=12;\" vertex=\"1\" parent=\"1\"><mxGeometry x=\"-790\" y=\"150\" width=\"450\" height=\"580\" as=\"geometry\"><mxRectangle x=\"730\" y=\"140\" width=\"110\" height=\"30\" as=\"alternateBounds\"/></mxGeometry></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-65\" value=\"logs&#10;日志文件夹\" style=\"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-74\"><mxGeometry x=\"30\" y=\"70\" width=\"140\" height=\"60\" as=\"geometry\"><mxRectangle x=\"30\" y=\"50\" width=\"100\" height=\"40\" as=\"alternateBounds\"/></mxGeometry></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-66\" value=\"2023042800060445.txt\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=none;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-65\"><mxGeometry y=\"30\" width=\"140\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-30\" value=\"web&#10;UI文件夹\" style=\"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-74\"><mxGeometry x=\"260\" y=\"70\" width=\"150\" height=\"90\" as=\"geometry\"><mxRectangle x=\"300\" y=\"50\" width=\"100\" height=\"40\" as=\"alternateBounds\"/></mxGeometry></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-61\" value=\"frontend&lt;span style=&quot;white-space: pre;&quot;&gt;&#9;&lt;/span&gt;(前端文件夹)\" style=\"text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=12;fontFamily=Helvetica;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-30\"><mxGeometry y=\"30\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-63\" value=\"backend&lt;span style=&quot;white-space: pre;&quot;&gt;&#9;&lt;/span&gt;(后端文件夹)\" style=\"text;html=1;align=left;verticalAlign=middle;resizable=0;points=[];autosize=1;strokeColor=none;fillColor=none;fontSize=12;fontFamily=Helvetica;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-30\"><mxGeometry y=\"60\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-25\" value=\"config&#10;配置文件夹\" style=\"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-74\"><mxGeometry x=\"30\" y=\"190\" width=\"140\" height=\"60\" as=\"geometry\"><mxRectangle x=\"100\" y=\"250\" width=\"100\" height=\"40\" as=\"alternateBounds\"/></mxGeometry></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-26\" value=\"censor.json\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=none;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-25\"><mxGeometry y=\"30\" width=\"140\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-20\" value=\"models&#10;模型文件夹\" style=\"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-74\"><mxGeometry x=\"260\" y=\"190\" width=\"150\" height=\"150\" as=\"geometry\"><mxRectangle x=\"320\" y=\"250\" width=\"100\" height=\"40\" as=\"alternateBounds\"/></mxGeometry></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-21\" value=\"models_default.tar.gz\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=default;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-20\"><mxGeometry y=\"30\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-22\" value=\"models_hentai.tar.gz\" style=\"text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-20\"><mxGeometry y=\"60\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-23\" value=\"models_servant.tar.gz\" style=\"text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-20\"><mxGeometry y=\"90\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-24\" value=\"models_assistant.tar.gz\" style=\"text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;container=0;snapToPoint=0;noLabel=0;metaEdit=0;autosize=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-20\"><mxGeometry y=\"120\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-1\" value=\"rules&#10;规则文件夹\" style=\"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-74\"><mxGeometry x=\"30\" y=\"300\" width=\"140\" height=\"150\" as=\"geometry\"><mxRectangle x=\"50\" y=\"340\" width=\"100\" height=\"40\" as=\"alternateBounds\"/></mxGeometry></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-2\" value=\"rules-default\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=default;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-1\"><mxGeometry y=\"30\" width=\"140\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-3\" value=\"rules-skyfall\" style=\"text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-1\"><mxGeometry y=\"60\" width=\"140\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-4\" value=\"rules-pine\" style=\"text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-1\"><mxGeometry y=\"90\" width=\"140\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-5\" value=\"rules-jane\" style=\"text;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;container=0;snapToPoint=0;noLabel=0;metaEdit=0;autosize=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-1\"><mxGeometry y=\"120\" width=\"140\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-58\" value=\"plugins&#10;插件文件夹\" style=\"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-74\"><mxGeometry x=\"260\" y=\"390\" width=\"150\" height=\"150\" as=\"geometry\"><mxRectangle x=\"300\" y=\"420\" width=\"100\" height=\"40\" as=\"alternateBounds\"/></mxGeometry></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-59\" value=\"plugin_1\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=none;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-58\"><mxGeometry y=\"30\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-67\" value=\"plugin_2\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=none;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-58\"><mxGeometry y=\"60\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-68\" value=\"plugin_3.py\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=none;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-58\"><mxGeometry y=\"90\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-82\" value=\"plugin_4.py\" style=\"text;fillColor=none;align=left;verticalAlign=middle;spacingLeft=4;spacingRight=4;overflow=hidden;points=[[0,0.5],[1,0.5]];portConstraint=eastwest;rotatable=0;rounded=0;strokeColor=none;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-58\"><mxGeometry y=\"120\" width=\"150\" height=\"30\" as=\"geometry\"/></mxCell><mxCell id=\"uVe3mF7CTFMHZBntQ0y6-69\" value=\"users&#10;用户文件夹\" style=\"swimlane;fontStyle=0;childLayout=stackLayout;horizontal=1;startSize=30;horizontalStack=0;resizeParent=1;resizeParentMax=0;resizeLast=0;collapsible=1;marginBottom=0;rounded=0;sketch=1;\" vertex=\"1\" parent=\"uVe3mF7CTFMHZBntQ0y6-74\"><mxGeometry x=\"30\" y=\"480\" width=\"140\" height=\"60\" as=\"geometry\"><mxRectangle x=\"50\" y=\"490\" width=\"100\" height=\"40\" as=\"alternateBounds\"/></mxGeometry></mxCell></root></mxGraphModel></diagram></mxfile>","toolbar":"pages zoom layers lightbox","page":0}"></div> -<a style="position:absolute;top:50%;left:50%;margin-top:-128px;margin-left:-64px;" href="https://app.diagrams.net/#Hretrofor%2FHydroRoll%2Fmain%2Fdocs%2Fpublic%2F.drawio%2F%E6%B0%B4%E7%B3%BB%E6%9E%B6%E6%9E%84.drawio.html" target="_blank"><img border="0" src="https://app.diagrams.net/images/drawlogo128.png"/></a> +<a style="position:absolute;top:50%;left:50%;margin-top:-128px;margin-left:-64px;" href="https://app.diagrams.net/#Hretrofor%2Fhydroroll%2Fmain%2Fdocs%2Fpublic%2F.drawio%2F%E6%B0%B4%E7%B3%BB%E6%9E%B6%E6%9E%84.drawio.html" target="_blank"><img border="0" src="https://app.diagrams.net/images/drawlogo128.png"/></a> </body> </html> diff --git a/pyproject.toml b/pyproject.toml index 1bc12e9..f020d47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,13 @@ [tool.poetry] -name = "HydroRoll" +name = "hydroroll" version = "0.1.1" description = "bot framework." authors = ["简律纯 <admin@jyunko.cn>"] license = "MIT" readme = "README.md" -homepage = "https://HydroRoll.retrofor.space/" -repository = "https://github.com/retrofor/HydroRoll" -documentation = "https://HydroRoll.retrofor.space/" +homepage = "https://hydroroll.retrofor.space/" +repository = "https://github.com/retrofor/hydroroll" +documentation = "https://hydroroll.retrofor.space/" keywords = ["bot", "qq", "qqbot", "mirai", "coolq"] classifiers = [ "Development Status :: 5 - Production/Stable", @@ -39,7 +39,7 @@ profile = "black" length_sort = true skip_gitignore = true force_sort_within_sections = true -src_paths = ["HydroRoll", "tests"] +src_paths = ["hydroroll", "tests"] extra_standard_library = ["typing_extensions"] [tool.pyright] diff --git a/tests/config.toml b/tests/config.toml index 55d49a5..c3799b3 100644 --- a/tests/config.toml +++ b/tests/config.toml @@ -1,9 +1,9 @@ -[HydroRoll] +[hydroroll] version = "v0.1.0" svn = "1" author = "简律纯" -[HydroRoll.self] +[hydroroll.self] header = "Hydro系[1]号" # info = "一只水系骰子..." diff --git a/tests/main.py b/tests/main.py index 93f67f2..da054c4 100644 --- a/tests/main.py +++ b/tests/main.py @@ -1,4 +1,4 @@ -from HydroRoll import Bot +from hydroroll import Bot bot = Bot(hot_reload=True) |
