galactic-bot/structure/client/components/settings/moderation/ModerationPoints.js
2020-07-11 23:36:55 +03:00

183 lines
6.8 KiB
JavaScript

const { Setting } = require('../../../../interfaces/');
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
},
associations: {},
multiplier: false //expiration = expiration*points
}
}
});
}
async handle(message, args) {
const setting = message.guild._settings[this.index] || this.default[this.index];
// eslint-disable-next-line prefer-const
let [method, ...params] = args,
index = null,
langParams = {};
method = method.toLowerCase();
const { resolver } = this.client;
if (resolver.resolveBoolean(method)) {
setting.enabled = true;
index = 'S_MODPOINTS_TOGGLE';
langParams = { toggle: message.format('ON_OFF_TOGGLE', { toggle: true }, true) };
} else if (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 (resolver.resolveBoolean(bool)) setting.multiplier = true;
else if (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 resolver.resolveMethod(params, null, Object.keys(setting.associations));
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);
const time = resolver.resolveTime(match[1]);
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 })
};
await message.guild._updateSettings({ [this.index]: setting });
return { msg: message.format(index, langParams), error: false };
}
async fields(guild) {
const setting = guild._settings[this.index];
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',
value: Object.keys(setting.expirations).map((key) => `\`${key}: ${setting.expirations[key] ? this.client.resolver.timeAgo(setting.expirations[key]): 'Never'}\``).join(', '),
inline: false
}
];
}
}
module.exports = ModerationPointsSetting;