2018-09-30 14:44:36 +08:00
|
|
|
/*
|
|
|
|
Description: Removes target trip from the config as a mod and downgrades the socket type
|
|
|
|
*/
|
|
|
|
|
|
|
|
// module main
|
|
|
|
exports.run = async (core, server, socket, data) => {
|
|
|
|
// increase rate limit chance and ignore if not admin
|
|
|
|
if (socket.uType != 'admin') {
|
2019-04-08 08:04:10 +08:00
|
|
|
return server.police.frisk(socket.remoteAddress, 20);
|
2018-09-30 14:44:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove trip from config
|
|
|
|
core.config.mods = core.config.mods.filter(mod => mod.trip !== data.trip);
|
|
|
|
|
|
|
|
// find targets current connections
|
|
|
|
let targetMod = server.findSockets({ trip: data.trip });
|
2019-02-03 05:34:06 +08:00
|
|
|
if (targetMod.length !== 0) {
|
|
|
|
for (let i = 0, l = targetMod.length; i < l; i++) {
|
2018-09-30 14:44:36 +08:00
|
|
|
// downgrade privilages
|
|
|
|
targetMod[i].uType = 'user';
|
|
|
|
|
|
|
|
// inform ex-mod
|
|
|
|
server.send({
|
|
|
|
cmd: 'info',
|
|
|
|
text: 'You are now a user.'
|
|
|
|
}, targetMod[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// return success message
|
|
|
|
server.reply({
|
|
|
|
cmd: 'info',
|
2019-02-03 05:34:06 +08:00
|
|
|
text: `Removed mod trip: ${
|
|
|
|
data.trip
|
|
|
|
}, remember to run 'saveconfig' to make it permanent`
|
2018-09-30 14:44:36 +08:00
|
|
|
}, socket);
|
|
|
|
|
|
|
|
// notify all mods
|
|
|
|
server.broadcast({
|
|
|
|
cmd: 'info',
|
|
|
|
text: `Removed mod: ${data.trip}`
|
|
|
|
}, { uType: 'mod' });
|
|
|
|
};
|
|
|
|
|
|
|
|
// module meta
|
|
|
|
exports.requiredData = ['trip'];
|
|
|
|
exports.info = {
|
|
|
|
name: 'removemod',
|
|
|
|
description: 'Removes target trip from the config as a mod and downgrades the socket type',
|
|
|
|
usage: `
|
|
|
|
API: { cmd: 'removemod', trip: '<target trip>' }`
|
|
|
|
};
|