aboutsummaryrefslogtreecommitdiff
path: root/src/commands/moulberry-bush/capePerms.ts
blob: d1850c8417a079d95f91d51b7ed3b3104b93f0cc (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
import { Constants } from 'discord-akairo';
import { MessageEmbed } from 'discord.js';
import got from 'got';
import { BushCommand } from '../../lib/extensions/BushCommand';
import { BushMessage } from '../../lib/extensions/BushMessage';

export default class CapePermissionsCommand extends BushCommand {
	private nameMap = {
		patreon1: 'Patreon Tier 1',
		patreon2: 'Patreon Tier 2',
		fade: 'Fade',
		contrib: 'Contributor',
		nullzee: 'Patreon Tier 1',
		gravy: 'Patreon Tier 1',
		space: 'Patreon Tier 1',
		mcworld: 'Patreon Tier 1',
		lava: 'Patreon Tier 1',
		packshq: 'Patreon Tier 1',
		mbstaff: 'Patreon Tier 1',
		thebakery: 'Patreon Tier 1',
		negative: 'Patreon Tier 1',
		void: 'Patreon Tier 1',
		ironmoon: 'Patreon Tier 1',
		krusty: 'Patreon Tier 1',
		furf: 'Patreon Tier 1',
		soldier: 'Patreon Tier 1',
		dsm: 'Patreon Tier 1',
		zera: 'Patreon Tier 1',
		tunnel: 'Patreon Tier 1',
		alexxoffi: 'Patreon Tier 1',
		parallax: 'Patreon Tier 1',
		jakethybro: 'Patreon Tier 1',
		planets: 'Patreon Tier 1'
	};

	public constructor() {
		super('capepermissions', {
			aliases: ['capeperms', 'capeperm', 'capepermissions'],
			category: "Moulberry's Bush",
			description: {
				content: 'A command to see what capes someone has access to.',
				usage: 'capeperms <user>',
				examples: ['capeperms IRONM00N']
			},
			args: [
				{
					id: 'ign',
					type: Constants.ArgumentTypes.STRING,
					match: Constants.ArgumentMatches.PHRASE,
					prompt: {
						start: 'Who would you like to see the cape permissions of?',
						retry: '{error} Choose someone to see the capes their available capes.',
						optional: false
					}
				}
			],
			clientPermissions: ['EMBED_LINKS', 'SEND_MESSAGES'],
			channel: 'guild',
			slash: true,
			slashOptions: [
				{
					name: 'ign',
					description: 'The ign of the player you would like to view the capes permissions of.',
					type: 'STRING',
					required: true
				}
			]
		});
	}

	public async exec(message: BushMessage, args: { ign: string }): Promise<unknown> {
		interface Capeperms {
			success: boolean;
			perms: User[];
		}

		interface User {
			_id: string;
			perms: string[];
		}

		let capeperms: Capeperms, uuid: string;
		try {
			uuid = await this.client.util.mcUUID(args.ign);
		} catch (e) {
			return await message.util.reply(
				`${this.client.util.emojis.error} \`${args.ign}\` doesn't appear to be a valid username.`
			);
		}

		try {
			capeperms = await got.get('https://moulberry.codes/permscapes.json').json();
		} catch (error) {
			capeperms = null;
		}
		if (capeperms == null) {
			return await message.util.reply(
				`${this.client.util.emojis.error} There was an error finding cape perms for \`${args.ign}\`.`
			);
		} else {
			if (capeperms?.perms) {
				let index = null;

				for (let i = 0; i < capeperms.perms.length; i++) {
					if (capeperms.perms[i]._id == uuid) {
						index = i;
						break;
					}
				}
				if (index == null)
					return await message.util.reply(
						`${this.client.util.emojis.error} \`${args.ign}\` does not appear to have any capes.`
					);
				const userPerm: string[] = capeperms.perms[index].perms;
				const embed = new MessageEmbed()
					.setTitle(`${args.ign}'s Capes`)
					.setDescription(userPerm.join('\n'))
					.setColor(this.client.util.colors.default);
				await message.util.reply({ embeds: [embed] });
			} else {
				return await message.util.reply(
					`${this.client.util.emojis.error} There was an error finding cape perms for ${args.ign}.`
				);
			}
		}
	}
}