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
|
import { Message, MessageEmbed } from 'discord.js';
import got from 'got';
import { SlashCommandOption } from '../../lib/extensions/BushClientUtil';
import { BushCommand } from '../../lib/extensions/BushCommand';
import { BushInteractionMessage } from '../../lib/extensions/BushInteractionMessage';
interface Capeperms {
success: boolean;
perms: User[];
}
interface User {
_id: string;
perms: string[];
}
export default class CapePermissionsCommand extends BushCommand {
private nameMap = {
patreon1: 'Patreon Tier 1',
patreon2: 'Patreon Tier 2',
fade: 'Fade',
contrib: 'Contributor',
nullzee: 'Nullzee',
gravy: 'ThatGravyBoat',
space: 'Space',
mcworld: 'Minecraft World',
lava: 'Lava',
packshq: 'PacksHQ',
mbstaff: "Moulberry's Bush staff",
thebakery: "Biscuit's Bakery",
negative: 'Negative',
void: 'Void',
ironmoon: 'IRONM00N',
krusty: 'Krusty',
furf: 'FurfSky Reborn',
soldier: 'Soldier',
dsm: "Danker's Skyblock Mod",
zera: 'Zera',
tunnel: 'Tunnel',
alexxoffi: 'Alexxoffi',
parallax: 'Parallax',
jakethybro: 'Jakethybro',
planets: 'Planets'
};
public constructor() {
super('capeperms', {
aliases: ['capeperms', 'capeperm', 'capepermissions', 'capepermission'],
category: "Moulberry's Bush",
description: {
content: 'A command to see what capes someone has access to.',
usage: 'capeperms <user>',
examples: ['capeperms IRONM00N']
},
args: [
{
id: 'user',
type: 'string',
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',
slashOptions: [
{
type: 'STRING',
name: 'user',
description: 'The username of the player to see the cape permissions of',
required: true
}
],
slash: true
});
}
private async getResponse(user: string): Promise<{ content?: string; embeds?: MessageEmbed[] }> {
let capeperms: Capeperms, uuid: string;
try {
uuid = await this.client.util.mcUUID(user);
} catch (e) {
return { content: `${this.client.util.emojis.error} \`${user}\` doesn't appear to be a valid username.` };
}
try {
capeperms = await got.get('http://moulberry.codes/permscapes.json').json();
} catch (error) {
capeperms = null;
}
if (capeperms == null) {
return { content: `${this.client.util.emojis.error} There was an error finding cape perms for \`${user}\`.` };
} else {
if (capeperms?.perms) {
const foundUser = capeperms.perms.find((u) => u._id === uuid);
if (foundUser == null)
return { content: `${this.client.util.emojis.error} \`${user}\` does not appear to have any capes.` };
const userPerm: string[] = foundUser.perms;
const embed = this.client.util
.createEmbed(this.client.util.colors.default)
.setTitle(`${user}'s Capes`)
.setDescription(userPerm.join('\n'));
return { embeds: [embed] };
} else {
return { content: `${this.client.util.emojis.error} There was an error finding cape perms for ${user}.` };
}
}
}
public async exec(message: Message, { user }: { user: string }): Promise<void> {
await message.reply(await this.getResponse(user));
}
public async execSlash(message: BushInteractionMessage, { user }: { user: SlashCommandOption<string> }): Promise<void> {
await message.reply(await this.getResponse(user.value));
}
}
|