community-relations/src/commands/unban.ts

37 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-04-16 10:14:13 -04:00
import { Message, User } from 'eris';
2020-04-16 10:09:44 -04:00
import { Client, Command } from '../class';
export default class Unban extends Command {
constructor(client: Client) {
super(client);
this.name = 'unban';
this.description = 'Unbans a member from the guild.';
this.usage = 'unban <user id> [reason]';
2020-04-20 13:57:08 -04:00
this.permissions = 3;
2020-04-16 10:09:44 -04:00
this.guildOnly = true;
this.enabled = true;
}
public async run(message: Message, args: string[]) {
try {
2020-04-16 10:14:13 -04:00
let user: User;
try {
user = await this.client.getRESTUser(args[0]);
2020-04-16 10:14:13 -04:00
} catch {
return this.error(message.channel, 'Could find find user.');
}
try {
await this.client.guilds.get(this.client.config.guildID).getBan(args[0]);
} catch {
return this.error(message.channel, 'This user is not banned.');
2020-04-16 10:14:13 -04:00
}
2020-04-16 10:09:44 -04:00
message.delete();
await this.client.util.moderation.unban(user.id, message.member, args.slice(1).join(' '));
return this.success(message.channel, `${user.username}#${user.discriminator} has been unbanned.`);
2020-04-16 10:09:44 -04:00
} catch (err) {
return this.client.util.handleError(err, message, this, false);
}
}
}