1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/server/src/commands/admin/removemod.js

63 lines
1.7 KiB
JavaScript
Raw Normal View History

/*
Description: Removes target trip from the config as a mod and downgrades the socket type
*/
import * as UAC from '../utility/UAC/_info';
// module main
2020-09-17 13:44:32 +08:00
export async function run({
core, server, socket, payload,
}) {
// increase rate limit chance and ignore if not admin
if (!UAC.isAdmin(socket.level)) {
2019-11-07 15:35:23 +08:00
return server.police.frisk(socket.address, 20);
}
// remove trip from config
2020-09-17 13:44:32 +08:00
// eslint-disable-next-line no-param-reassign
core.config.mods = core.config.mods.filter((mod) => mod.trip !== payload.trip);
// find targets current connections
2020-09-17 13:44:32 +08:00
const targetMod = server.findSockets({ trip: payload.trip });
if (targetMod.length !== 0) {
2019-11-07 15:35:23 +08:00
for (let i = 0, l = targetMod.length; i < l; i += 1) {
// downgrade privilages
targetMod[i].uType = 'user';
targetMod[i].level = UAC.levels.default;
// inform ex-mod
server.send({
cmd: 'info',
2019-11-07 15:35:23 +08:00
text: 'You are now a user.',
2020-10-10 13:34:59 +08:00
channel: targetMod[i].channel, // @todo Multichannel
}, targetMod[i]);
}
}
// return success message
server.reply({
cmd: 'info',
text: `Removed mod trip: ${
2020-09-17 13:44:32 +08:00
payload.trip
2019-11-07 15:35:23 +08:00
}, remember to run 'saveconfig' to make it permanent`,
2020-10-10 13:34:59 +08:00
channel: socket.channel, // @todo Multichannel
}, socket);
// notify all mods
server.broadcast({
cmd: 'info',
2020-09-17 13:44:32 +08:00
text: `Removed mod: ${payload.trip}`,
2020-10-10 13:34:59 +08:00
channel: false, // @todo Multichannel, false for global
}, { level: UAC.isModerator });
2019-11-07 15:35:23 +08:00
return true;
}
export const requiredData = ['trip'];
export const info = {
name: 'removemod',
description: 'Removes target trip from the config as a mod and downgrades the socket type',
usage: `
2019-11-07 15:35:23 +08:00
API: { cmd: 'removemod', trip: '<target trip>' }`,
};