-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
72 lines (57 loc) · 1.76 KB
/
index.js
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
69
70
71
72
import fs from "node:fs";
import Cfg from "./model/Cfg.js";
if (!fs.existsSync(Cfg.file)) fs.mkdirSync(Cfg.file);
let file = fs
.readdirSync(`${Cfg.defile}`)
.filter((file) => file.endsWith(".yaml"));
for (let item of [...file, "mys.json"])
if (!fs.existsSync(`${Cfg.file}/${item}`))
fs.copyFileSync(`${Cfg.defile}/${item}`, `${Cfg.file}/${item}`);
try {
for (let type of ["white", "banuid", "command", "config"]) {
let isNew = true;
let data = Cfg.getConfig(type);
let defdata = Cfg.getdef(type);
if (["command"].includes(type)) {
for (let i in defdata) if (!(i in data)) isNew = false;
if (!isNew) {
let config = Cfg.getdef(type, false);
for (let i in defdata)
if (i in data)
config = config.replace(
new RegExp(`${i}:(.*)`, "g"),
`${i}: ${data[i]}`
);
Cfg.setConfig(type, config, false);
}
} else {
for (let i in defdata) if (!(i in data)) isNew = false;
if (!isNew) {
for (let i in defdata) if (i in data) defdata[i] = data[i];
Cfg.setConfig(type, defdata);
}
}
}
logger.mark("[米游社工具]配置文件更新完成");
} catch (error) {
logger.error(error);
}
const files = fs
.readdirSync("./plugins/mystool/apps")
.filter((file) => file.endsWith(".js"));
let ret = [];
files.forEach((file) => {
ret.push(import(`./apps/${file}`));
});
ret = await Promise.allSettled(ret);
let apps = {};
for (let i in files) {
let name = files[i].replace(".js", "");
if (ret[i].status != "fulfilled") {
logger.error(`载入插件错误:${logger.red(`mystool/${name}.js`)}`);
logger.error(ret[i].reason);
continue;
}
apps[name] = ret[i].value[Object.keys(ret[i].value)[0]];
}
export { apps };