3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00
dbot/modules/imgur/imgur.js

38 lines
1.0 KiB
JavaScript
Raw Normal View History

/**
* Module Name: imgur
* Description: Various imgur functionality
*/
var _ = require('underscore')._,
request = require('request');
var imgur = function(dbot) {
this.api = {
'getRandomImage': function(callback) {
var testUrl = 'http://i.imgur.com/' +
Math.random().toString(36).substr(2,6) +
2013-04-10 22:08:04 +02:00
'.png';
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) {
callback(testUrl);
} else {
this.api.getRandomImage(callback);
}
}.bind(this));
}
};
this.commands = {
'~randomimgur': function(event) {
this.api.getRandomImage(function(link) {
event.reply(event.user + ': ' + link);
});
}
}
};
exports.fetch = function(dbot) {
return new imgur(dbot);
}