forked from Galactic/galactic-bot
69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
/* eslint-disable indent */
|
|
const { Infraction } = require('../interfaces/');
|
|
|
|
class RemoveroleInfraction extends Infraction {
|
|
|
|
constructor(client, opts = {}) {
|
|
|
|
super(client, {
|
|
type: 'REMOVEROLE',
|
|
targetType: 'user',
|
|
message: opts.message,
|
|
executor: opts.executor.user,
|
|
target: opts.target,
|
|
reason: opts.reason || 'N/A',
|
|
guild: opts.guild,
|
|
channel: opts.channel,
|
|
arguments: opts.arguments,
|
|
silent: opts.silent,
|
|
duration: opts.duration,
|
|
color: 0xff3333,
|
|
dictionary: {
|
|
past: 'removed role from',
|
|
present: 'remove role from'
|
|
},
|
|
points: opts.points,
|
|
expiration: opts.expiration,
|
|
data: opts.data
|
|
});
|
|
|
|
this.client = client;
|
|
this.member = opts.target;
|
|
this.executorMember = opts.executor;
|
|
|
|
}
|
|
|
|
async execute() {
|
|
|
|
try {
|
|
await this.member.roles.remove(this.data.roles, this._reason);
|
|
} catch(error) {
|
|
return this._fail('INFRACTION_ERROR');
|
|
}
|
|
|
|
await this.handle();
|
|
return this._succeed();
|
|
|
|
}
|
|
|
|
async verify() {
|
|
|
|
const missing = this.channel.permissionsFor(this.guild.me).missing(['MANAGE_ROLES']);
|
|
if(missing.length > 0) {
|
|
return super._fail('C_REMOVEROLE_INSUFFICIENTPERMISSIONS');
|
|
}
|
|
|
|
const { highest } = this.executorMember.roles;
|
|
const filtered = this.data.roles.filter((r) => r.comparePositionTo(highest) < 0);
|
|
if(filtered.length === 0) {
|
|
return super._fail('C_REMOVEROLE_ROLEHIERARCHY', { plural: filtered.length === 1 ? '' : 's' });
|
|
}
|
|
|
|
this.data.roles = filtered;
|
|
return super._verify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = RemoveroleInfraction; |