forked from Galactic/galactic-bot
51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
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'
|
|
},
|
|
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() {
|
|
|
|
const missing = this.guild._checkPermissions(this.message, 'command:warn');
|
|
if(missing.length > 0) {
|
|
return super._fail('C_UNMUTE_INSUFFICIENTPERMISSIONS');
|
|
}
|
|
|
|
return super._verify();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Warn; |