galactic-bot/structure/moderation/infractions/Removerole.js

65 lines
1.7 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() {
if (this.guild.ownerID === this.executor.id) return this._succeed();
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;