module to deal with ppl hilighting lots of ppl at once. bad

This commit is contained in:
reality 2018-02-16 13:17:52 +00:00
parent ebb0a023c0
commit 8310dc38ff
3 changed files with 46 additions and 0 deletions

View File

@ -31,6 +31,10 @@ var kick = function(dbot) {
dbot.instance.connections[server].send('KICK ' + channel + ' ' + user + ' :' + msg);
},
'kill': function(server, user, reason) {
dbot.instance.connections[server].send('kill ' + user + ' :' + reason);
},
'unban': function(server, host, channel) {
// TODO: Wrest control from chanserv
//dbot.say(server, this.config.chanserv, 'unban ' + channel + ' *!*@' + host);

View File

@ -0,0 +1,4 @@
{
"action": "kill",
"sensitivity": 10
}

View File

@ -0,0 +1,38 @@
/**
* Module name: kill_namespam
* Description: destroy those wot hilight too many nicks at once . usually
* advertising their rubbish irc server (do not)
*/
var _ = require('underscore')._;
var kill_namespam = function(dbot) {
this.listener = function(event) {
if(event.channel == event.user) return; // return if pm
if(_.filter(event.message.split(' '), function(word) { return _.has(event.channel.nicks, word); }.length > this.config.sensitivity) {
var message = dbot.t('namespam_act', {
'user': event.user,
'channel': event.channel,
'action': this.config.action,
'sensitivity': this.config.sensitivity
});
switch(this.config.action) {
case kickban:
dbot.api.kick.ban(event.server, event.host, event.channel)
dbot.api.kick.kick(event.server, event.user, 'Nick highlight spam.'
break;
case kill:
dbot.api.kick.kill(event.server, event.user, message);
default: break;
}
dbot.api.report.notify('spam', event.server, event.user, event.channel, message, event.host, event.user);
}
}.bind(this);
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
return new kill_namespam(dbot);
};