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, silent: opts.silent, color: 0xff7a33, dictionary: { past: 'kicked', present: 'kick' }, points: opts.points, expiration: opts.expiration, data: opts.data }); this.client = client; this.member = opts.target; } async execute() { try { await this.member.kick(this._reason); } catch(error) { return this._fail('INFRACTION_ERROR'); } await this.handle(); return this._succeed(); } verify() { const missing = this.channel.permissionsFor(this.guild.me).missing(['KICK_MEMBERS']); if(missing.length > 0) { return super._fail('C_KICK_INSUFFICIENTPERMISSIONS'); } if(!this.member.kickable) return this._fail('C_KICK_CANNOTBEKICKED'); return super._verify(); } } module.exports = Kick;