Node-FTP 上传文件时复制操作

Node-FTP duplicating operations upon uploading a file

因为有东西叫'callback hell'。这是我从服务器获取文件到我的 vps 电脑并上传它的唯一方法。过程很简单:

  1. 从 ftp 服务器下载一个 .json 文件
  2. 编辑电脑上的.json文件
  3. 上传 .json 文件并删除 pc 的副本。

但是我的问题是这样的:虽然它下载了一次,但它 return 的上传取决于我在 1 个会话期间命令它的次数(命令 #1,执行一次,命令 #2,执行两次,等等)。

我试图 运行 它作为命令,但被取消了。不得不求助于回调地狱 运行 代码几乎正确。触发器用于初始化命令,但命令和会话出错了。

((  //declaring my variables as parameters
    ftp=new (require('ftp'))(),
    fs=require('fs'),
    serverFolder='./Path/Of/Server/',
    localFolder='./Path/Of/Local/',
    file='some.json',
    {log}=console
)=>{
    //run server if its ready
    ftp.on('ready',()=>{

       //collect a list of files from the server folder
       ftp.list(serverFolder+file,(errList,list)=>
           errList|| typeof list === 'object' &&
           list.forEach($file=>

              //if the individual file matches, resume to download the file
              $file.name===file&&(
                 ftp.get(serverFolder+file,(errGet,stream)=>
                     errGet||(
                        log('files matched!  cdarry onto the operation...'),
                        stream.pipe(fs.createReadStream(localFolder+file)),
                        stream.once('close',()=>{

                            //check if the file has a proper size
                            fs.stat(localFolder+file,(errStat,stat)=>
                                errStat || stat.size === 0

                                //will destroy server connection if bytes = 0
                                ?(ftp.destroy(),log('the file has no value'))

                                //uploads if the file has a size, edits, and ships
                                :(editThisFile(),
                                    ftp.put(
                                       fs.createReadStream(localFolder+file),
                                       serverFolder+file,err=>err||(
                                          ftp.end(),log('process is complete!')
                                 ))
                                //editThisFile() is a place-holder editor
                                //edits by path, and object                                    
                            )
                        })
                    )
                 )
              )
           )
       );
    });
    ftp.connect({
       host:'localHost',
       password:'1Forrest1!',
       port:'21',
       keepalive:0,
       debug: console.log.bind(console)
    });
})()

主要问题是:由于某种原因,它会 return 一遍又一遍地作为 'carry over' 命令的副本。

编辑:尽管“编程风格”的优点不同于普通元。这一切都会导致同样的回调地狱问题。需要任何建议。 为了可读性,我帮助编辑了我的代码以减轻困难。 Better Readability version

ftp 模块 API 导致回调地狱。它也有一段时间没有维护并且有错误。尝试使用像 basic-ftp.

这样的承诺的模块

有了 promises,代码流变得更容易推理,并且错误不需要特定处理,除非您愿意。

const ftp = require('basic-ftp')
const fsp = require('fs').promises

async function updateFile(localFile, serverFile){
  const client = new ftp.Client()
  await client.access({
     host: 'localHost',
     password: '1Forrest1!',
  })
  await client.downloadTo(localFile, serverFile)
  const stat = await fsp.stat(localFile)
  if (stat.size === 0) throw new Error('File has no size')
  await editThisFile(localFile)
  await client.uploadFrom(localFile, serverFile)
}

const serverFolder = './Path/Of/Server'
const localFolder = './Path/Of/Local'
const file = 'some.json'
updateFile(localFolder + file, serverFolder + file).catch(console.error)