2018-09-30 14:44:36 +08:00
|
|
|
/*
|
|
|
|
Description: Removes target trip from the config as a mod and downgrades the socket type
|
|
|
|
*/
|
|
|
|
|
2020-11-07 05:16:43 +08:00
|
|
|
import {
|
|
|
|
isAdmin,
|
|
|
|
isModerator,
|
|
|
|
levels,
|
|
|
|
} from '../utility/_UAC';
|
2020-03-06 00:49:25 +08:00
|
|
|
|
2018-09-30 14:44:36 +08:00
|
|
|
// module main
|
2020-09-17 13:44:32 +08:00
|
|
|
export async function run({
|
|
|
|
core, server, socket, payload,
|
|
|
|
}) {
|
2018-09-30 14:44:36 +08:00
|
|
|
// increase rate limit chance and ignore if not admin
|
2020-11-07 05:16:43 +08:00
|
|
|
if (!isAdmin(socket.level)) {
|
2019-11-07 15:35:23 +08:00
|
|
|
return server.police.frisk(socket.address, 20);
|
2018-09-30 14:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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);
|
2018-09-30 14:44:36 +08:00
|
|
|
|
|
|
|
// find targets current connections
|
2020-09-17 13:44:32 +08:00
|
|
|
const targetMod = server.findSockets({ trip: payload.trip });
|
2019-02-03 05:34:06 +08:00
|
|
|
if (targetMod.length !== 0) {
|
2019-11-07 15:35:23 +08:00
|
|
|
for (let i = 0, l = targetMod.length; i < l; i += 1) {
|
2018-09-30 14:44:36 +08:00
|
|
|
// downgrade privilages
|
|
|
|
targetMod[i].uType = 'user';
|
2020-11-07 05:16:43 +08:00
|
|
|
targetMod[i].level = levels.default;
|
2018-09-30 14:44:36 +08:00
|
|
|
|
|
|
|
// 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
|
2018-09-30 14:44:36 +08:00
|
|
|
}, targetMod[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// return success message
|
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
2019-02-03 05:34:06 +08:00
|
|
|
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
|
2018-09-30 14:44:36 +08:00
|
|
|
}, 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
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const requiredData = ['trip'];
|
|
|
|
export const info = {
|
2018-09-30 14:44:36 +08:00
|
|
|
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>' }`,
|
2018-09-30 14:44:36 +08:00
|
|
|
};
|