dbot/modules/imgur/imgur.js

116 lines
4.4 KiB
JavaScript
Raw Normal View History

/**
* Module Name: imgur
* Description: Various imgur functionality
*/
var _ = require('underscore')._,
request = require('request'),
crypto = require('crypto');
var imgur = function(dbot) {
2013-04-13 02:42:20 +02:00
this.internalAPI = {
'infoString': function(imgData) {
info = '';
2013-04-13 02:42:20 +02:00
if(imgData && _.has(imgData, 'data')) {
imgData = imgData.data;
if(imgData.title) {
info += imgData.title + ' - ';
2013-04-13 02:42:20 +02:00
}
2013-04-13 20:37:47 +02:00
if(imgData.type) {
if(imgData.animated) {
info += 'an animated ' + imgData.type.split('/')[1] + ' with ';
} else {
info += 'a ' + imgData.type.split('/')[1] + ' with ';
2013-04-13 20:37:47 +02:00
}
2013-04-13 02:42:20 +02:00
} else {
2013-04-13 20:37:47 +02:00
info += 'an image with ';
2013-04-13 02:42:20 +02:00
}
info += imgData.views + ' views (';
info += imgData.width + 'x' + imgData.height + ')';
2013-04-13 02:42:20 +02:00
}
return info;
}.bind(this)
2013-04-13 02:42:20 +02:00
};
this.api = {
'getRandomImage': function(callback) {
var random = function(len) {
var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
return len ? chars.charAt(~~(Math.random()*chars.length)) + random(len-1) : "";
};
2013-04-13 01:44:19 +02:00
var ext = [ 'gif', 'png', 'jpg' ];
var testSlug = random(5);
var testUrl = 'http://i.imgur.com/' +
2013-04-13 01:44:19 +02:00
testSlug +
'.' + ext[_.random(0, ext.length - 1)];
2013-04-22 16:38:03 +02:00
dbot.db.imgur.totalHttpRequests += 1;
var image = request(testUrl, function(error, response, body) {
2013-04-10 22:05:57 +02:00
// 492 is body.length of a removed image
if(!error && response.statusCode == 200 && body.length != 492) {
2013-04-22 16:38:03 +02:00
dbot.db.imgur.totalImages += 1;
var hash = crypto.createHash('md5').update(body).digest("hex");
callback(testUrl, testSlug,hash);
} else {
this.api.getRandomImage(callback);
}
}.bind(this));
},
'getImageInfoString': function(slug, callback) {
this.api.getImageInfo(slug, function(imgData) {
callback(this.internalAPI.infoString(imgData));
}.bind(this));
},
'getImageInfo': function(slug, callback) {
request.get({
'url': 'https://api.imgur.com/3/image/' + slug + '.json',
2013-04-13 01:44:19 +02:00
'json': true,
'headers': {
'Authorization': 'Client-ID ' + dbot.config.imgur.apikey
}
}, function(err, response, body) {
2013-04-22 16:38:03 +02:00
dbot.db.imgur.totalApiRequests += 1;
callback(body);
}.bind(this));
}
};
2013-04-14 19:21:24 +02:00
this.api['getRandomImage'].external = true;
this.api['getRandomImage'].extMap = [ 'callback' ];
this.api['getImageInfoString'].external = true;
this.api['getImageInfoString'].extMap = [ 'slug', 'callback' ];
this.commands = {
2013-04-10 22:36:26 +02:00
'~ri': function(event) {
2013-04-13 01:44:19 +02:00
this.api.getRandomImage(function(link, slug) {
this.api.getImageInfo(slug, function(imgData) {
2013-04-13 02:42:20 +02:00
var info = this.internalAPI.infoString(imgData);
event.reply(event.user + ': ' + link + ' [' + info + ']');
2013-04-13 02:42:20 +02:00
}.bind(this));
2013-04-13 01:44:19 +02:00
}.bind(this));
}
}
this.onLoad = function() {
2013-04-13 02:42:20 +02:00
var imgurHandler = function(event, matches, name) {
if(matches[1]) {
2013-04-13 02:42:20 +02:00
this.api.getImageInfo(matches[1], function(imgData) {
var info = this.internalAPI.infoString(imgData);
if(info) event.reply('[' + info + ']');
2013-04-13 02:42:20 +02:00
}.bind(this));
}
}.bind(this);
dbot.api.link.addHandler(this.name, /https?:\/\/i\.imgur\.com\/([a-zA-Z0-9]+)\.([jpg|png|gif])/, imgurHandler);
dbot.api.link.addHandler(this.name, /https?:\/\/imgur\.com\/([a-zA-Z0-9]+)/, imgurHandler);
if(!_.has(dbot.db.imgur, 'totalHttpRequests')) dbot.db.imgur.totalHttpRequests = 0;
if(!_.has(dbot.db.imgur, 'totalApiRequests')) dbot.db.imgur.totalApiRequests = 0;
if(!_.has(dbot.db.imgur, 'totalImages')) dbot.db.imgur.totalImages = 0;
}.bind(this);
};
exports.fetch = function(dbot) {
return new imgur(dbot);
}