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

51 lines
1.2 KiB
JavaScript

const { Infraction } = require('../interfaces/');
class WarnInfraction extends Infraction {
static type = 'WARN';
constructor(client, opts = {}) {
super(client, {
targetType: 'USER',
type: opts.type,
message: opts.message,
executor: opts.executor.user,
target: opts.target.user,
reason: opts.reason,
guild: opts.guild,
channel: opts.channel,
silent: opts.silent,
points: opts.points,
expiration: opts.expiration,
data: opts.data
});
this.client = client;
this.member = opts.target;
}
async execute() {
await this.handle();
return this._succeed();
}
async verify() {
// NOTE: If I want to readd permission checking for escalations.
// const permissions = await this.client.permissions.execute(this.message, this.message.command);
// if(permissions.error) return super._fail('C_WARN_INSUFFICIENTPERMISSIONS');
return super._verify();
}
static get type() {
return 'WARN';
}
}
module.exports = WarnInfraction;