2018-09-30 14:44:36 +08:00
|
|
|
/*
|
|
|
|
Description: Clears all bans and ratelimits
|
|
|
|
*/
|
|
|
|
|
|
|
|
// module main
|
|
|
|
exports.run = async (core, server, socket, data) => {
|
|
|
|
// increase rate limit chance and ignore if not admin or mod
|
|
|
|
if (socket.uType === 'user') {
|
2019-04-08 08:04:10 +08:00
|
|
|
return server.police.frisk(socket.remoteAddress, 10);
|
2018-09-30 14:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove arrest records
|
2019-04-08 08:04:10 +08:00
|
|
|
server.police.records = {};
|
2018-09-30 14:44:36 +08:00
|
|
|
|
|
|
|
console.log(`${socket.nick} [${socket.trip}] unbanned all`);
|
|
|
|
|
|
|
|
// reply with success
|
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `Unbanned all ip addresses`
|
|
|
|
}, socket);
|
|
|
|
|
|
|
|
// notify mods
|
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `${socket.nick} unbanned all ip addresses`
|
|
|
|
}, { uType: 'mod' });
|
|
|
|
};
|
|
|
|
|
|
|
|
// module meta
|
|
|
|
exports.info = {
|
|
|
|
name: 'unbanall',
|
|
|
|
description: 'Clears all banned ip addresses',
|
|
|
|
usage: `
|
|
|
|
API: { cmd: 'unbanall' }`
|
|
|
|
};
|