galactic-bot/structure/client/components/settings/moderation/ModerationPoints.js

188 lines
7.0 KiB
JavaScript
Raw Normal View History

const { Setting } = require('../../../../interfaces/');
2020-06-09 17:58:54 +02:00
const timestring = require('timestring');
const CONSTANTS = {
INFRACTIONS: ['note', 'warn', 'mute', 'unmute', 'lockdown', 'unlockdown', 'kick', 'ban', 'unban', 'vcmute', 'vcunmute', 'vckick', 'vcban', 'vcunban', 'prune', 'slowmode', 'dehoist', 'addrole', 'removerole', 'nickname']
};
class ModerationPointsSetting extends Setting {
constructor(client) {
super(client, {
name: 'moderationPoints',
module: 'moderation',
aliases: [
'moderationPoint',
'modPoints',
'modPoint'
],
usage: '',
resolve: 'GUILD',
examples: [
],
default: {
moderationPoints: {
enabled: false,
points: {
WARN: 0,
MUTE: 0,
KICK: 0,
SOFTBAN: 0,
BAN: 0,
VCMUTE: 0,
VCKICK: 0,
VCBAN: 0
},
expirations: {
WARN: 0,
KICK: 0,
MUTE: 0,
SOFTBAN: 0,
BAN: 0,
VCMUTE: 0,
VCKICK: 0,
VCBAN: 0
},
2020-06-09 17:58:54 +02:00
associations: {},
multiplier: false //expiration = expiration*points
}
}
});
}
async handle(message, args) {
2020-06-09 17:58:54 +02:00
const setting = message.guild._settings[this.index] || this.default[this.index];
2020-06-10 16:48:58 +02:00
// eslint-disable-next-line prefer-const
2020-06-09 17:58:54 +02:00
let [method, ...params] = args,
index = null,
langParams = {};
method = method.toLowerCase();
if (this.client.resolver.resolveBoolean(method)) {
setting.enabled = true;
index = 'S_MODPOINTS_TOGGLE';
langParams = { toggle: message.format('ON_OFF_TOGGLE', { toggle: true }, true) };
} else if (this.client.resolver.resolveBoolean(method) === false) {
setting.enabled = false;
index = 'S_MODPOINTS_TOGGLE';
langParams = { toggle: message.format('ON_OFF_TOGGLE', { toggle: false }, true) };
} else if (method === 'multiplier') {
const [bool] = params;
if (this.client.resolver.resolveBoolean(bool)) setting.multiplier = true;
else if (this.client.resolver.resolveBooeal(bool) === false) setting.multiplier = false;
else return {
error: true,
msg: message.format('ERR_INVALID_SUBMETHOD', { submethod: bool })
};
} else if (method === 'associate') {
const { method: submethod, changed } = await this.client.resolver.resolveMethod(params, null, Object.keys(setting.associations));
2020-06-09 17:58:54 +02:00
if (submethod === 'reset') {
setting.associations = {};
index = 'S_MODPOINTS_ASSOCIATE_RESET';
} else if (submethod === 'remove') {
for (const elem of changed) delete setting.associations[elem];
index = 'S_MODPOINTS_REMOVE';
langParams = { words: changed.join(', ') };
} else {
// eslint-disable-next-line prefer-const
let [word, arg] = params;
word = word.toLowerCase();
const points = parseInt(arg);
if (isNaN(points)) return { error: true, msg: message.format('S_MODPOINTS_NAN', { arg }) };
if (points < 0) return { error: true, msg: message.format('S_MODPOINTS_TOOSMALL', { arg: points }) };
if (points > 100) return { error: true, msg: message.format('S_MODPOINTS_TOOBIG', { arg: points }) };
setting.associations[word] = points;
index = 'S_MODPOINTS_ASSOCIATE';
langParams = { word, points };
}
} else if (CONSTANTS.INFRACTIONS.includes(method)) {
// eslint-disable-next-line prefer-const
let [submethod, value] = params;
submethod = submethod.toLowerCase();
if (['points', 'point', 'p'].includes(submethod)) {
const points = parseInt(value);
if (isNaN(points)) return { error: true, msg: message.format('S_MODPOINTS_NAN', { arg: value }) };
if (points < 0) return { error: true, msg: message.format('S_MODPOINTS_TOOSMALL', { arg: points }) };
if (points > 100) return { error: true, msg: message.format('S_MODPOINTS_TOOBIG', { arg: points }) };
setting.points[method] = points;
index = 'S_MODPOINTS_ASSOCIATE';
langParams = { word: method, points };
} else if (['expire', 'expires'].includes(submethod)) {
// eslint-disable-next-line require-unicode-regexp
const timereg = /([0-9]{1,3}\s?[a-z]{1,7})|(0)/i;
const { content } = message;
if (!timereg.test(content)) return { error: true, msg: message.format('S_MODPOINTS_INVALID_TIMESTRING') };
const match = content.match(timereg);
let time = null;
try {
time = timestring(match[1]);
} catch (e) {
//Do nothing
}
if (time === null) return { error: true, msg: message.format('S_MODPOINTS_INVALID_TIMESTRING') };
setting.expirations[method.toUpperCase()] = time;
index = 'S_MODPOINTS_EXPIRE';
langParams = { type: method, time: this.client.resolver.timeAgo(time) };
} else return {
error: true,
msg: message.format('ERR_INVALID_SUBMETHOD', { submethod })
};
} else return {
error: true,
msg: message.format('ERR_INVALID_METHOD', { method })
};
2020-06-09 17:58:54 +02:00
await message.guild._updateSettings({ [this.index]: setting });
return { msg: message.format(index, langParams), error: false };
}
async fields(guild) {
const setting = guild._settings[this.index];
2020-06-09 17:58:54 +02:00
return [
{
name: '》Enabled',
value: setting.enabled,
inline: false
}, {
name: '》Points',
value: Object.keys(setting.points).map(key => `\`${key}: ${setting.points[key]}\``).join(', '),
inline: false
}, {
name: '》Expirations',
2020-06-10 16:48:58 +02:00
value: Object.keys(setting.expirations).map(key => `\`${key}: ${setting.expirations[key] ? this.client.resolver.timeAgo(setting.expirations[key]): 'Never'}\``).join(', '),
2020-06-09 17:58:54 +02:00
inline: false
}
2020-06-10 16:48:58 +02:00
];
}
}
module.exports = ModerationPointsSetting;