forked from GitHub/dbot
139 lines
4.8 KiB
JavaScript
139 lines
4.8 KiB
JavaScript
/**
|
|
* Module Name: Link
|
|
* Description: Stores recent channel links, with commands to retrieve
|
|
* information about links.
|
|
*/
|
|
var request = require('request'),
|
|
_ = require('underscore')._,
|
|
ent = require('ent');
|
|
|
|
var link = function(dbot) {
|
|
this.urlRegex = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
|
|
this.links = {};
|
|
this.handlers = [];
|
|
|
|
this.api = {
|
|
'addHandler': function(name, regex, handler) {
|
|
this.handlers.push({
|
|
'name': name,
|
|
'regex': regex,
|
|
'callback': handler
|
|
});
|
|
},
|
|
|
|
'getTitle': function(link, callback) {
|
|
var limit = 1000000,
|
|
size = 0,
|
|
page = request(link.replace('https', 'http'), 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 && title.length < 140) {
|
|
callback(ent.decode(title[1]).trim());
|
|
}
|
|
}
|
|
});
|
|
|
|
page.on('data', function(chunk) {
|
|
size += chunk.length;
|
|
if(size > limit) {
|
|
page.abort();
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
var commands = {
|
|
'~title': function(event) {
|
|
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];
|
|
}
|
|
}
|
|
this.api.getTitle(link, function(title) {
|
|
event.reply(dbot.t('link', { 'link': title} ));
|
|
});
|
|
},
|
|
|
|
'~xkcd': function(event) {
|
|
var comicId = event.params[1] || "";
|
|
|
|
if(comicId == "*") {
|
|
request("http://xkcd.com/info.0.json", function(error, response, body){
|
|
try {
|
|
if(response.statusCode == "200") {
|
|
data = JSON.parse(body);
|
|
event.params[1] = (Math.floor(Math.random() * data.num) + 1);
|
|
dbot.commands['~xkcd'](event);
|
|
}
|
|
} catch(err) { };
|
|
});
|
|
} else {
|
|
if(comicId !== "") {
|
|
comicId = comicId + "/";
|
|
}
|
|
|
|
var link = "http://xkcd.com/"+comicId+"info.0.json";
|
|
request(link, function(error, response, body) {
|
|
try {
|
|
if (response.statusCode == "200") {
|
|
data = JSON.parse(body);
|
|
event.reply(dbot.t("xkcd", data));
|
|
} else {
|
|
event.reply(dbot.t("no-hits"));
|
|
}
|
|
} catch(err) { };
|
|
});
|
|
}
|
|
|
|
},
|
|
|
|
'~ud': function(event) {
|
|
var query = event.input[1];
|
|
var reqUrl = 'http://api.urbandictionary.com/v0/define?term=' + encodeURI(query);
|
|
|
|
request(reqUrl, function(error, response, body) {
|
|
try {
|
|
var result = JSON.parse(body);
|
|
if(_.has(result, 'result_type') && result.result_type != 'no_results') {
|
|
event.reply(result.list[0].word + ': ' + result.list[0].definition.split('\n')[0]);
|
|
} else {
|
|
event.reply(event.user + ': No definition found.');
|
|
}
|
|
} catch(err) { }
|
|
});
|
|
}
|
|
};
|
|
commands['~ud'].regex = [/~ud (.+)/, 2];
|
|
this.commands = commands;
|
|
|
|
this.listener = function(event) {
|
|
var urlMatches = event.message.match(this.urlRegex);
|
|
if(urlMatches !== null) {
|
|
this.links[event.channel.name] = urlMatches[0];
|
|
if(dbot.config.link.autoTitle == true) {
|
|
var handlerFound = false;
|
|
for(var i=0;i<this.handlers.length;i++) {
|
|
var matches = this.handlers[i].regex.exec(urlMatches[0]);
|
|
if(matches) {
|
|
this.handlers[i].callback(event, matches, this.handlers[i].name);
|
|
handlerFound = true; break;
|
|
}
|
|
}
|
|
if(!handlerFound) {
|
|
this.api.getTitle(urlMatches[0], function(title) {
|
|
event.reply(title);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}.bind(this);
|
|
this.on = 'PRIVMSG';
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return new link(dbot);
|
|
};
|