2020-07-04 12:23:10 +02:00
|
|
|
/* eslint-disable indent */
|
|
|
|
const { Infraction } = require('../interfaces/');
|
|
|
|
|
2020-07-30 14:41:17 +02:00
|
|
|
class UnbanInfraction extends Infraction {
|
2020-07-04 12:23:10 +02:00
|
|
|
|
|
|
|
constructor(client, opts = {}) {
|
|
|
|
|
|
|
|
super(client, {
|
|
|
|
type: 'UNBAN',
|
2021-05-10 22:09:03 +02:00
|
|
|
targetType: 'USER',
|
2020-07-04 12:23:10 +02:00
|
|
|
message: opts.message,
|
|
|
|
executor: opts.executor.user,
|
|
|
|
target: opts.target,
|
2021-05-10 22:09:03 +02:00
|
|
|
reason: opts.reason,
|
2020-07-04 12:23:10 +02:00
|
|
|
guild: opts.guild,
|
|
|
|
channel: opts.channel,
|
|
|
|
arguments: opts.arguments,
|
|
|
|
silent: opts.silent,
|
|
|
|
duration: opts.duration,
|
2020-07-16 09:54:39 +02:00
|
|
|
hyperlink: opts.hyperlink,
|
|
|
|
points: opts.points,
|
|
|
|
expiration: opts.expiration,
|
|
|
|
data: opts.data
|
2020-07-04 12:23:10 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this.client = client;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async execute() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
await this.guild.members.unban(this.target.id, this._reason);
|
|
|
|
} 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() {
|
2020-07-20 00:42:21 +02:00
|
|
|
|
2020-07-16 09:54:39 +02:00
|
|
|
let ban = null;
|
|
|
|
try {
|
2021-06-09 19:27:30 +02:00
|
|
|
ban = await this.guild.fetchBan(this.target.id);
|
2021-06-09 19:25:37 +02:00
|
|
|
} catch(e) {console.log(e)} //eslint-disable-line no-empty
|
|
|
|
console.log(ban)
|
2020-07-16 09:54:39 +02:00
|
|
|
if(!ban) return this._fail('C_UNBAN_NOTBANNED');
|
|
|
|
|
|
|
|
return super._verify();
|
|
|
|
}
|
|
|
|
|
2020-07-04 12:23:10 +02:00
|
|
|
}
|
|
|
|
|
2020-07-30 14:41:17 +02:00
|
|
|
module.exports = UnbanInfraction;
|