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

66 lines
1.7 KiB
JavaScript
Raw Normal View History

const { Infraction } = require('../interfaces/');
2020-07-16 09:54:39 +02:00
const { GuildMember } = require('../../extensions/');
2020-07-30 14:41:17 +02:00
class SoftbanInfraction extends Infraction {
constructor(client, opts = {}) {
super(client, {
type: 'SOFTBAN',
targetType: 'user',
message: opts.message,
executor: opts.executor.user,
2020-07-16 09:54:39 +02:00
target: opts.target instanceof GuildMember ? opts.target.user : opts.target,
reason: opts.reason || 'N/A',
guild: opts.guild,
channel: opts.channel,
arguments: opts.arguments,
silent: opts.silent,
color: 0xdb36fc,
dictionary: {
past: 'softbanned',
present: 'softban'
2020-07-16 09:54:39 +02:00
},
points: opts.points,
expiration: opts.expiration,
data: opts.data
});
this.client = client;
this.member = opts.target;
}
async execute() {
let days = 1;
if(this.arguments.days) days = this.arguments.days.value;
try {
await this.guild.members.ban(this.target.id, {
reason: this._reason,
days
});
await this.guild.members.unban(this.target.id, this._reason);
} catch(error) {
return this._fail('INFRACTION_ERROR');
}
await this.handle();
return this._succeed();
}
2020-07-16 09:54:39 +02:00
verify() {
if(this.member instanceof GuildMember) {
2020-07-20 00:42:21 +02:00
if(!this.member.bannable) return this._fail('C_SOFTBAN_CANNOTBESOFTBANNED');
2020-07-16 09:54:39 +02:00
}
return super._verify();
}
}
2020-07-30 14:41:17 +02:00
module.exports = SoftbanInfraction;