1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/commands/mod/unbanall.js
2022-06-22 10:31:28 -05:00

48 lines
1.0 KiB
JavaScript

/* eslint no-console: 0 */
/*
Description: Clears all bans and ratelimits
*/
import {
isModerator,
} from '../utility/_UAC';
// module main
export async function run({ core, server, socket }) {
// increase rate limit chance and ignore if not admin or mod
if (!isModerator(socket.level)) {
return server.police.frisk(socket.address, 10);
}
// remove arrest records
server.police.clear();
core.stats.set('users-banned', 0);
console.log(`${socket.nick} [${socket.trip}] unbanned all`);
// reply with success
server.reply({
cmd: 'info',
text: 'Unbanned all ip addresses',
channel: socket.channel, // @todo Multichannel
}, socket);
// notify mods
server.broadcast({
cmd: 'info',
text: `${socket.nick}#${socket.trip} unbanned all ip addresses`,
channel: false, // @todo Multichannel, false for global
}, { level: isModerator });
return true;
}
export const info = {
name: 'unbanall',
description: 'Clears all banned ip addresses',
usage: `
API: { cmd: 'unbanall' }`,
};