galactic-bot/structure/moderation/infractions/Softban.js
2020-07-28 13:40:15 -07:00

71 lines
1.8 KiB
JavaScript

const { Infraction } = require('../interfaces/');
const { GuildMember } = require('../../extensions/');
class Softban extends Infraction {
constructor(client, opts = {}) {
super(client, {
type: 'SOFTBAN',
targetType: 'user',
message: opts.message,
executor: opts.executor.user,
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'
},
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();
}
verify() {
const missing = this.guild._checkPermissions(this.message, 'command:softban');
if(missing.length > 0) {
return super._fail('C_SOFTBAN_INSUFFICIENTPERMISSIONS');
}
if(this.member instanceof GuildMember) {
if(!this.member.bannable) return this._fail('C_SOFTBAN_CANNOTBESOFTBANNED');
}
return super._verify();
}
}
module.exports = Softban;