dbot/modules/link/link.js

106 lines
3.3 KiB
JavaScript
Raw Normal View History

/**
* Module Name: Link
* Description: Stores recent channel links, with commands to retrieve
* information about links.
*/
2013-01-13 16:30:53 +01:00
var request = require('request'),
_ = require('underscore')._;
var link = function(dbot) {
2013-01-15 00:11:50 +01:00
this.urlRegex = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
this.links = {};
this.fetchTitle = function(event, link) {
2013-01-22 20:52:26 +01:00
request(link, function(error, response, body) {
if(!error && response.statusCode == 200) {
body = body.replace(/(\r\n|\n\r|\n)/gm, " ");
var title = body.valMatch(/<title>(.*)<\/title>/, 2);
if(title) {
event.reply(title[1]);
}
}
});
};
function outputComic(comicId,event){
var link = "http://xkcd.com/"+comicId+"info.0.json";
request(link, function(error, response, body) {
if (response.statusCode == "200") {
data = JSON.parse(body);
event.reply(dbot.t("xkcd",data));
} else {
event.reply(dbot.t("no-hits"));
}
});
}
var commands = {
'~title': function(event) {
2013-01-15 00:11:50 +01:00
var link = this.links[event.channel.name];
if(!_.isUndefined(event.params[1])) {
var urlMatches = event.params[1].match(this.urlRegex);
if(urlMatches !== null) {
link = urlMatches[0];
}
}
2013-01-15 00:11:50 +01:00
this.fetchTitle(event, link);
2013-01-22 20:52:26 +01:00
},
'~xkcd': function(event) {
var comicId = event.params[1];
if(comicId == "*"){
request("http://xkcd.com/info.0.json", function(error, response, body){
if (response.statusCode == "200") {
data = JSON.parse(body);
comicId = data.num;
comicId = Math.floor(Math.random() * comicId);
comicId++;
comicId = comicId + "/";
outputComic(comicId,event);
}
});
}else if(comicId){
comicId = comicId + "/";
outputComic(comicId,event);
} else {
comicId = "";
outputComic(comicId,event);
}
},
2013-01-22 20:52:26 +01:00
'~ud': function(event) {
2013-01-30 09:56:56 +01:00
var query = event.input[1];
var reqUrl = 'http://api.urbandictionary.com/v0/define?term=' + encodeURI(query);
2013-01-22 20:52:26 +01:00
request(reqUrl, function(error, response, body) {
2013-01-30 09:56:56 +01:00
try {
var result = JSON.parse(body);
if(_.has(result, 'result_type') && result.result_type != 'no_results') {
event.reply(query + ': ' + result.list[0].definition.split('\n')[0]);
} else {
event.reply(event.user + ': No definition found.');
}
} catch(err) { }
2013-01-22 20:52:26 +01:00
});
}
};
commands['~ud'].regex = [/~ud (.+)/, 2];
2013-01-15 00:11:50 +01:00
this.commands = commands;
2013-01-15 00:11:50 +01:00
this.listener = function(event) {
var urlMatches = event.message.match(this.urlRegex);
if(urlMatches !== null) {
this.links[event.channel.name] = urlMatches[0];
2012-12-28 00:18:41 +01:00
2013-01-15 00:11:50 +01:00
if(dbot.config.link.autoTitle == true) {
this.fetchTitle(event, urlMatches[0]);
}
2013-01-15 00:11:50 +01:00
}
}.bind(this);
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
2013-01-15 00:11:50 +01:00
return new link(dbot);
};