2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* @author Marzavec ( https://github.com/marzavec )
|
|
|
|
* @summary Released them from the void
|
|
|
|
* @version 1.0.0
|
|
|
|
* @description Clears all banned ip addresses
|
|
|
|
* @module unbanall
|
|
|
|
*/
|
2018-09-30 14:44:36 +08:00
|
|
|
|
2020-11-07 05:16:43 +08:00
|
|
|
import {
|
|
|
|
isModerator,
|
2022-06-23 00:32:51 +08:00
|
|
|
} from '../utility/_UAC.js';
|
2020-03-06 00:49:25 +08:00
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* Executes when invoked by a remote client
|
|
|
|
* @param {Object} env - Enviroment object with references to core, server, socket & payload
|
|
|
|
* @public
|
|
|
|
* @return {void}
|
|
|
|
*/
|
2020-09-17 13:44:32 +08:00
|
|
|
export async function run({ core, server, socket }) {
|
2018-09-30 14:44:36 +08:00
|
|
|
// increase rate limit chance and ignore if not admin or mod
|
2020-11-07 05:16:43 +08:00
|
|
|
if (!isModerator(socket.level)) {
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 10);
|
2018-09-30 14:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove arrest records
|
2019-11-07 15:35:23 +08:00
|
|
|
server.police.clear();
|
2018-09-30 14:44:36 +08:00
|
|
|
|
2020-03-13 02:28:20 +08:00
|
|
|
core.stats.set('users-banned', 0);
|
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
console.log(`${socket.nick} [${socket.trip}] unbanned all`);
|
|
|
|
|
|
|
|
// reply with success
|
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
2019-11-07 15:35:23 +08:00
|
|
|
text: 'Unbanned all ip addresses',
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-09-30 14:44:36 +08:00
|
|
|
}, socket);
|
|
|
|
|
|
|
|
// notify mods
|
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
2020-03-07 05:29:15 +08:00
|
|
|
text: `${socket.nick}#${socket.trip} unbanned all ip addresses`,
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: false, // @todo Multichannel, false for global
|
2020-11-07 05:16:43 +08:00
|
|
|
}, { level: isModerator });
|
2018-09-30 14:44:36 +08:00
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* Module meta information
|
|
|
|
* @public
|
|
|
|
* @typedef {Object} unbanall/info
|
|
|
|
* @property {string} name - Module command name
|
|
|
|
* @property {string} category - Module category name
|
|
|
|
* @property {string} description - Information about module
|
|
|
|
* @property {string} usage - Information about module usage
|
|
|
|
*/
|
2019-11-07 15:35:23 +08:00
|
|
|
export const info = {
|
2018-09-30 14:44:36 +08:00
|
|
|
name: 'unbanall',
|
2022-06-23 00:32:51 +08:00
|
|
|
category: 'moderators',
|
2018-09-30 14:44:36 +08:00
|
|
|
description: 'Clears all banned ip addresses',
|
|
|
|
usage: `
|
2019-11-07 15:35:23 +08:00
|
|
|
API: { cmd: 'unbanall' }`,
|
2018-09-30 14:44:36 +08:00
|
|
|
};
|