community-relations/src/commands/unban.ts

38 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]';
this.permissions = 2;
this.guildOnly = true;
this.enabled = true;
}
public async run(message: Message, args: string[]) {
try {
2020-04-17 08:42:25 -04:00
const guild = this.client.util.guildFromMessage(message);
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 {
2020-04-17 08:42:25 -04:00
await guild.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);
}
}
}