that might do it

This commit is contained in:
reality 2013-08-21 15:18:08 +00:00
parent 2c988b0f77
commit 0efa8d0217

View File

@ -80,27 +80,28 @@ var imgur = function(dbot) {
dbot.db.imgur.totalHttpRequests += 1; dbot.db.imgur.totalHttpRequests += 1;
var image = request(testUrl, function(error, response, body) { var image = request(testUrl, function(error, response, body) {
// 492 is body.length of a removed image // 492 is body.length of a removed image
var img = gm(body); gm(body).size(function(err, val) {
if(!error && response.statusCode == 200 && body.length != 492 && if(!error && response.statusCode == 200 && body.length != 492 &&
img.height > 300 && img.width > 300) { val && val.height > 300 && val.width > 300) {
dbot.db.imgur.totalImages += 1; dbot.db.imgur.totalImages += 1;
var hash = crypto.createHash('md5').update(body).digest("hex"); var hash = crypto.createHash('md5').update(body).digest("hex");
if(_.has(dbot.modules, 'quotes')){ if(_.has(dbot.modules, 'quotes')){
// autoadd: {"abcdef": "facebookman"} // autoadd: {"abcdef": "facebookman"}
if(_.has(dbot.config.modules.imgur.autoadd,hash)){ if(_.has(dbot.config.modules.imgur.autoadd,hash)){
var category = dbot.config.imgur.autoadd[hash]; var category = dbot.config.imgur.autoadd[hash];
if (_.contains(category, testUrl)){ if (_.contains(category, testUrl)){
// there's probably less than 62^5 chance of this happening // there's probably less than 62^5 chance of this happening
} else { } else {
dbot.api.quotes.addQuote(category, testUrl, dbot.api.quotes.addQuote(category, testUrl,
dbot.config.name, function() { }); dbot.config.name, function() { });
}
} }
} }
callback(testUrl, testSlug, hash);
} else {
this.api.getRandomImage(callback);
} }
callback(testUrl, testSlug, hash); }.bind(this));
} else {
this.api.getRandomImage(callback);
}
}.bind(this)); }.bind(this));
}, },