mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
66b1593e43
Signed-off-by: 柠檬冲水 <10424920+ningmengchongshui@user.noreply.gitee.com>
45 lines
1.5 KiB
JavaScript
45 lines
1.5 KiB
JavaScript
import { Data, Version } from '#miao'
|
||
import fs from 'fs'
|
||
|
||
if (!global.segment) {
|
||
global.segment = (await import('oicq')).segment
|
||
}
|
||
|
||
export * from './apps/index.js'
|
||
|
||
if (Bot?.logger?.info) {
|
||
Bot.logger.info('---------^_^---------')
|
||
Bot.logger.info(`喵喵插件${Version.version}初始化~`)
|
||
} else {
|
||
console.log(`喵喵插件${Version.version}初始化~`)
|
||
}
|
||
|
||
setTimeout(async function () {
|
||
let msgStr = await redis.get('miao:restart-msg')
|
||
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
|
||
}
|
||
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'))
|
||
}
|
||
if (!Version.isV3 && !Version.isAlemonjs) {
|
||
console.log('警告:miao-plugin需要V3 Yunzai,请升级至最新版Miao-Yunzai以使用miao-plugin')
|
||
}
|
||
if (!fs.existsSync(process.cwd() + '/lib/plugins/runtime.js')) {
|
||
let msg = '警告:未检测到runtime,miao-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)
|
||
}
|
||
}
|
||
}, 1000)
|