forked from GitHub/dbot
added random xkcd function using "*" as the param
Will get a random comic from http://dynamic.xkcd.com/random/comic/ Needs testing
This commit is contained in:
parent
eb7a958352
commit
73e9b21824
@ -41,6 +41,13 @@ var link = function(dbot) {
|
|||||||
comicId = "";
|
comicId = "";
|
||||||
}
|
}
|
||||||
var link = "http://xkcd.com/"+comicId+"info.0.json";
|
var link = "http://xkcd.com/"+comicId+"info.0.json";
|
||||||
|
|
||||||
|
if(comicId == "*"){
|
||||||
|
link = "http://dynamic.xkcd.com/random/comic";
|
||||||
|
request(link, function(error, response, body)
|
||||||
|
link = response.location + "info.0.json";
|
||||||
|
}
|
||||||
|
|
||||||
request(link, function(error, response, body) {
|
request(link, function(error, response, body) {
|
||||||
if (response.statusCode == "200") {
|
if (response.statusCode == "200") {
|
||||||
data = JSON.parse(body);
|
data = JSON.parse(body);
|
||||||
|
Loading…
Reference in New Issue
Block a user