2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-23 03:20:52 +08:00
xiaoyao-cvs-plugin/apps/admin.js

133 lines
4.2 KiB
JavaScript
Raw Normal View History

2022-06-17 14:12:23 +08:00
import { segment } from "oicq";
import fs from "fs";
import lodash from "lodash";
import { createRequire } from "module";
import { exec } from "child_process";
import { Cfg } from "../components/index.js";
import Common from "../components/Common.js";
const require = createRequire(import.meta.url);
2022-06-17 14:12:23 +08:00
export const rule = {
updateRes: {
hashMark: true,
reg: "^#图鉴更新$",
describe: "【#管理】更新素材",
},
updateMiaoPlugin: {
hashMark: true,
2022-06-19 18:33:42 +08:00
reg: "^#逍遥插件(强制)?更新",
2022-06-17 14:12:23 +08:00
describe: "【#管理】图鉴更新",
},
2022-06-17 14:12:23 +08:00
};
const _path = process.cwd();
2022-06-19 18:33:42 +08:00
const resPath = `${_path}/plugins/xiaoyao-cvs-plugin/resources/`;
2022-06-18 21:30:24 +08:00
const plusPath = `${resPath}/xiaoyao-plus/`;
2022-06-17 14:12:23 +08:00
const checkAuth = async function (e) {
return await e.checkAuth({
auth: "master",
replyMsg: `只有主人才能命令喵喵哦~
(*/ω*)`
});
}
const getStatus = function (rote, def = true) {
if (Cfg.get(rote, def)) {
return `<div class="cfg-status" >已开启</div>`;
} else {
return `<div class="cfg-status status-off">已关闭</div>`;
}
}
export async function updateRes(e) {
if (!await checkAuth(e)) {
return true;
}
let command = "";
if (fs.existsSync(`${resPath}/res-plus/`)) {
2022-06-17 14:12:23 +08:00
e.reply("开始尝试更新,请耐心等待~");
command = `git pull`;
2022-06-18 21:30:24 +08:00
exec(command, { cwd: `${resPath}/xiaoyao-plus/` }, function (error, stdout, stderr) {
2022-06-17 14:12:23 +08:00
//console.log(stdout);
if (/Already up to date/.test(stdout)) {
e.reply("目前所有图片都已经是最新了~");
return true;
}
let numRet = /(\d*) files changed,/.exec(stdout);
if (numRet && numRet[1]) {
e.reply(`报告主人,更新成功,此次更新了${numRet[1]}个图片~`);
return true;
}
if (error) {
e.reply("更新失败!\nError code: " + error.code + "\n" + error.stack + "\n 请稍后重试。");
} else {
e.reply("图片加量包更新成功~");
}
});
} else {
2022-06-19 18:33:42 +08:00
command = `git clone https://github.com/ctrlcvs/xiaoyao_plus.git "${resPath}/xiaoyao-plus/"`;
e.reply("开始尝试安装图片加量包,可能会需要一段时间,请耐心等待~\n此链接为github图床,如异常请请求多次");
2022-06-17 14:12:23 +08:00
exec(command, function (error, stdout, stderr) {
if (error) {
e.reply("角色图片加量包安装失败!\nError code: " + error.code + "\n" + error.stack + "\n 请稍后重试。");
} else {
2022-06-19 18:33:42 +08:00
e.reply("角色图片加量包安装成功!您后续也可以通过 #图鉴更新 命令来更新图像");
2022-06-17 14:12:23 +08:00
}
});
}
return true;
}
let timer;
export async function updateMiaoPlugin(e) {
if (!await checkAuth(e)) {
return true;
}
let isForce = e.msg.includes("强制");
let command = "git pull";
if (isForce) {
command = "git checkout . && git pull";
e.reply("正在执行强制更新操作,请稍等");
} else {
e.reply("正在执行更新操作,请稍等");
}
2022-06-19 18:33:42 +08:00
exec(command, { cwd: `${_path}/plugins/xiaoyao-cvs-plugin/` }, function (error, stdout, stderr) {
2022-06-17 14:12:23 +08:00
//console.log(stdout);
if (/Already up to date/.test(stdout)) {
2022-06-20 09:31:42 +08:00
e.reply("目前已经是最新版逍遥插件了~");
2022-06-17 14:12:23 +08:00
return true;
}
if (error) {
2022-06-20 09:31:42 +08:00
e.reply("逍遥插件更新失败!\nError code: " + error.code + "\n" + error.stack + "\n 请稍后重试。");
2022-06-17 14:12:23 +08:00
return true;
}
2022-06-20 09:31:42 +08:00
e.reply("逍遥插件更新成功尝试重新启动Yunzai以应用更新...");
2022-06-17 14:12:23 +08:00
timer && clearTimeout(timer);
2022-06-19 18:33:42 +08:00
redis.set("xiaoyao:restart-msg", JSON.stringify({
2022-06-20 09:31:42 +08:00
msg: "重启成功,新版逍遥插件已经生效",
2022-06-17 14:12:23 +08:00
qq: e.user_id
}), { EX: 30 });
timer = setTimeout(function () {
let command = "npm run restart";
exec(command, function (error, stdout, stderr) {
if (error) {
if (/Yunzai not found/.test(error)) {
2022-06-20 09:31:42 +08:00
e.reply("自动重启失败,请手动重启以应用新版逍遥插件。请使用 npm run start 命令启动Yunzai-Bot");
2022-06-17 14:12:23 +08:00
} else {
e.reply("重启失败!\nError code: " + error.code + "\n" + error.stack + "\n 请稍后重试。");
}
return true;
}
})
}, 1000);
});
return true;
}