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
|
import {
AllowedMentions,
BotCommand,
clientSendAndPermCheck,
type CommandMessage,
type OptArgType,
type SlashMessage
} from '#lib';
import { ApplicationCommandOptionType, EmbedBuilder, escapeMarkdown, PermissionFlagsBits } from 'discord.js';
export default class PronounsCommand extends BotCommand {
public constructor() {
super('pronouns', {
aliases: ['pronouns', 'pronoun'],
category: 'info',
description: 'Finds the pronouns of a user using https://pronoundb.org.',
usage: ['pronouns <user>'],
examples: ['pronouns IRONM00N'],
args: [
{
id: 'user',
description: 'The user to get pronouns for.',
type: 'globalUser',
prompt: 'Who would you like to view the pronouns of?',
retry: '{error} Choose a valid user to view the pronouns of.',
optional: true,
slashType: ApplicationCommandOptionType.User
}
],
clientPermissions: (m) => clientSendAndPermCheck(m, [PermissionFlagsBits.EmbedLinks], true),
userPermissions: [],
slash: true
});
}
public override async exec(message: CommandMessage | SlashMessage, args: { user: OptArgType<'globalUser'> }) {
const user = args.user ?? message.author;
const author = user.id === message.author.id;
if (message.util.isSlashMessage(message)) await message.interaction.deferReply();
const pronouns = await this.client.utils.getPronounsOf(user);
if (!pronouns) {
return await message.util.reply({
content: `${author ? 'You do' : `${escapeMarkdown(user.tag)} does`} not appear to have any pronouns set. Please${
author ? '' : ' tell them to'
} go to https://pronoundb.org/ and set ${author ? 'your' : 'their'} pronouns.`,
allowedMentions: AllowedMentions.none()
});
} else {
return await message.util.reply({
embeds: [
new EmbedBuilder({
title: `${author ? 'Your' : `${escapeMarkdown(user.tag)}'s`} pronouns:`,
description: pronouns,
footer: {
text: 'Data provided by https://pronoundb.org/'
}
})
]
});
}
}
}
|