溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

node.js自動(dòng)上傳ftp的腳本分享

發(fā)布時(shí)間:2020-09-23 21:43:45 來(lái)源:腳本之家 閱讀:469 作者:東勝 欄目:web開(kāi)發(fā)

起因

剛加入一個(gè)小組的項(xiàng)目開(kāi)發(fā),開(kāi)發(fā)環(huán)境是基于node環(huán)境,通過(guò)webpack打包構(gòu)建代碼,然后上傳sftp,在瀏覽器測(cè)試。這種開(kāi)發(fā)模式無(wú)可厚非,但是每次修改源代碼,然后build,然后upload,不勝其煩。之前項(xiàng)目中有過(guò) gulp-sftp任務(wù)腳本,然而并不是生效。于是自力更生,另謀他法,搞一個(gè)自動(dòng)上傳sftp的服務(wù)腳本。

設(shè)想

因?yàn)榛趙ebpack,所以直接啟動(dòng)webpack編譯的watch監(jiān)聽(tīng)即可,在watch回調(diào)里執(zhí)行stfp的上傳,上傳去npm社區(qū)找一個(gè)sftp的客戶(hù)端插件

實(shí)現(xiàn)

使用了插件ssh3-sftp-client,文檔有使用說(shuō)明和api

寫(xiě)書(shū)寫(xiě)了一個(gè) sftp 模塊,連接完,直接導(dǎo)出

const Client = require('ssh3-sftp-client');
const fs = require('fs');

const sftp = new Client();
sftp
 .connect({
 host: '0.0.0.0', // ftp服務(wù)器ip地址
 port: '22', // ftp服務(wù)器port
 username: 'yourname', // 你的登錄用戶(hù)名
 password: 'yourpass', // 你的密碼
 privateKey: fs.readFileSync('/Users/yourname/.ssh/id_rsa'), // 私鑰
 passphrase: 'yourpass', // 私鑰密碼
 })
 .then(() => {
 console.log('ftp文件服務(wù)器連接成功');
 })
 .catch(err => {
 console.log(err, 'catch error');
 });

module.exports = sftp;

然后在webpack的watch里進(jìn)行 上傳文件即可,關(guān)于上傳文件,圖片的等類(lèi)型需要使用Buffer類(lèi)型上傳,做一個(gè)特殊處理

const path = require('path');
const fs = require('fs');
const yargs = require('yargs');
const webpack = require('webpack');
const webpackConfig = require('./webpack.prod.config');
const sftp = require('./sftp');

const user = yargs.argv.user || '';

console.log(user);

const staticFilesPath = {
 js: {
 local: path.resolve(__dirname, '../dist/js'),
 remote: `/upload_code/${user}/static/mobile/js/dist`,
 },
 css: {
 local: path.resolve(__dirname, '../dist/css'),
 remote: `/upload_code/${user}/static/mobile/css/`,
 },
 img: {
 local: path.resolve(__dirname, '../dist/images'),
 remote: `/upload_code/${user}/static/mobile/images/`,
 },
};

let isFirstBuild = true;

const compiler = webpack(webpackConfig);
const watching = compiler.watch(
 {
 ignored: /node_modules/,
 aggregateTimeout: 100,
 poll: 1000,
 },
 (err, stats) => {
 if (err || stats.hasErrors()) {
  console.log(err);
 }
 console.log('編譯成功!');
 if (isFirstBuild) {
  isFirstBuild = false;
  return;
 }
 console.log('正在上傳...');
 uploadFile()
  .then(() => {
  console.log('------所有文件上傳完成!-------\n');
  })
  .catch(() => {
  console.log('------上傳失敗,請(qǐng)檢查!-------\n');
  });
 }
);
/**
* 處理文件路徑,循環(huán)所有文件,如果是圖片需要讀取成Buffer類(lèi)型
**/
function handleFilePath(obj, type) {
 const { local, remote } = obj;
 const files = fs.readdirSync(local);
 return files.map(file => {
 const _lp = `${local}/${file}`;
 return {
  type: type,
  file: file,
  localPath: type !== 'img' ? _lp : fs.readFileSync(_lp),
  remotePath: `${remote}/${file}`,
 };
 });
}
/**
* 上傳文件
**/
function uploadFile() {
 let files = [];

 Object.keys(staticFilesPath).forEach(key => {
 files = files.concat(handleFilePath(staticFilesPath[key], key));
 });

 const tasks = files.map(item => {
 return new Promise((resolve, reject) => {
  sftp
  .put(item.localPath, item.remotePath)
  .then(() => {
   console.log(`${item.file}上傳完成`);
   resolve();
  })
  .catch(err => {
   console.log(`${item.file}上傳失敗`);
   reject();
  });
 });
 });

 return Promise.all(tasks);
}

注意點(diǎn):

  • 連接sftp服務(wù)器,推薦使用 私鑰文件連接,使用password出錯(cuò)可能性比較大
  • 上傳文件部分,目前不支持上傳一個(gè)目錄,所以需要循環(huán)處理文件
  • 上傳文件部分,容易出錯(cuò),一定要保證遠(yuǎn)端服務(wù)器存在對(duì)應(yīng)目錄,目前插件沒(méi)有自動(dòng)創(chuàng)建目錄的機(jī)制

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI