3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00

correct other peoples spelling

This commit is contained in:
Luke Slater 2011-11-04 16:34:36 +00:00
parent f995564dbe
commit 119d0b306e

View File

@ -5,6 +5,7 @@ var spelling = function(dbot) {
return {
'listener': function(data, params) {
var q = data.message.valMatch(/^\*\*?([\d\w\s]*)/, 2);
var otherQ = data.message.valMatch(/^([\d\w\s]*): \*\*?([\d\w\s]*)/);
if(q) {
var correction = q[1];
var candidates = last[data.channel][data.user].split(' ');
@ -26,6 +27,29 @@ var spelling = function(dbot) {
dbot.say(data.channel, data.user + ' meant: ' + fix);
}
}
} else if(otherQ) {
if(last[data.channel].hasOwnProperty([otherQ[1]])) {
var correction = otherQ[2];
var candidates = last[data.channel][otherQ[1]].split(' ');
var winner = false;
var winnerDistance = 99999999; //urgh fix later
for(var i=0;i<candidates.length;i++) {
var distance = String.prototype.distance(correction, candidates[i]);
if(distance < winnerDistance) {
winner = candidates[i];
winnerDistance = distance;
}
}
if(winnerDistance < 3) {
if(winner !== correction) {
var fix = last[data.channel][otherQ[1]].replace(winner, correction);
last[data.channel][otherQ[1]] = fix;
dbot.say(data.channel, data.user + ' thinks ' + otherQ[1] + ' meant: ' + fix);
}
}
}
} else {
if(last.hasOwnProperty(data.channel)) {
last[data.channel][data.user] = data.message;