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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
import { BushCommand, BushMessage, BushSlashMessage } from '@lib';
import { GuildMember, MessageEmbed } from 'discord.js';
// TODO: Allow looking up a user not in the guild and not cached
// TODO: Re-Implement Status Emojis
// TODO: Add bot information
export default class UserInfoCommand extends BushCommand {
public constructor() {
super('userinfo', {
aliases: ['userinfo', 'user', 'u'],
category: 'info',
description: {
usage: 'userinfo [user]',
examples: ['userinfo 322862723090219008'],
content: 'Gives information about a specified user.'
},
args: [
{
id: 'user',
type: 'member',
prompt: {
start: 'What user would you like to find information about?',
retry: '{error} Choose a valid user to find information about.',
optional: true
},
default: null
}
],
slash: true,
slashOptions: [
{
name: 'user',
description: 'The user you would like to find information about.',
type: 'USER',
required: false
}
],
clientPermissions: ['EMBED_LINKS', 'SEND_MESSAGES'],
userPermissions: ['SEND_MESSAGES']
});
}
public async exec(message: BushMessage | BushSlashMessage, args: { user: GuildMember }): Promise<unknown> {
const user = args?.user || message.member;
const emojis = [];
const superUsers = client.cache.global.superUsers;
const userEmbed: MessageEmbed = new MessageEmbed()
.setTitle(user.user.tag)
.setThumbnail(user.user.avatarURL({ size: 2048, format: 'png', dynamic: true }))
.setTimestamp();
// Flags
if (client.config.owners.includes(user.id)) emojis.push(client.consts.mappings.otherEmojis.DEVELOPER);
if (superUsers.includes(user.id)) emojis.push(client.consts.mappings.otherEmojis.SUPERUSER);
const flags = user.user.flags?.toArray();
if (flags) {
flags.forEach((f) => {
if (client.consts.mappings.userFlags[f]) {
emojis.push(client.consts.mappings.userFlags[f]);
} else emojis.push(f);
});
}
// Since discord bald I just guess if someone has nitro
if (
Number(user.user.discriminator) < 10 ||
client.consts.mappings.maybeNitroDiscrims.includes(user.user.discriminator) ||
user.user.displayAvatarURL({ dynamic: true })?.endsWith('.gif') ||
user.user.flags?.toArray().includes('PARTNERED_SERVER_OWNER')
) {
emojis.push(client.consts.mappings.otherEmojis.NITRO);
}
if (message.guild.ownerId == user.id) emojis.push(client.consts.mappings.otherEmojis.OWNER);
else if (user.permissions.has('ADMINISTRATOR')) emojis.push(client.consts.mappings.otherEmojis.ADMIN);
if (user.premiumSinceTimestamp) emojis.push(client.consts.mappings.otherEmojis.BOOSTER);
const createdAt = user.user.createdAt.toLocaleString(),
createdAtDelta = util.dateDelta(user.user.createdAt),
joinedAt = user.joinedAt?.toLocaleString(),
joinedAtDelta = util.dateDelta(user.joinedAt, 2),
premiumSince = user.premiumSince?.toLocaleString(),
premiumSinceDelta = util.dateDelta(user.premiumSince, 2);
// General Info
const generalInfo = [
`**Mention:** <@${user.id}>`,
`**ID:** ${user.id}`,
`**Created: **${createdAt} (${createdAtDelta} ago)`
];
userEmbed.addField('» General Info', generalInfo.join('\n'));
// Server User Info
const serverUserInfo = [];
if (joinedAt)
serverUserInfo.push(
`**${message.guild.ownerId == user.id ? 'Created Server' : 'Joined'}: ** ${joinedAt} (${joinedAtDelta} ago)`
);
if (premiumSince) serverUserInfo.push(`**Boosting Since:** ${premiumSince} (${premiumSinceDelta} ago)`);
if (user.displayHexColor) serverUserInfo.push(`**Display Color:** ${user.displayHexColor}`);
if (user.id == '322862723090219008' && message.guild.id == client.consts.mappings.guilds.bush)
serverUserInfo.push(`**General Deletions:** 1⅓`);
if (
['384620942577369088', '496409778822709251'].includes(user.id) &&
message.guild.id == client.consts.mappings.guilds.bush
)
serverUserInfo.push(`**General Deletions:** ⅓`);
if (user.nickname) serverUserInfo.push(`**Nickname** ${user.nickname}`);
if (serverUserInfo.length)
userEmbed.addField('» Server Info', serverUserInfo.join('\n')).setColor(user.displayColor || util.colors.default);
// User Presence Info
if (user.presence?.status || user.presence?.clientStatus || user.presence?.activities) {
let customStatus = '';
const activitiesNames = [];
if (user.presence.activities) {
user.presence.activities.forEach((a) => {
if (a.type == 'CUSTOM' && a.state) {
const emoji = `${a.emoji ? `${a.emoji.toString()} ` : ''}`;
customStatus = `${emoji}${a.state}`;
}
activitiesNames.push(`\`${a.name}\``);
});
}
let devices;
if (user.presence.clientStatus) devices = Object.keys(user.presence.clientStatus);
const presenceInfo = [];
if (user.presence.status) presenceInfo.push(`**Status:** ${user.presence.status}`);
if (devices && devices.length)
presenceInfo.push(`**${devices.length - 1 ? 'Devices' : 'Device'}:** ${util.oxford(devices, 'and', '')}`);
if (activitiesNames.length)
presenceInfo.push(`**Activit${activitiesNames.length - 1 ? 'ies' : 'y'}:** ${util.oxford(activitiesNames, 'and', '')}`);
if (customStatus && customStatus.length) presenceInfo.push(`**Custom Status:** ${customStatus}`);
userEmbed.addField('» Presence', presenceInfo.join('\n'));
}
// Important Perms
const perms = [];
if (user.permissions.has('ADMINISTRATOR') || message.guild.ownerId == user.id) {
perms.push('`Administrator`');
} else {
user.permissions.toArray(true).forEach((permission) => {
if (client.consts.mappings.permissions[permission]?.important) {
perms.push(`\`${client.consts.mappings.permissions[permission].name}\``);
}
});
}
if (perms.length) userEmbed.addField('» Important Perms', perms.join(' '));
if (emojis) userEmbed.setDescription('\u200B' /*zero width space*/ + emojis.join(' '));
return await message.util.reply({ embeds: [userEmbed] });
}
}
|