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

80 lines
2.1 KiB
JavaScript
Raw Normal View History

/* eslint-disable indent */
const { Infraction } = require('../interfaces/');
const { GuildMember } = require('../../extensions/');
2020-07-30 14:41:17 +02:00
class BanInfraction extends Infraction {
static type = 'BAN';
constructor(client, opts = {}) {
super(client, {
targetType: 'USER',
type: opts.type,
guild: opts.guild,
channel: opts.channel,
message: opts.message,
executor: opts.executor.user,
target: opts.target instanceof GuildMember ? opts.target.user : opts.target,
reason: opts.reason,
arguments: opts.arguments,
silent: opts.silent,
duration: opts.duration,
2020-07-16 09:54:39 +02:00
points: opts.points,
expiration: opts.expiration,
data: opts.data
});
this.client = client;
}
async execute() {
let days = 0;
2021-06-18 02:11:55 +02:00
if(this.message && this.message._caller === 'hardban') {
days = 1;
if(this.arguments.days) {
days = this.arguments.days.value;
}
}
try {
await this.guild.members.ban(this.target.id, {
reason: this._reason,
days
});
} catch(error) {
return this._fail('INFRACTION_ERROR');
}
const callbacks = this.client.moderationManager.callbacks.filter((c) => c.infraction.type === 'BAN'
&& c.infraction.target === this.target.id);
if(callbacks.size > 0) callbacks.map((c) => this.client.moderationManager._removeExpiration(c));
await this.handle();
return this._succeed();
}
2020-07-16 09:54:39 +02:00
async verify() {
if(this.target instanceof GuildMember) {
2020-07-16 09:54:39 +02:00
if(!this.member.bannable) return super._fail('C_BAN_CANNOTBEBANNED');
}
let alreadyBanned = null;
try {
alreadyBanned = await this.guild.fetchBan(this.member.id);
} catch(e) {} //eslint-disable-line no-empty
if(alreadyBanned) return super._fail('C_BAN_ALREADYBANNED');
return super._verify();
}
}
2020-07-30 14:41:17 +02:00
module.exports = BanInfraction;