3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00

Added a report module for naughty users

This commit is contained in:
Luke Slater 2012-11-27 23:24:32 +00:00
parent 99b09c63b4
commit 09947921d1

55
modules/report.js Normal file
View File

@ -0,0 +1,55 @@
var report = function(dbot) {
var commands = {
'~report': function(event) {
var channelName = event.input[1];
var nick = event.input[2];
var reason = event.input[3];
if(dbot.instance.connections[event.server].channels.hasOwnProperty(channelName)) {
var channel = dbot.instance.connections[event.server].channels[channelName];
if(channel.nicks.hasOwnProperty(nick)) {
var ops = [];
for(var possibOps in channel.nicks) {
if(channel.nicks[possibOps].op == true) {
ops.push(possibOps);
}
}
for(var i=0;i<ops.length;i++) {
dbot.say(event.server, ops[i],
'Attention: ' + event.user + ' has reported ' +
nick + ' in ' + channelName + '. The reason ' +
'given was: "' + reason + '."');
}
if(dbot.instance.connections[event.server].channels.hasOwnProperty('#'+
channelName)) {
var adminChannel = '#' + channelName;
dbot.say(event.server, adminChannel,
'Attention: ' + event.user + ' has reported ' +
nick + ' in ' + channelName + '. The reason ' +
'given was: "' + reason + '."');
}
event.reply('Thank you, ' + nick + ' has been reported the channel administrators.');
} else {
event.reply('Nick is not in channel.');
}
} else {
event.reply('Channel does not exist.');
}
}
};
commands['~report'].regex = [/^~report ([^ ]+) ([^ ]+) (.+)$/, 4];
return {
'name': 'report',
'ignorable': true,
'commands': commands
};
};
exports.fetch = function(dbot) {
return report(dbot);
};