3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00
dbot/modules/spelling.js
2011-10-26 17:21:21 +01:00

40 lines
1.2 KiB
JavaScript

var spelling = function(dbot) {
var dbot = dbot;
var last = {};
return {
'listener': function(data, params) {
var q = data.message.valMatch(/^\*([\d\w\s]*)/, 2);
if(q) {
var correction = q[1];
var candidates = last[data.channel][data.user].split(' ');
var winner = false;
for(var i=0;i<candidates.length;i++) {
var distance = String.prototype.distance(correction, candidates[i]);
if(distance > winner) {
winner = candidates[i];
}
}
if(winner < 3) {
var fix = data.message.replace(winner, correction);
dbot.say(data.channel, data.user + ':' + fix);
}
} else {
if(last.hasOwnProperty(data.channel)) {
last[data.channel][data.user] = data.message;
} else {
last[data.channel] = { };
last[data.channel][data.user] = data.message;
}
}
},
'on': 'PRIVMSG'
}
exports.fetch = function(dbot) {
return spelling(dbot);
};