3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 12:59:34 +01:00
dbot/modules/link/link.js

59 lines
1.6 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) {
var urlRegex = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
var links = {};
var fetchTitle = function(event, link) {
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]);
}
}
});
};
var commands = {
'~title': function(event) {
var link = links[event.channel.name];
2013-01-13 16:30:53 +01:00
if(_.isUndefined(event.params[1])) {
var urlMatches = event.params[1].match(urlRegex);
if(urlMatches !== null) {
link = urlMatches[0];
}
}
fetchTitle(event, link);
}
};
return {
'name': 'link',
'ignorable': true,
'commands': commands,
'listener': function(event) {
var urlMatches = event.message.match(urlRegex);
if(urlMatches !== null) {
links[event.channel.name] = urlMatches[0];
2012-12-28 00:18:41 +01:00
if(dbot.config.link.autoTitle == true) {
fetchTitle(event, urlMatches[0]);
2012-12-28 00:18:41 +01:00
}
}
},
'on': 'PRIVMSG'
};
};
exports.fetch = function(dbot) {
return link(dbot);
};