101 lines
3.8 KiB
JavaScript
101 lines
3.8 KiB
JavaScript
|
/* eslint-disable indent */
|
||
|
const { Infraction } = require('../interfaces/');
|
||
|
|
||
|
class Mute extends Infraction {
|
||
|
|
||
|
constructor(client, opts = {}) {
|
||
|
|
||
|
super(client, {
|
||
|
type: 'MUTE',
|
||
|
targetType: 'user',
|
||
|
message: opts.message,
|
||
|
executor: opts.executor.user,
|
||
|
target: opts.target.user,
|
||
|
reason: opts.reason || 'N/A',
|
||
|
guild: opts.guild,
|
||
|
channel: opts.channel,
|
||
|
arguments: opts.arguments,
|
||
|
silent: opts.silent,
|
||
|
duration: opts.duration,
|
||
|
color: 0xf7b045,
|
||
|
dictionary: {
|
||
|
past: 'muted',
|
||
|
present: 'mute'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
this.client = client;
|
||
|
this.member = opts.target;
|
||
|
|
||
|
}
|
||
|
|
||
|
async execute() {
|
||
|
|
||
|
const setting = this.guild._settings.mute;
|
||
|
|
||
|
let role = null;
|
||
|
if(setting.type !== 2) {
|
||
|
if(!setting.role) return this._fail(this.message.format('C_MUTE_NOMUTEROLE'), true);
|
||
|
role = await this.client.resolver.resolveRole(setting.role, true, this.guild);
|
||
|
|
||
|
if(!role) {
|
||
|
this.guild._updateSettings({
|
||
|
mute: {
|
||
|
...setting,
|
||
|
role: null
|
||
|
}
|
||
|
});
|
||
|
return this._fail(this.message.format('C_MUTE_INVALIDMUTEROLE'), true);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//check to see if they're already muted, and if they are, delete the callback and replace it with the new one.
|
||
|
//btw, add current "mute type setting" to callback, incase the setting is changed as they're muted.
|
||
|
//also add "removed roles" to callback, to return the missing roles for mutetype 1 and 2.
|
||
|
|
||
|
let removed = [];
|
||
|
switch(setting.type) {
|
||
|
case 0:
|
||
|
try {
|
||
|
this.member.roles.add(role, this._reason);
|
||
|
} catch(e) {
|
||
|
return this._fail(this.message.format('C_MUTE_1FAIL'));
|
||
|
}
|
||
|
break;
|
||
|
case 1:
|
||
|
removed = this.member.roles.cache.filter((r) => !r.managed && r.comparePositionTo(this.guild.me.roles.highest) < 0 && r.id !== this.guild.id);
|
||
|
try {
|
||
|
this.member.roles.set([
|
||
|
...this.member.roles.cache.filter((r) => r.managed || r.comparePositionTo(this.guild.me.roles.highest) > 0 || r.id === this.guild.id).array(),
|
||
|
role
|
||
|
], this._reason);
|
||
|
} catch(error) {
|
||
|
this.client.logger.error(`Mute infraction failed to calculate removeable roles, might want to check this out.\n${error.stack || error}`);
|
||
|
return this._fail(this.message.format('C_MUTE_2FAIL'));
|
||
|
}
|
||
|
break;
|
||
|
case 2:
|
||
|
removed = this.member.roles.cache.filter((r) => !r.managed && r.comparePositionTo(this.guild.me.roles.highest) < 0 && r.id !== this.guild.id);
|
||
|
try {
|
||
|
this.member.roles.set(this.member.roles.cache.filter((r) => r.managed || r.comparePositionTo(this.guild.me.roles.highest) > 0 || r.id === this.guild.id), this._reason);
|
||
|
} catch(error) {
|
||
|
this.client.logger.error(`Mute infraction failed to calculate removeable roles, might want to check this out.\n${error.stack || error}`);
|
||
|
return this._fail(this.message.format('C_MUTE_3FAIL'));
|
||
|
}
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
this.data = {
|
||
|
removedRoles: removed.map((r) => r.id),
|
||
|
muteType: setting.type,
|
||
|
muteRole: role.id
|
||
|
}; //Info will be saved in database and into the callback when resolved.
|
||
|
|
||
|
await this.log();
|
||
|
return this._succeed();
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = Mute;
|