miao-plugin/tools/index.js

54 lines
1.6 KiB
JavaScript
Raw Normal View History

2023-10-20 08:59:06 +00:00
import { Data, Version } from '#miao'
import fs from 'node:fs'
import Trans from './trans.js'
import { rootPath } from '#miao.path'
2023-10-20 08:59:06 +00:00
let relpyPrivate = async function () {
}
let common = await Data.importModule('lib/common/common.js', 'root')
if (common && common.default && common.default.relpyPrivate) {
relpyPrivate = common.default.relpyPrivate
}
const Index = {
async init () {
await Index.checkVersion()
await Index.startMsg()
Index.transUserData()
},
// 发启动消息
async startMsg () {
let msgStr = await redis.get('miao:restart-msg')
if (msgStr) {
let msg = JSON.parse(msgStr)
await relpyPrivate(msg.qq, msg.msg)
await redis.del('miao:restart-msg')
let msgs = [`当前喵喵版本: ${Version.version}`, '您可使用 #喵喵版本 命令查看更新信息']
await relpyPrivate(msg.qq, msgs.join('\n'))
}
},
// 检查版本
async checkVersion () {
2023-10-25 19:03:33 +00:00
if (!Version.isV3 && !Version.isAlemonjs) {
2023-10-20 08:59:06 +00:00
console.log('警告miao-plugin需要V3 Yunzai请升级至最新版Miao-Yunzai以使用miao-plugin')
}
if (!fs.existsSync(rootPath + '/lib/plugins/runtime.js')) {
2023-10-20 08:59:06 +00:00
let msg = '警告未检测到runtimemiao-plugin可能无法正常工作。请升级至最新版Miao-Yunzai以使用miao-plugin'
if (!await redis.get('miao:runtime-warning')) {
await relpyPrivate(msg.qq, msg)
await redis.set('miao:runtime-warning', 'true', { EX: 3600 * 24 })
} else {
console.log(msg)
}
}
},
// 迁移面板数据
transUserData () {
Trans.init()
}
}
export default Index