mirror of
https://github.com/reality/dbot.git
synced 2024-11-24 04:49:25 +01:00
nunban moved to api + efficiency [#500], attempts to look up host otf [Close #499], tempban backedn [#495]
This commit is contained in:
parent
0544bb9d12
commit
3be45d4692
@ -41,10 +41,13 @@ var commands = function(dbot) {
|
|||||||
|
|
||||||
// Kick and ban from all channels on the network.
|
// Kick and ban from all channels on the network.
|
||||||
'~nban': function(event) {
|
'~nban': function(event) {
|
||||||
|
if(!event.input) return;
|
||||||
|
|
||||||
var server = event.server,
|
var server = event.server,
|
||||||
banner = event.user,
|
banner = event.user,
|
||||||
banee = event.input[1],
|
timeout = event.input[1],
|
||||||
reason = event.input[2],
|
banee = event.input[2],
|
||||||
|
reason = event.input[3],
|
||||||
adminChannel = this.config.admin_channel[event.server];
|
adminChannel = this.config.admin_channel[event.server];
|
||||||
channels = dbot.config.servers[server].channels,
|
channels = dbot.config.servers[server].channels,
|
||||||
network = event.server;
|
network = event.server;
|
||||||
@ -52,108 +55,87 @@ var commands = function(dbot) {
|
|||||||
if(this.config.network_name[event.server]) {
|
if(this.config.network_name[event.server]) {
|
||||||
network = this.config.network_name[event.server];
|
network = this.config.network_name[event.server];
|
||||||
}
|
}
|
||||||
|
console.log(timeout);
|
||||||
|
console.log(banee);
|
||||||
|
console.log(reason);
|
||||||
|
|
||||||
dbot.api.nickserv.getUserHost(event.server, banee, function(host) {
|
dbot.api.nickserv.getUserHost(event.server, banee, function(host) {
|
||||||
// Add host record entry
|
// Add host record entry
|
||||||
if(!_.has(this.hosts, event.server)) this.hosts[event.server] = {};
|
if(host) {
|
||||||
this.hosts[event.server][banee] = host;
|
if(!_.has(this.hosts, event.server)) this.hosts[event.server] = {};
|
||||||
|
this.hosts[event.server][banee] = host;
|
||||||
|
|
||||||
// Create notify string
|
// Create notify string
|
||||||
var notifyString = dbot.t('nbanned', {
|
/*if(!_.isUndefined(timeout)) {
|
||||||
'network': network,
|
timeout = new Date(new Date().getTime() + (timeout * 3600000));
|
||||||
'banner': banner,
|
if(!_.has(this.tempBans, event.server)) this.tempBans[event.server] = {};
|
||||||
'banee': banee,
|
this.tempBans[event.server][banee] = timeout;
|
||||||
'reason': reason
|
this.internalAPI.addTempBan(event.server, banee, timeout);
|
||||||
});
|
} else {*/
|
||||||
|
var notifyString = dbot.t('nbanned', {
|
||||||
|
'network': network,
|
||||||
|
'banner': banner,
|
||||||
|
'banee': banee,
|
||||||
|
'reason': reason
|
||||||
|
});
|
||||||
|
var quoteString = dbot.t('nban_quote', {
|
||||||
|
'banee': banee,
|
||||||
|
'banner': banner,
|
||||||
|
'time': new Date().toUTCString(),
|
||||||
|
'reason': reason
|
||||||
|
});
|
||||||
|
//}
|
||||||
|
console.log(notifyString);
|
||||||
|
|
||||||
// TODO: When this is merged into database branch, have it use the
|
// Add qutoe category documenting ban
|
||||||
// api.quotes.addQuote function
|
if(this.config.document_bans && _.has(dbot.modules, 'quotes')) {
|
||||||
if(this.config.document_bans && _.has(dbot.modules, 'quotes')) {
|
dbot.db.quoteArrs['ban_' + banee.toLowerCase()] = [ quoteString ];
|
||||||
dbot.db.quoteArrs['ban_' + banee.toLowerCase()] = [ dbot.t('nban_quote', {
|
notifyString += ' ' + dbot.t('quote_recorded', { 'user': banee });
|
||||||
'banee': banee,
|
}
|
||||||
'banner': banner,
|
|
||||||
'time': new Date().toUTCString(),
|
|
||||||
'reason': reason
|
|
||||||
}) ];
|
|
||||||
|
|
||||||
notifyString += ' ' + dbot.t('quote_recorded', { 'user': banee });
|
// Notify moderators, banee
|
||||||
|
if(this.config.admin_channel[event.server]) {
|
||||||
|
channels = _.without(channels, adminChannel);
|
||||||
|
|
||||||
|
dbot.api.report.notify(server, adminChannel, notifyString);
|
||||||
|
dbot.say(event.server, adminChannel, notifyString);
|
||||||
|
|
||||||
|
dbot.say(event.server, banee, dbot.t('nbanned_notify', {
|
||||||
|
'network': network,
|
||||||
|
'banner': banner,
|
||||||
|
'reason': reason,
|
||||||
|
'admin_channel': adminChannel
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Ban the user from all channels
|
||||||
|
var i = 0;
|
||||||
|
var banChannel = function(channels) {
|
||||||
|
if(i >= channels.length) return;
|
||||||
|
var channel = channels[i];
|
||||||
|
this.api.ban(server, banee, channel);
|
||||||
|
this.api.kick(server, banee, channel, reason +
|
||||||
|
' (network-wide ban requested by ' + banner + ')');
|
||||||
|
setTimeout(function() {
|
||||||
|
i++; banChannel(channels);
|
||||||
|
}, 1000);
|
||||||
|
}.bind(this);
|
||||||
|
banChannel(channels);
|
||||||
|
} else {
|
||||||
|
event.reply(dbot.t('no_user', { 'user': banee }));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Notify moderators, banee
|
|
||||||
if(this.config.admin_channel[event.server]) {
|
|
||||||
channels = _.without(channels, adminChannel);
|
|
||||||
|
|
||||||
dbot.api.report.notify(server, adminChannel, notifyString);
|
|
||||||
dbot.say(event.server, adminChannel, notifyString);
|
|
||||||
|
|
||||||
dbot.say(event.server, banee, dbot.t('nbanned_notify', {
|
|
||||||
'network': network,
|
|
||||||
'banner': banner,
|
|
||||||
'reason': reason,
|
|
||||||
'admin_channel': adminChannel
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ban the user from all channels
|
|
||||||
var i = 0;
|
|
||||||
var banChannel = function(channels) {
|
|
||||||
if(i >= channels.length) return;
|
|
||||||
var channel = channels[i];
|
|
||||||
this.api.ban(server, banee, channel);
|
|
||||||
this.api.kick(server, banee, channel, reason +
|
|
||||||
' (network-wide ban requested by ' + banner + ')');
|
|
||||||
setTimeout(function() {
|
|
||||||
i++; banChannel(channels);
|
|
||||||
}, 1000);
|
|
||||||
}.bind(this);
|
|
||||||
banChannel(channels);
|
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
},
|
},
|
||||||
|
|
||||||
'~nunban': function(event) {
|
'~nunban': function(event) {
|
||||||
var unbanee = event.params[1],
|
var unbanee = event.params[1],
|
||||||
unbanner = event.user,
|
unbanner = event.user;
|
||||||
adminChannel = this.config.admin_channel[event.server],
|
|
||||||
channels = dbot.config.servers[event.server].channels,
|
|
||||||
network = event.server;
|
|
||||||
|
|
||||||
if(this.config.network_name[event.server]) {
|
this.api.networkUnban(event.server, unbanee, unbanner, function(err) {
|
||||||
network = this.config.network_name[event.server];
|
if(err) {
|
||||||
}
|
event.reply(dbot.t('nunban_error', { 'unbanee': unbanee }));
|
||||||
|
|
||||||
if(_.has(this.hosts, event.server) && _.has(this.hosts[event.server], unbanee)) {
|
|
||||||
var host = this.hosts[event.server][unbanee];
|
|
||||||
|
|
||||||
var notifyString = dbot.t('nunbanned', {
|
|
||||||
'network': network,
|
|
||||||
'unbanee': unbanee,
|
|
||||||
'unbanner': unbanner
|
|
||||||
});
|
|
||||||
|
|
||||||
if(this.config.admin_channel[event.server]) {
|
|
||||||
dbot.api.report.notify(event.server, adminChannel, notifyString);
|
|
||||||
dbot.say(event.server, adminChannel, notifyString);
|
|
||||||
}
|
}
|
||||||
|
});
|
||||||
dbot.say(event.server, unbanee, dbot.t('nunban_notify', {
|
|
||||||
'network': network,
|
|
||||||
'unbanee': unbanee,
|
|
||||||
'unbanner': unbanner
|
|
||||||
}));
|
|
||||||
|
|
||||||
var i = 0;
|
|
||||||
var unbanChannel = function(channels) {
|
|
||||||
if(i >= channels.length) return;
|
|
||||||
var channel = channels[i];
|
|
||||||
this.api.unban(event.server, host, channel);
|
|
||||||
setTimeout(function() {
|
|
||||||
i++; unbanChannel(channels);
|
|
||||||
}, 1000);
|
|
||||||
}.bind(this);
|
|
||||||
unbanChannel(channels);
|
|
||||||
} else {
|
|
||||||
event.reply(dbot.t('nunban_error', { 'unbanee': unbanee }));
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
/*** Kick Stats ***/
|
/*** Kick Stats ***/
|
||||||
@ -214,7 +196,7 @@ var commands = function(dbot) {
|
|||||||
commands['~kickstats'].access = 'regular';
|
commands['~kickstats'].access = 'regular';
|
||||||
|
|
||||||
commands['~ckick'].regex = [/^~ckick ([^ ]+) ([^ ]+) (.+)$/, 4];
|
commands['~ckick'].regex = [/^~ckick ([^ ]+) ([^ ]+) (.+)$/, 4];
|
||||||
commands['~nban'].regex = [/^~nban ([^ ]+) (.+)$/, 3];
|
commands['~nban'].regex = /^~nban ([\d^ ]+)?([^ ]+) (.+)$/;
|
||||||
|
|
||||||
return commands;
|
return commands;
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"dbKeys": [ "kicks", "kickers", "hosts" ],
|
"dbKeys": [ "kicks", "kickers", "hosts", "tempBans" ],
|
||||||
"dependencies": [ "command", "report", "users" ],
|
"dependencies": [ "command", "report", "users" ],
|
||||||
"help": "http://github.com/reality/depressionbot/blob/master/modules/kick/README.md",
|
"help": "http://github.com/reality/depressionbot/blob/master/modules/kick/README.md",
|
||||||
"ignorable": true,
|
"ignorable": true,
|
||||||
|
@ -2,6 +2,7 @@ var _ = require('underscore')._;
|
|||||||
|
|
||||||
var kick = function(dbot) {
|
var kick = function(dbot) {
|
||||||
this.hosts = dbot.db.hosts;
|
this.hosts = dbot.db.hosts;
|
||||||
|
this.tempBans = dbot.db.tempBans;
|
||||||
|
|
||||||
this.api = {
|
this.api = {
|
||||||
'ban': function(server, user, channel) {
|
'ban': function(server, user, channel) {
|
||||||
@ -18,6 +19,67 @@ var kick = function(dbot) {
|
|||||||
|
|
||||||
'unban': function(server, host, channel) {
|
'unban': function(server, host, channel) {
|
||||||
dbot.say(server, this.config.chanserv, 'unban ' + channel + ' *!*@' + host);
|
dbot.say(server, this.config.chanserv, 'unban ' + channel + ' *!*@' + host);
|
||||||
|
},
|
||||||
|
|
||||||
|
'networkUnban': function(server, unbanee, unbanner, callback) {
|
||||||
|
var channels = dbot.config.servers[server].channels,
|
||||||
|
network = this.config.network_name[server] || server,
|
||||||
|
adminChannel = this.config.admin_channel[server];
|
||||||
|
|
||||||
|
if(_.has(this.hosts, server) && _.has(this.hosts[server], unbanee)) {
|
||||||
|
var host = this.hosts[server][unbanee];
|
||||||
|
|
||||||
|
// Notify Staff
|
||||||
|
if(!_.isUndefined(adminChannel)) {
|
||||||
|
var notifyString = dbot.t('nunbanned', {
|
||||||
|
'network': network,
|
||||||
|
'unbanee': unbanee,
|
||||||
|
'unbanner': unbanner
|
||||||
|
});
|
||||||
|
dbot.api.report.notify(server, adminChannel, notifyString);
|
||||||
|
dbot.say(server, adminChannel, notifyString);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Notify Unbanee
|
||||||
|
dbot.say(server, unbanee, dbot.t('nunban_notify', {
|
||||||
|
'network': network,
|
||||||
|
'unbanee': unbanee,
|
||||||
|
'unbanner': unbanner
|
||||||
|
}));
|
||||||
|
|
||||||
|
// Unban
|
||||||
|
var i = 0;
|
||||||
|
var unbanChannel = function(channels) {
|
||||||
|
if(i >= channels.length) return;
|
||||||
|
var channel = channels[i];
|
||||||
|
this.api.unban(server, host, channel);
|
||||||
|
setTimeout(function() {
|
||||||
|
i++; unbanChannel(channels);
|
||||||
|
}, 1000);
|
||||||
|
}.bind(this);
|
||||||
|
unbanChannel(channels);
|
||||||
|
|
||||||
|
callback(null); // Success
|
||||||
|
} else {
|
||||||
|
// Attempt to look up the host on-the-fly
|
||||||
|
dbot.api.nickserv.getUserHost(server, unbanee, function(host) {
|
||||||
|
if(host) {
|
||||||
|
if(!_.has(this.hosts, server)) this.hosts[server] = {};
|
||||||
|
this.hosts[server][unbanee] = host;
|
||||||
|
this.api.networkUnban(server, unbanee, unbanner);
|
||||||
|
} else {
|
||||||
|
callback(true); // No host could be found
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
this.internalAPI = {
|
||||||
|
'addTempBan': function(server, banee, timeout) {
|
||||||
|
dbot.api.timers.addTimeout(timeout, function() {
|
||||||
|
|
||||||
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -38,6 +38,9 @@
|
|||||||
"cy": "Cafodd {banee} ei wahardd o'r rhwydwaith gan {banner} ar {time}. Y rheswm a roddwyd oedd: \"{reason}.\"",
|
"cy": "Cafodd {banee} ei wahardd o'r rhwydwaith gan {banner} ar {time}. Y rheswm a roddwyd oedd: \"{reason}.\"",
|
||||||
"de": "{banee} wurde von {banner} auf dem gesamten Netzwerk um {time} gebannt. Grund: \"{reason}.\""
|
"de": "{banee} wurde von {banner} auf dem gesamten Netzwerk um {time} gebannt. Grund: \"{reason}.\""
|
||||||
},
|
},
|
||||||
|
"no_user": {
|
||||||
|
"en": "{user} doesn't seem to be online on this server."
|
||||||
|
},
|
||||||
"nunbanned": {
|
"nunbanned": {
|
||||||
"en": "Attention: {unbanee} has been unbanned from the {network} network by {unbanner}."
|
"en": "Attention: {unbanee} has been unbanned from the {network} network by {unbanner}."
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user