1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
import yaml
from time import sleep
from pathlib import Path
from .models import BotConfig, ConfigModel, WithGoCQHTTP, RuntimeConfig
CONFIG_PATH = Path(".") / "data" / "config"
CONFIG_PATH.mkdir(parents=True, exist_ok=True)
_DEFAULT_CONFIG_PATH = Path(".") / "ATRI" / "configs" / "default_config.yml"
class Config:
def __init__(self, config_path: Path):
if not config_path.is_file():
try:
with open(config_path, "w", encoding="utf-8") as w:
w.write(_DEFAULT_CONFIG_PATH.read_text("utf-8"))
print("!!! 未检测到 config.yml, 已于当前目录生成, 请参照文档进行填写并重新启动")
print("!!! 文档地址: https://atri.imki.moe/install/configuration-bot/")
sleep(3)
exit(0)
except Exception as err:
print(f"!!! 写入文件 config.yml 失败, 请确认是否给足权限: {err}")
sleep(3)
exit(-1)
else:
with open(config_path, "r", encoding="utf-8") as r:
if "BotSelfConfig" in r.read():
print("!!! 你的 config.yml 文件已废弃, 请 删除/备份 并重新启动")
sleep(3)
exit(-1)
raw_conf = yaml.safe_load(_DEFAULT_CONFIG_PATH.read_bytes())
conf = yaml.safe_load(config_path.read_bytes())
if raw_conf.get("ConfigVersion") != conf.get("ConfigVersion"):
print("!!! 你的 config.yml 文件已废弃, 请 删除/备份 并重新启动")
sleep(3)
exit(-1)
self.config = conf
def parse(self) -> ConfigModel:
return ConfigModel.parse_obj(self.config)
def get_runtime_conf(self) -> dict:
bot_conf = BotConfig.parse_obj(self.config["BotConfig"])
gocq_conf = WithGoCQHTTP.parse_obj(self.config["WithGoCQHTTP"])
return RuntimeConfig(
host=bot_conf.host,
port=bot_conf.port,
debug=bot_conf.debug,
superusers=bot_conf.superusers,
nickname=bot_conf.nickname,
onebot_access_token=bot_conf.access_token,
command_start=bot_conf.command_start,
command_sep=bot_conf.command_sep,
session_expire_timeout=bot_conf.session_expire_timeout,
gocq_accounts=gocq_conf.accounts,
gocq_download_domain=gocq_conf.download_version,
gocq_version=gocq_conf.download_version,
gocq_webui_username=gocq_conf.gocq_webui_username,
gocq_webui_password=gocq_conf.gocq_webui_password,
).dict()
|