2 Star 12 Fork 0

地球生物/earth-k-plugin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
index.js 1.77 KB
一键复制 编辑 原始数据 按行查看 历史
diqiushengwu 提交于 2023-02-12 22:01 . Add files via upload
import { Data, Version } from './components/index.js'
import fs from 'node:fs'
import chalk from 'chalk'
let ret = []
logger.info(chalk.rgb(120, 255, 108)(`---------=.=---------`))
logger.info(chalk.rgb(120, 255, 108)(`土块插件${Version.version}载入成功~qwq`))
logger.info(chalk.rgb(120, 255, 108)(`作者-SunRyK曉K & 地球生物`))
logger.info(chalk.rgb(120, 255, 108)(`土块画图连不上官网,则安装此依赖,命令: pnpm add https-proxy-agent -w`))
logger.info(chalk.rgb(120, 255, 108)(`---------------------`));
try {
await import('image-size')
if (!await redis.get('earth-k:node_modules')) await redis.set('earth-k:node_modules', '1')
} catch (error) {
if (error.stack?.includes('Cannot find package')) {
logger.warn('--------土块依赖缺失--------')
logger.warn(`earth-k-plugin 缺少依赖将无法使用 ${logger.yellow('AI绘图')}`)
logger.warn(`如需使用请运行:${logger.red('pnpm add image-size -w')}`)
logger.warn('---------------------------')
logger.debug(decodeURI(error.stack))
} else {
logger.error(`土块载入依赖错误:${logger.red('image-size')}`)
logger.error(decodeURI(error.stack))
}
await redis.del('earth-k:node_modules')
}
const files = fs
.readdirSync('./plugins/earth-k-plugin/apps')
.filter((file) => file.endsWith('.js'))
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(name)}`)
logger.error(ret[i].reason)
continue
}
apps[name] = ret[i].value[Object.keys(ret[i].value)[0]]
}
export { apps }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/diqiushengwu/earth-k-plugin.git
git@gitee.com:diqiushengwu/earth-k-plugin.git
diqiushengwu
earth-k-plugin
earth-k-plugin
master

搜索帮助