From 27987a3e4e4360d59d18c1b16608b1dcaa109189 Mon Sep 17 00:00:00 2001 From: hawk86104 Date: Tue, 14 May 2024 15:57:04 +0800 Subject: [PATCH] no message --- pluginMaker/index.js | 250 +++++++++--------- ...š„æ’件包放在这里 => 请把下载的æ’件包放在这里。} | 0 ...‡ªè¡Œæ‰“包的æ’件包 => 这里存放自行打包的æ’件包。} | 0 3 files changed, 126 insertions(+), 124 deletions(-) rename pluginMaker/install/{请把下载的æ’件包放在这里 => 请把下载的æ’件包放在这里。} (100%) rename pluginMaker/packages/{这里存放自行打包的æ’件包 => 这里存放自行打包的æ’件包。} (100%) diff --git a/pluginMaker/index.js b/pluginMaker/index.js index 49231609..87fce391 100644 --- a/pluginMaker/index.js +++ b/pluginMaker/index.js @@ -1,157 +1,159 @@ /* - * @Description: + * @Description: * @Version: 1.668 * @Autor: 地虎é™å¤©é¾™ * @Date: 2024-01-08 09:01:48 * @LastEditors: 地虎é™å¤©é¾™ - * @LastEditTime: 2024-01-08 15:54:14 + * @LastEditTime: 2024-05-14 15:56:00 */ const compressing = require('compressing') const fs = require('fs') var path = require('path') // ç¤ºä¾‹ä»£ç  -const args = process.argv; // 包å«äº†æ‰€æœ‰çš„命令行å‚数,第一个元素为 node 路径,第二个元素为脚本文件å +const args = process.argv // 包å«äº†æ‰€æœ‰çš„命令行å‚数,第一个元素为 node 路径,第二个元素为脚本文件å if (!args[2]) { - console.error('ã€ç±»åž‹:creatã€packageã€install】 å‚数错误') - return + console.error('ã€ç±»åž‹:creatã€packageã€install】 å‚数错误') + return } -function fileExistsWithCaseSync (filepath) { - var dir = path.dirname(filepath) - if (dir === path.dirname(dir)) { - return true - } - var filenames = fs.readdirSync(dir) - if (filenames.indexOf(path.basename(filepath)) === -1) { - return false - } - return fileExistsWithCaseSync(dir) +function fileExistsWithCaseSync(filepath) { + var dir = path.dirname(filepath) + if (dir === path.dirname(dir)) { + return true + } + var filenames = fs.readdirSync(dir) + if (filenames.indexOf(path.basename(filepath)) === -1) { + return false + } + return fileExistsWithCaseSync(dir) } const packagePlugins = (pluginName) => { - if (!pluginName) { - console.error('打包æ’件_:ã€æ’件å错误】 ') - return - } - const pluginPath = './src/plugins/' + pluginName - // 检查是å¦å­˜åœ¨æ­¤æ’件 - if (!fileExistsWithCaseSync(pluginPath)) { - console.error(`打包æ’件_:ä¸å­˜åœ¨å为:〠${pluginName} 】的æ’件。地å€ï¼š${pluginPath}`) - return - } - const packagePath = `./pluginMaker/packages/${pluginName}.zip` - // compressing.zip.compressDir(pluginPath, packagePath, { ignoreBase: false }) - // .then(() => { - // console.log(`打包æ’件_:〠${pluginName} 】 æˆåŠŸã€‚地å€ï¼š${packagePath}`) - // }) - // .catch(err => { - // console.error(err) - // }) - const zipStream = new compressing.zip.Stream() - zipStream.addEntry(pluginPath, { relativePath: pluginPath, ignoreBase: true }) - zipStream.addEntry(`./public/plugins/${pluginName}`, { relativePath: `./public/plugins/${pluginName}`, ignoreBase: true }) - const destStream = fs.createWriteStream(packagePath) - zipStream.pipe(destStream) - .on('finish', () => { - console.log(`打包æ’件_:〠${pluginName} 】 æˆåŠŸã€‚地å€ï¼š${packagePath}`) - }) - .on('error', (err) => { - console.error(err) - }); + if (!pluginName) { + console.error('打包æ’件_:ã€æ’件å错误】 ') + return + } + const pluginPath = './src/plugins/' + pluginName + // 检查是å¦å­˜åœ¨æ­¤æ’件 + if (!fileExistsWithCaseSync(pluginPath)) { + console.error(`打包æ’件_:ä¸å­˜åœ¨å为:〠${pluginName} 】的æ’件。地å€ï¼š${pluginPath}`) + return + } + const packagePath = `./pluginMaker/packages/${pluginName}.zip` + // compressing.zip.compressDir(pluginPath, packagePath, { ignoreBase: false }) + // .then(() => { + // console.log(`打包æ’件_:〠${pluginName} 】 æˆåŠŸã€‚ 地å€ï¼š${packagePath}`) + // }) + // .catch(err => { + // console.error(err) + // }) + const zipStream = new compressing.zip.Stream() + zipStream.addEntry(pluginPath, { relativePath: pluginPath, ignoreBase: true }) + zipStream.addEntry(`./public/plugins/${pluginName}`, { relativePath: `./public/plugins/${pluginName}`, ignoreBase: true }) + const destStream = fs.createWriteStream(packagePath) + zipStream + .pipe(destStream) + .on('finish', () => { + console.log(`打包æ’件_:〠${pluginName} 】 æˆåŠŸã€‚地å€ï¼š${packagePath}`) + }) + .on('error', (err) => { + console.error(err) + }) } const installPlugins = (pluginName) => { - if (!pluginName) { - console.error('安装æ’件_:ã€æ’件å错误】 ') - return - } - // 检查是å¦å­˜åœ¨æ­¤æ’件包 - const packagePath = `./pluginMaker/install/${pluginName}.zip` - if (!fileExistsWithCaseSync(packagePath)) { - console.error(`安装æ’件_:ä¸å­˜åœ¨å为:〠${pluginName} 】的æ’件包。地å€ï¼š${packagePath}`) - return - } - const pluginPath = './src/plugins/' + pluginName - // 检查是å¦å­˜åœ¨æ­¤æ’件目录 - if (fileExistsWithCaseSync(pluginPath)) { - console.error(`安装æ’件_:å·²ç»å­˜åœ¨å为:〠${pluginName} 】的æ’件。目录地å€ä¸ºï¼š${pluginPath}。 如若需è¦å®‰è£…请备份和删除目录`) - return - } - // 解压æ’件 到 目录 - compressing.zip.uncompress(packagePath, './') - .then(() => { - console.log(`安装æ’件_:〠${pluginName} 】 æˆåŠŸã€‚地å€ï¼š${pluginPath}。安装文件包请自行删除。`) - }) - .catch(err => { - console.error(err) - }) + if (!pluginName) { + console.error('安装æ’件_:ã€æ’件å错误】 ') + return + } + // 检查是å¦å­˜åœ¨æ­¤æ’件包 + const packagePath = `./pluginMaker/install/${pluginName}.zip` + if (!fileExistsWithCaseSync(packagePath)) { + console.error(`安装æ’件_:ä¸å­˜åœ¨å为:〠${pluginName} 】的æ’件包。地å€ï¼š${packagePath}`) + return + } + const pluginPath = './src/plugins/' + pluginName + // 检查是å¦å­˜åœ¨æ­¤æ’件目录 + if (fileExistsWithCaseSync(pluginPath)) { + console.error(`安装æ’件_:å·²ç»å­˜åœ¨å为:〠${pluginName} 】的æ’件。目录地å€ä¸ºï¼š${pluginPath}。 如若需è¦å®‰è£…请备份和删除目录`) + return + } + // 解压æ’件 到 目录 + compressing.zip + .uncompress(packagePath, './') + .then(() => { + console.log(`安装æ’件_:〠${pluginName} 】 æˆåŠŸã€‚地å€ï¼š${pluginPath}。安装文件包请自行删除。`) + }) + .catch((err) => { + console.error(err) + }) } const createPlugins = (pluginName) => { - if (!pluginName) { - console.error('新建æ’件_:ã€æ’件å错误】 ') - return - } - const pluginPath = './src/plugins/' + pluginName - // 检查是å¦å­˜åœ¨æ­¤æ’件目录 - if (fileExistsWithCaseSync(pluginPath)) { - console.error(`新建æ’件_:å·²ç»å­˜åœ¨å为:〠${pluginName} 】的æ’件。目录地å€ä¸ºï¼š${pluginPath}。 请å–其他的åå­—`) - return - } + if (!pluginName) { + console.error('新建æ’件_:ã€æ’件å错误】 ') + return + } + const pluginPath = './src/plugins/' + pluginName + // 检查是å¦å­˜åœ¨æ­¤æ’件目录 + if (fileExistsWithCaseSync(pluginPath)) { + console.error(`新建æ’件_:å·²ç»å­˜åœ¨å为:〠${pluginName} 】的æ’件。目录地å€ä¸ºï¼š${pluginPath}。 请å–其他的åå­—`) + return + } - // 创建目录 - const publicPath = `./public/plugins/${pluginName}/preview` - fs.mkdir(publicPath, { recursive: true }, (err) => { - if (err) throw err - console.log(`新建æ’件_:é™æ€èµ„æºç›®å½•å·²åˆ›å»º:〠${publicPath} 】`) - }) + // 创建目录 + const publicPath = `./public/plugins/${pluginName}/preview` + fs.mkdir(publicPath, { recursive: true }, (err) => { + if (err) throw err + console.log(`新建æ’件_:é™æ€èµ„æºç›®å½•å·²åˆ›å»º:〠${publicPath} 】`) + }) - // 解压对应的模版代ç åˆ°å¯¹åº”的目录 - compressing.zip.uncompress('./pluginMaker/template.zip', pluginPath) - .then(() => { - // è¦æ›¿æ¢çš„字符åŠå…¶æ›¿æ¢åŽçš„内容 - const configFile = pluginPath + '/config.js' + // 解压对应的模版代ç åˆ°å¯¹åº”的目录 + compressing.zip + .uncompress('./pluginMaker/template.zip', pluginPath) + .then(() => { + // è¦æ›¿æ¢çš„字符åŠå…¶æ›¿æ¢åŽçš„内容 + const configFile = pluginPath + '/config.js' - // 获得当å‰æ—¥æœŸ - const currentDate = new Date() - const year = currentDate.getFullYear()// 获å–年份 - const month = String(currentDate.getMonth() + 1).padStart(2, '0') // 获å–月份(注æ„月份是从 0 开始的,需è¦åŠ  1) - const day = String(currentDate.getDate()).padStart(2, '0') // 获å–日期 - const formattedDate = `${year}-${month}-${day}` + // 获得当å‰æ—¥æœŸ + const currentDate = new Date() + const year = currentDate.getFullYear() // 获å–年份 + const month = String(currentDate.getMonth() + 1).padStart(2, '0') // 获å–月份(注æ„月份是从 0 开始的,需è¦åŠ  1) + const day = String(currentDate.getDate()).padStart(2, '0') // 获å–日期 + const formattedDate = `${year}-${month}-${day}` - const replaceCharacters = { - 'template': pluginName, - '2024-01-01': formattedDate, - } - // 读å–原始文件内容 - fs.readFile(configFile, 'utf8', (err, data) => { - if (err) throw err; - // é历需è¦æ›¿æ¢çš„字符列表 - for (let oldChar in replaceCharacters) { - const newChar = replaceCharacters[oldChar] - // 在数æ®ä¸­æŸ¥æ‰¾å¹¶æ›¿æ¢æŒ‡å®šå­—符 - data = data.replace(new RegExp(oldChar, 'g'), newChar) - } - // 将修改åŽçš„内容写入新文件 - fs.writeFile(configFile, data, 'utf8', (err) => { - if (err) throw err; - console.log(`新建æ’件_:〠${configFile} 】config修改完毕`) - }) - }) + const replaceCharacters = { + template: pluginName, + '2024-01-01': formattedDate, + } + // 读å–原始文件内容 + fs.readFile(configFile, 'utf8', (err, data) => { + if (err) throw err + // é历需è¦æ›¿æ¢çš„字符列表 + for (let oldChar in replaceCharacters) { + const newChar = replaceCharacters[oldChar] + // 在数æ®ä¸­æŸ¥æ‰¾å¹¶æ›¿æ¢æŒ‡å®šå­—符 + data = data.replace(new RegExp(oldChar, 'g'), newChar) + } + // 将修改åŽçš„内容写入新文件 + fs.writeFile(configFile, data, 'utf8', (err) => { + if (err) throw err + console.log(`新建æ’件_:〠${configFile} 】config修改完毕`) + }) + }) - console.log(`新建æ’件_:〠${pluginName} 】 æˆåŠŸã€‚地å€ï¼š${pluginPath}。请自行更改config.js`) - }) - .catch(err => { - console.error(err) - }) + console.log(`新建æ’件_:〠${pluginName} 】 æˆåŠŸã€‚地å€ï¼š${pluginPath}。请自行更改config.js`) + }) + .catch((err) => { + console.error(err) + }) } - let type = args[2] if (type === 'create') { - createPlugins(args[3]) + createPlugins(args[3]) } else if (type === 'package') { - packagePlugins(args[3]) + packagePlugins(args[3]) } else if (type === 'install') { - installPlugins(args[3]) -} \ No newline at end of file + installPlugins(args[3]) +} diff --git a/pluginMaker/install/请把下载的æ’件包放在这里 b/pluginMaker/install/请把下载的æ’件包放在这里。 similarity index 100% rename from pluginMaker/install/请把下载的æ’件包放在这里 rename to pluginMaker/install/请把下载的æ’件包放在这里。 diff --git a/pluginMaker/packages/这里存放自行打包的æ’件包 b/pluginMaker/packages/这里存放自行打包的æ’件包。 similarity index 100% rename from pluginMaker/packages/这里存放自行打包的æ’件包 rename to pluginMaker/packages/这里存放自行打包的æ’件包。