Here is a snippet of my code:
var processListing = function (directoryItems) {
console.log('foreach');
var itemsToDownload = [];
directoryItems.forEach(function (element, index, array) {
//Ignore directories
if (element.type === 'd') {
console.log('directory ' + element.name);
return;
}
//Ignore non zips
if (path.extname(element.name) !== '.zip') {
console.log('ignoring ' + element.name);
return;
}
//Download zip
itemsToDownload.push({
source: element.name,
destination: element.name
});
//aftpSystem.downloadFile(element.name, element.name);
});
console.log('after foreach');
return itemsToDownload;
};
var getFiles = function () {
console.log('got files');
return fs.readdirAsync(process.cwd() + "/zips/").then(function (files) {
return files.filter(function (filename) {
return path.extname(filename) === '.zip';
});
});
};
aFtpClient. //this has been promisified
listAsync(). //so calls methodAsync
then(processListing).
map(function (object) {
return processItem(object).then(function (processResult) {
return {
input: object,
result: processResult
};
});
}).
map(function (downloadItem) {
console.log('downloading files');
downloadItem.result.once('close', function () {
console.log('closed');
});
return downloadItem.result.pipe(fs.createWriteStream(process.cwd() + "/zips/" + downloadItem.input.destination));
}).
then(getFiles).
I'm trying to use promises to download items via FTP. At the moment it downloads the first file but then fails on subsequent files. I'm new to node but fairly confident that my second map function needs to return a promise however I have been unable to work out how after numerous attempts. I am using bluebird
for promises but can't see how to work with it and streams.
Could you point me in the correct direction?
Thanks
const fs = require('fs'); const http = require('http'); const download = (url, dest, cb) => { const file = fs. createWriteStream(dest); const request = http. get(url, (response) => { // check if response is success if (response. statusCode !==
The promise is resolved by calling resolve() if the promise is fulfilled, and rejected by calling reject() if it can't be fulfilled. Both resolve() and reject() takes one argument - boolean , string , number , array , or an object .
In Node. js, we can use the util. promisify() utility module to easily transform a standard function that receives a callback into a function that returns a promise.
I'm not sure where exactly you're stuck but pointing you in the general direction should suffice:
So what you need to do is:
Promisifying can be done in several ways:
By the promise library. Bluebird contains a really clever promisifier using dynamic code generation that relies on the JIT - it is very fast - but it's built for the NodeJS "nodeback" case. (i.e. error passed as first argument of the callback.)
Using the Deferred
object. Generally that way is more error prone.
Using Promise.method
in Bluebird, which is great for promisifying APIs easily but is not really our case here.
Using the Promise
constructor. This is what we'll do here. It's also standards complaint.
Generally, the interface of the promise constructor is:
new Promise(function(resolve,reject){
resolve(); // this resolves the promise
reject(); // this rejets the promise
});
Note, promisifying event emitters only works well when they fire on a finish event and do so once. Promises are one time, once they settle they can't change state. Events can fire multiple times. It's perfectly fine to promisify things like "load"
events or "finished"
events - but don't promisify things that repeat multiple times.
Your second map should be something like:
map(function (downloadItem) {
console.log('downloading files');
downloadItem.result.once('close', function () {
console.log('closed');
});
var pipeAction = downloadItem.result.pipe(fs.createWriteStream(process.cwd() + "/zips/" + downloadItem.input.destination));
return new Promise(function(resolve,reject){
pipeAction.on("end",function(){ //waits for data to be consumed
// pipe has ended here, so we resolve the promise
resolve();
});
});
}).
You should generally extract promisifications into dedicated methods. For example, the above could be a promisifyPipe
or similar.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With