dbot/modules/autoshorten.js

33 lines
934 B
JavaScript
Raw Normal View History

2012-04-14 07:08:54 +02:00
var http = require('http');
2012-04-14 07:06:40 +02:00
var autoshorten = function(dbot) {
var dbot = dbot;
return {
'listener': function(data) {
var urlRegex = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig;
var urlMatches = data.message.match(urlRegex);
if(urlMatches !== null) {
var url = urlMatches[0]; // Only doing one, screw you.
2012-04-14 07:12:36 +02:00
var site = http.createClient(80, 'nc.no.de');
var request = site.request("GET", 'mkurl', { 'host' : 'nc.no.de/',
2012-04-14 07:08:03 +02:00
'url': url});
2012-04-14 07:06:40 +02:00
request.end();
request.on('response', function(response) {
dbot.say(data.channel, 'Shortened link from ' + data.user + ': ' + response.surl);
});
}
},
'on': 'PRIVMSG'
};
}
exports.fetch = function(dbot) {
return autoshorten(dbot);
};