48 lines
1.1 KiB
JavaScript
48 lines
1.1 KiB
JavaScript
|
const { Infraction } = require('../interfaces/');
|
||
|
|
||
|
class Kick extends Infraction {
|
||
|
|
||
|
constructor(client, opts = {}) {
|
||
|
|
||
|
super(client, {
|
||
|
type: 'KICK',
|
||
|
targetType: 'user',
|
||
|
message: opts.message,
|
||
|
executor: opts.executor.user,
|
||
|
target: opts.target.user,
|
||
|
reason: opts.reason || 'N/A',
|
||
|
guild: opts.guild,
|
||
|
channel: opts.channel,
|
||
|
arguments: opts.arguments,
|
||
|
color: 0xe8d54e,
|
||
|
dictionary: {
|
||
|
past: 'kicked',
|
||
|
present: 'kick'
|
||
|
}
|
||
|
});
|
||
|
|
||
|
this.client = client;
|
||
|
this.member = opts.target;
|
||
|
|
||
|
}
|
||
|
|
||
|
async execute() {
|
||
|
|
||
|
if(!this.member.kickable) {
|
||
|
return this._fail('C_KICK_INSUFFICIENTPERMISSIONS');
|
||
|
}
|
||
|
|
||
|
try {
|
||
|
// await this.member.kick(this._reason);
|
||
|
} catch(error) {
|
||
|
return this._fail('INFRACTION_ERROR');
|
||
|
}
|
||
|
|
||
|
// await this.log();
|
||
|
return this._succeed();
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
module.exports = Kick;
|