dbot/modules/autoshorten.js

37 lines
1.1 KiB
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);
2012-04-14 13:01:52 +02:00
if(urlMatches !== null && urlMatches[0].length > 65) {
2012-04-14 07:06:40 +02:00
var url = urlMatches[0]; // Only doing one, screw you.
2012-04-14 07:21:38 +02:00
// TODO: Make this use a decent URL shortener. Mine is shit.
2012-04-14 07:21:38 +02:00
var options = {
'host': 'nc.no.de',
'port': 80,
'path': '/mkurl?url=' + escape(url)
};
2012-04-14 07:26:48 +02:00
http.get(options, function(res) {
res.setEncoding('utf8');
res.on('data', function (response) {
dbot.say(data.channel, 'Shortened link from ' + data.user + ': ' + JSON.parse(response).surl);
});
2012-04-14 07:06:40 +02:00
});
}
},
'on': 'PRIVMSG'
};
}
exports.fetch = function(dbot) {
return autoshorten(dbot);
};