2020-05-24 23:43:36 +02:00
|
|
|
const { Setting } = require('../../../../interfaces/');
|
|
|
|
|
|
|
|
class VoiceLogSettings extends Setting {
|
|
|
|
|
|
|
|
constructor(client) {
|
|
|
|
|
|
|
|
super(client, {
|
|
|
|
name: 'voiceLog',
|
|
|
|
module: 'moderation',
|
|
|
|
aliases: [
|
|
|
|
'vcLog',
|
|
|
|
'vcLogs',
|
|
|
|
'voiceLogs'
|
|
|
|
],
|
|
|
|
usage: '<value>',
|
|
|
|
guarded: true,
|
|
|
|
resolve: 'GUILD',
|
|
|
|
examples: [
|
|
|
|
'voicelog reset',
|
|
|
|
'voicelog on|off',
|
|
|
|
'voicelog #channel'
|
|
|
|
],
|
|
|
|
default: {
|
|
|
|
voiceLog: {
|
2020-05-25 13:13:34 +02:00
|
|
|
channel: null
|
2020-05-24 23:43:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
this.client = client;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async handle(message, params) {
|
|
|
|
|
|
|
|
// eslint-disable-next-line init-declarations
|
|
|
|
let index, changes, action;
|
|
|
|
// eslint-disable-next-line prefer-const
|
|
|
|
let [method, ...args] = params;
|
|
|
|
method = method.toLowerCase();
|
|
|
|
|
|
|
|
const setting = message.guild._settings[this.index] || this.default[this.index];
|
|
|
|
const { guild } = message;
|
|
|
|
|
2020-05-25 13:13:34 +02:00
|
|
|
if (this.client.resolver.resolveBoolean(method) === false) {
|
2020-05-24 23:43:36 +02:00
|
|
|
|
2020-05-25 13:13:34 +02:00
|
|
|
setting.channel = null;
|
2020-05-24 23:43:36 +02:00
|
|
|
index = 'S_VOICELOG_TOGGLE'
|
|
|
|
changes = message.format('ON_OFF_TOGGLE', { toggle: false }, true);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
const channel = guild.resolveChannel(method);
|
|
|
|
if (!channel) return {
|
|
|
|
msg: message.format('ERR_CHANNEL_RESOLVE', { resolveable: method }),
|
|
|
|
error: true
|
|
|
|
};
|
|
|
|
|
|
|
|
index = 'S_VOICELOG_CHANNEL';
|
|
|
|
changes = channel.name;
|
|
|
|
setting.channel = channel.id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
await message.guild._updateSettings({ [this.index]: setting });
|
|
|
|
return {
|
|
|
|
msg: message.format(index, { changed: changes instanceof Array ? changes?.join(', ') : changes || undefined, action: message.format(action) })
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async fields(guild) {
|
|
|
|
const setting = guild._settings[this.index];
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
name: '》Channel',
|
|
|
|
value: guild.resolveChannel(setting?.channel) || '`N/A`',
|
|
|
|
inline: true
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = VoiceLogSettings;
|