no message

This commit is contained in:
hawk86104 2024-05-14 15:57:04 +08:00
parent 2d5a6d6e96
commit 27987a3e4e
3 changed files with 126 additions and 124 deletions

View File

@ -1,157 +1,159 @@
/* /*
* @Description: * @Description:
* @Version: 1.668 * @Version: 1.668
* @Autor: 地虎降天龙 * @Autor: 地虎降天龙
* @Date: 2024-01-08 09:01:48 * @Date: 2024-01-08 09:01:48
* @LastEditors: 地虎降天龙 * @LastEditors: 地虎降天龙
* @LastEditTime: 2024-01-08 15:54:14 * @LastEditTime: 2024-05-14 15:56:00
*/ */
const compressing = require('compressing') const compressing = require('compressing')
const fs = require('fs') const fs = require('fs')
var path = require('path') var path = require('path')
// 示例代码 // 示例代码
const args = process.argv; // 包含了所有的命令行参数,第一个元素为 node 路径,第二个元素为脚本文件名 const args = process.argv // 包含了所有的命令行参数,第一个元素为 node 路径,第二个元素为脚本文件名
if (!args[2]) { if (!args[2]) {
console.error('【类型:creat、package、install】 参数错误') console.error('【类型:creat、package、install】 参数错误')
return return
} }
function fileExistsWithCaseSync (filepath) { function fileExistsWithCaseSync(filepath) {
var dir = path.dirname(filepath) var dir = path.dirname(filepath)
if (dir === path.dirname(dir)) { if (dir === path.dirname(dir)) {
return true return true
} }
var filenames = fs.readdirSync(dir) var filenames = fs.readdirSync(dir)
if (filenames.indexOf(path.basename(filepath)) === -1) { if (filenames.indexOf(path.basename(filepath)) === -1) {
return false return false
} }
return fileExistsWithCaseSync(dir) return fileExistsWithCaseSync(dir)
} }
const packagePlugins = (pluginName) => { const packagePlugins = (pluginName) => {
if (!pluginName) { if (!pluginName) {
console.error('打包插件_:【插件名错误】 ') console.error('打包插件_:【插件名错误】 ')
return return
} }
const pluginPath = './src/plugins/' + pluginName const pluginPath = './src/plugins/' + pluginName
// 检查是否存在此插件 // 检查是否存在此插件
if (!fileExistsWithCaseSync(pluginPath)) { if (!fileExistsWithCaseSync(pluginPath)) {
console.error(`打包插件_:不存在名为:【 ${pluginName} 】的插件。地址:${pluginPath}`) console.error(`打包插件_:不存在名为:【 ${pluginName} 】的插件。地址:${pluginPath}`)
return return
} }
const packagePath = `./pluginMaker/packages/${pluginName}.zip` const packagePath = `./pluginMaker/packages/${pluginName}.zip`
// compressing.zip.compressDir(pluginPath, packagePath, { ignoreBase: false }) // compressing.zip.compressDir(pluginPath, packagePath, { ignoreBase: false })
// .then(() => { // .then(() => {
// console.log(`打包插件_:【 ${pluginName} 】 成功。地址:${packagePath}`) // console.log(`打包插件_:【 ${pluginName} 】 成功。 地址:${packagePath}`)
// }) // })
// .catch(err => { // .catch(err => {
// console.error(err) // console.error(err)
// }) // })
const zipStream = new compressing.zip.Stream() const zipStream = new compressing.zip.Stream()
zipStream.addEntry(pluginPath, { relativePath: pluginPath, ignoreBase: true }) zipStream.addEntry(pluginPath, { relativePath: pluginPath, ignoreBase: true })
zipStream.addEntry(`./public/plugins/${pluginName}`, { relativePath: `./public/plugins/${pluginName}`, ignoreBase: true }) zipStream.addEntry(`./public/plugins/${pluginName}`, { relativePath: `./public/plugins/${pluginName}`, ignoreBase: true })
const destStream = fs.createWriteStream(packagePath) const destStream = fs.createWriteStream(packagePath)
zipStream.pipe(destStream) zipStream
.on('finish', () => { .pipe(destStream)
console.log(`打包插件_:【 ${pluginName} 】 成功。地址:${packagePath}`) .on('finish', () => {
}) console.log(`打包插件_:【 ${pluginName} 】 成功。地址:${packagePath}`)
.on('error', (err) => { })
console.error(err) .on('error', (err) => {
}); console.error(err)
})
} }
const installPlugins = (pluginName) => { const installPlugins = (pluginName) => {
if (!pluginName) { if (!pluginName) {
console.error('安装插件_:【插件名错误】 ') console.error('安装插件_:【插件名错误】 ')
return return
} }
// 检查是否存在此插件包 // 检查是否存在此插件包
const packagePath = `./pluginMaker/install/${pluginName}.zip` const packagePath = `./pluginMaker/install/${pluginName}.zip`
if (!fileExistsWithCaseSync(packagePath)) { if (!fileExistsWithCaseSync(packagePath)) {
console.error(`安装插件_:不存在名为:【 ${pluginName} 】的插件包。地址:${packagePath}`) console.error(`安装插件_:不存在名为:【 ${pluginName} 】的插件包。地址:${packagePath}`)
return return
} }
const pluginPath = './src/plugins/' + pluginName const pluginPath = './src/plugins/' + pluginName
// 检查是否存在此插件目录 // 检查是否存在此插件目录
if (fileExistsWithCaseSync(pluginPath)) { if (fileExistsWithCaseSync(pluginPath)) {
console.error(`安装插件_:已经存在名为:【 ${pluginName} 】的插件。目录地址为:${pluginPath}。 如若需要安装请备份和删除目录`) console.error(`安装插件_:已经存在名为:【 ${pluginName} 】的插件。目录地址为:${pluginPath}。 如若需要安装请备份和删除目录`)
return return
} }
// 解压插件 到 目录 // 解压插件 到 目录
compressing.zip.uncompress(packagePath, './') compressing.zip
.then(() => { .uncompress(packagePath, './')
console.log(`安装插件_:【 ${pluginName} 】 成功。地址:${pluginPath}。安装文件包请自行删除。`) .then(() => {
}) console.log(`安装插件_:【 ${pluginName} 】 成功。地址:${pluginPath}。安装文件包请自行删除。`)
.catch(err => { })
console.error(err) .catch((err) => {
}) console.error(err)
})
} }
const createPlugins = (pluginName) => { const createPlugins = (pluginName) => {
if (!pluginName) { if (!pluginName) {
console.error('新建插件_:【插件名错误】 ') console.error('新建插件_:【插件名错误】 ')
return return
} }
const pluginPath = './src/plugins/' + pluginName const pluginPath = './src/plugins/' + pluginName
// 检查是否存在此插件目录 // 检查是否存在此插件目录
if (fileExistsWithCaseSync(pluginPath)) { if (fileExistsWithCaseSync(pluginPath)) {
console.error(`新建插件_:已经存在名为:【 ${pluginName} 】的插件。目录地址为:${pluginPath}。 请取其他的名字`) console.error(`新建插件_:已经存在名为:【 ${pluginName} 】的插件。目录地址为:${pluginPath}。 请取其他的名字`)
return return
} }
// 创建目录 // 创建目录
const publicPath = `./public/plugins/${pluginName}/preview` const publicPath = `./public/plugins/${pluginName}/preview`
fs.mkdir(publicPath, { recursive: true }, (err) => { fs.mkdir(publicPath, { recursive: true }, (err) => {
if (err) throw err if (err) throw err
console.log(`新建插件_:静态资源目录已创建:【 ${publicPath}`) console.log(`新建插件_:静态资源目录已创建:【 ${publicPath}`)
}) })
// 解压对应的模版代码到对应的目录 // 解压对应的模版代码到对应的目录
compressing.zip.uncompress('./pluginMaker/template.zip', pluginPath) compressing.zip
.then(() => { .uncompress('./pluginMaker/template.zip', pluginPath)
// 要替换的字符及其替换后的内容 .then(() => {
const configFile = pluginPath + '/config.js' // 要替换的字符及其替换后的内容
const configFile = pluginPath + '/config.js'
// 获得当前日期 // 获得当前日期
const currentDate = new Date() const currentDate = new Date()
const year = currentDate.getFullYear()// 获取年份 const year = currentDate.getFullYear() // 获取年份
const month = String(currentDate.getMonth() + 1).padStart(2, '0') // 获取月份(注意月份是从 0 开始的,需要加 1 const month = String(currentDate.getMonth() + 1).padStart(2, '0') // 获取月份(注意月份是从 0 开始的,需要加 1
const day = String(currentDate.getDate()).padStart(2, '0') // 获取日期 const day = String(currentDate.getDate()).padStart(2, '0') // 获取日期
const formattedDate = `${year}-${month}-${day}` const formattedDate = `${year}-${month}-${day}`
const replaceCharacters = { const replaceCharacters = {
'template': pluginName, template: pluginName,
'2024-01-01': formattedDate, '2024-01-01': formattedDate,
} }
// 读取原始文件内容 // 读取原始文件内容
fs.readFile(configFile, 'utf8', (err, data) => { fs.readFile(configFile, 'utf8', (err, data) => {
if (err) throw err; if (err) throw err
// 遍历需要替换的字符列表 // 遍历需要替换的字符列表
for (let oldChar in replaceCharacters) { for (let oldChar in replaceCharacters) {
const newChar = replaceCharacters[oldChar] const newChar = replaceCharacters[oldChar]
// 在数据中查找并替换指定字符 // 在数据中查找并替换指定字符
data = data.replace(new RegExp(oldChar, 'g'), newChar) data = data.replace(new RegExp(oldChar, 'g'), newChar)
} }
// 将修改后的内容写入新文件 // 将修改后的内容写入新文件
fs.writeFile(configFile, data, 'utf8', (err) => { fs.writeFile(configFile, data, 'utf8', (err) => {
if (err) throw err; if (err) throw err
console.log(`新建插件_:【 ${configFile} 】config修改完毕`) console.log(`新建插件_:【 ${configFile} 】config修改完毕`)
}) })
}) })
console.log(`新建插件_:【 ${pluginName} 】 成功。地址:${pluginPath}。请自行更改config.js`) console.log(`新建插件_:【 ${pluginName} 】 成功。地址:${pluginPath}。请自行更改config.js`)
}) })
.catch(err => { .catch((err) => {
console.error(err) console.error(err)
}) })
} }
let type = args[2] let type = args[2]
if (type === 'create') { if (type === 'create') {
createPlugins(args[3]) createPlugins(args[3])
} else if (type === 'package') { } else if (type === 'package') {
packagePlugins(args[3]) packagePlugins(args[3])
} else if (type === 'install') { } else if (type === 'install') {
installPlugins(args[3]) installPlugins(args[3])
} }