New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

uploader-ftp-queue

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uploader-ftp-queue

Uploader Queue Management for FTP Server

  • 1.4.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-75%
Maintainers
1
Weekly downloads
 
Created
Source

uploader-queue

Initialize uploader queue with kue

const kue = require('kue');
let queue = kue.createQueue()

/*Add your code snipped in sendEmail function using any email client*/
const sendEmail = (job, ctx, done) => {
   let data = job.data;
   /*
    data = {
     item:<fileName with filePath>
     err:<errorMessage>,
     title:<>
    }
   
   */
    setTimeout(function(){
        done();
    },1000)
};

/*Add your processing file code snippet according to your requirement*/
const processFile = (params, cb) => {

  /*
   params = {
    fileName:<>,
    filePath:<>,
    uploadType:'full/partial'
   }
  */
  if (!this.job) {
    this.job = {
      log() {
        console.log(arguments);
      }
    };
  }
  let i = 0;
  let intervalObject = setInterval(()=>{
    this.job.log(i++)
  },1000)
  setTimeout(function(){
    clearInterval(intervalObject)
  },10000)
};

const options = {
  queue,
  fileFormats: [".csv"], //.csv,.xml,.xlsx
  numberOfProcess: {
    brandManagerProcess: 1,//concurrency to monitor brand ftp server at a time for newly uploaded file
    catalogBatchProcess: 1, //number of file process at a time
    emailProcess: 2 // concurrency for sending email
  },
  brands: [
    {
      optId: "1",
      name: "Brand1",
      priority: "normal",//normal,high,medium
      // this used only when file format is xml to determine from which parent tag read the data
      xml: {
        parentTag: "stockFile.stockItem"
      },
      ftp: {
        host: "localhost",
        port: 21,
        user: "user",
        password: "password",
      },
      dir: {
        upload: "/path/to/upload/dir",
        enqueued: "/path/to/enqueued/dir",
        processing: "/path/to/processing/dir",
        error: "/path/to/error/dir",
        processed: "/path/to/processed/dir",
        ignore: "/path/to/ignore/dir",
        backup: "/path/to/backup/dir"
      }
    }
  ],
  cbemailfunction: sendEmail,
  cbuploader: processFile,
  filePath: __dirname
};

#initialize uploader queue
uploader(options)

How Uploader queue Management works?

  1. We’ve one scheduler , which will select one brand in sequence from list and add this brand to brandmanagerqueue

  2. For now, we’ve set only one processor for brandmanagerqueue . It’ll connect to ftp server & list down all the Catalog Files from upload dir for that brand and add these files to another queue catalogbatchqeue and before adding these file to queue ,first we move the file from upload dir to enqueued dir

  3. While adding file to the queue we can give priority to that file, So it’ll pick file to process according to priority.

  4. For now, we’ve set 4 processor for catalogbatchqeue means 4 file will process parallely.

  5. In catalogbatchqeue processor perform following things

     1. Move file from enqueued to processing
     2. Apply Seamless Processing to that file
     3. Pass this seamless file to Catalog Bash Script 
         
     4. After successfully  run Catalog Batch File , move seamless to processed dir and move the actual file to backup dir
    

Keywords

FAQs

Package last updated on 21 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc