Skip to content

Instantly share code, notes, and snippets.

@alexrqs
Created April 29, 2016 21:57
Show Gist options
  • Save alexrqs/febb5f5cb745ae08ccc25a2f4823cb40 to your computer and use it in GitHub Desktop.
Save alexrqs/febb5f5cb745ae08ccc25a2f4823cb40 to your computer and use it in GitHub Desktop.
var fs = require('fs');
var request = require('request');
var mkdirp = require('mkdirp');
var lineReader = require('readline').createInterface({
input: fs.createReadStream('server.log')
});
var download = function(uri, filename, callback){
request.head(uri, function(err, res, body){
console.log('content-type:', res.headers['content-type']);
console.log('content-length:', res.headers['content-length']);
request(uri).pipe(fs.createWriteStream(filename)).on('close', callback);
});
};
lineReader.on('line', function (line) {
var imgregexp, imgpath, imageName;
if (line.match(/^IOError.*yourshot.*\.jpg'$/)) {
imgregexp = /(media.*)(yourshot.*\.jpg)/.exec(line)
console.log(line);
imgpath = imgregexp[1];
imageName = imgregexp[2];
mkdirp( imgpath, function (err) {
if (err) console.error(err)
else console.log('pow!')
});
download('http://yourshot-uat.nationalgeographic.com/' + imgpath + imageName, imgpath + imageName, function(){
console.log('done');
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment