aboutsummaryrefslogtreecommitdiff
path: root/src/commands/utilities/uuid.ts
blob: 02ca506e55a45110562805af3d17879fce5f1180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { BushCommand, BushMessage } from '../../lib';

export default class UuidCommand extends BushCommand {
	public constructor() {
		super('uuid', {
			aliases: ['uuid'],
			category: 'utilities',
			description: {
				content: "Find someone's minecraft uuid",
				usage: 'uuid <ign>',
				examples: ['uuid ironm00n']
			},
			args: [
				{
					id: 'ign',
					customType: /\w{1,16}/im,

					prompt: {
						start: 'What ign would you like to find the uuid of?',
						retry: '{error} Choose a valid ign.',
						optional: false
					}
				}
			],
			cooldown: 4000,
			ratelimit: 1,
			clientPermissions: ['SEND_MESSAGES']
		});
	}

	// eslint-disable-next-line @typescript-eslint/no-explicit-any
	public async exec(message: BushMessage, { ign }: { ign: { match: any[]; matches: any[] } }): Promise<unknown> {
		if (!ign) return await message.util.reply(`${util.emojis.error} Please enter a valid ign.`);
		const readableIGN = ign.match[0];
		try {
			const uuid = await util.findUUID(readableIGN);
			return await message.util.reply(`The uuid for \`${readableIGN}\` is \`${uuid}\``);
		} catch (e) {
			return await message.util.reply(`${util.emojis.error} Could not find an uuid for \`${readableIGN}\`.`);
		}
	}
}