forked from GitHub/dbot
show info about ~ri images [#350]
This commit is contained in:
parent
270ae138bf
commit
a9acaeaebd
@ -14,13 +14,15 @@ var imgur = function(dbot) {
|
|||||||
return len ? chars.charAt(~~(Math.random()*chars.length)) + random(len-1) : "";
|
return len ? chars.charAt(~~(Math.random()*chars.length)) + random(len-1) : "";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
var ext = [ 'gif', 'png', 'jpg' ];
|
||||||
|
var testSlug = random(5);
|
||||||
var testUrl = 'http://i.imgur.com/' +
|
var testUrl = 'http://i.imgur.com/' +
|
||||||
random(5) +
|
testSlug +
|
||||||
'.png';
|
'.' + ext[_.random(0, ext.length - 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
|
||||||
if(!error && response.statusCode == 200 && body.length != 492) {
|
if(!error && response.statusCode == 200 && body.length != 492) {
|
||||||
callback(testUrl);
|
callback(testUrl, testSlug);
|
||||||
} else {
|
} else {
|
||||||
this.api.getRandomImage(callback);
|
this.api.getRandomImage(callback);
|
||||||
}
|
}
|
||||||
@ -30,6 +32,7 @@ var imgur = function(dbot) {
|
|||||||
'getImageInfo': function(slug, callback) {
|
'getImageInfo': function(slug, callback) {
|
||||||
request.get({
|
request.get({
|
||||||
'url': 'https://api.imgur.com/3/image/' + slug + '.json',
|
'url': 'https://api.imgur.com/3/image/' + slug + '.json',
|
||||||
|
'json': true,
|
||||||
'headers': {
|
'headers': {
|
||||||
'Authorization': 'Client-ID 86fd3a8da348b65'
|
'Authorization': 'Client-ID 86fd3a8da348b65'
|
||||||
}
|
}
|
||||||
@ -41,9 +44,26 @@ var imgur = function(dbot) {
|
|||||||
|
|
||||||
this.commands = {
|
this.commands = {
|
||||||
'~ri': function(event) {
|
'~ri': function(event) {
|
||||||
this.api.getRandomImage(function(link) {
|
this.api.getRandomImage(function(link, slug) {
|
||||||
event.reply(event.user + ': (' + dbot.t('nsfw') + ') ' + link);
|
this.api.getImageInfo(slug, function(imgData) {
|
||||||
});
|
imgData = imgData.data;
|
||||||
|
var info = '[';
|
||||||
|
if(imgData.title) {
|
||||||
|
info += imgData.title + ' is ';
|
||||||
|
} else {
|
||||||
|
info += 'no-title is ';
|
||||||
|
}
|
||||||
|
if(imgData.animated) {
|
||||||
|
info += 'an animated ' + imgData.type.split('/')[1] + ' with ';
|
||||||
|
} else {
|
||||||
|
info += 'a non-animated ' + imgData.type.split('/')[1] + ' with ';
|
||||||
|
}
|
||||||
|
info += imgData.views + ' views.]';
|
||||||
|
|
||||||
|
event.reply(event.user + ': ' + link + ' ' + info);
|
||||||
|
});
|
||||||
|
|
||||||
|
}.bind(this));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user