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

50 lines
1.1 KiB
JavaScript
Raw Normal View History

const { Infraction } = require('../interfaces/');
class Warn extends Infraction {
constructor(client, opts = {}) {
super(client, {
type: 'WARN',
targetType: 'user',
message: opts.message,
executor: opts.executor.user,
target: opts.target.user,
reason: opts.reason || 'N/A',
guild: opts.guild,
channel: opts.channel,
silent: opts.silent,
color: 0xffe15c,
dictionary: {
past: 'warned',
present: 'warn'
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() {
await this.handle();
return this._succeed();
}
2020-07-28 22:40:15 +02:00
async verify() {
const permissions = await this.client.moderationManager.permissions.execute(this.message, this.message.command);
if(permissions.error) return super._fail('C_WARN_INSUFFICIENTPERMISSIONS');
2020-07-28 22:40:15 +02:00
return super._verify();
}
}
module.exports = Warn;