1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
|
20 |
import { formatDistanceStrict, formatDistanceToNowStrict } from "date-fns"; |
21 |
import { EmbedBuilder, GuildMember, PermissionFlagsBits, SlashCommandBuilder, User, userMention } from "discord.js"; |
22 |
import Command, { ArgumentType, BasicCommandContext, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
23 |
import { logError } from "../../utils/logger"; |
24 |
import { flagsToString } from "../../utils/userflags"; |
25 |
|
26 |
export default class UserInfoCommand extends Command { |
27 |
public readonly name = "userinfo"; |
28 |
public readonly validationRules: ValidationRule[] = [ |
29 |
{ |
30 |
types: [ArgumentType.User], |
31 |
name: "user", |
32 |
typeErrorMessage: "Invalid user mention or ID given", |
33 |
entityNotNull: true, |
34 |
entityNotNullErrorMessage: "That user could not be found!", |
35 |
requiredErrorMessage: "Please provide a user!" |
36 |
} |
37 |
]; |
38 |
public readonly permissions = [PermissionFlagsBits.BanMembers, PermissionFlagsBits.ManageGuild]; |
39 |
public readonly permissionMode = "or"; |
40 |
|
41 |
public readonly description = "Shows information about a user."; |
42 |
public readonly slashCommandBuilder = new SlashCommandBuilder().addUserOption(option => |
43 |
option.setName("user").setDescription("The target user").setRequired(true) |
44 |
); |
45 |
|
46 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
47 |
await this.deferIfInteraction(message); |
48 |
|
49 |
const user: User = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
50 |
let member: GuildMember | null = null; |
51 |
|
52 |
try { |
53 |
member = message.guild!.members.cache.get(user.id) ?? (await message.guild!.members.fetch(user.id)); |
54 |
} catch (e) { |
55 |
logError(e); |
56 |
} |
57 |
|
58 |
const flags = flagsToString(user.flags!); |
59 |
const fields = [ |
60 |
{ |
61 |
name: "User", |
62 |
value: `ID: ${user.id}\nUsername: ${user.username}\nMention: ${userMention( |
63 |
user.id |
64 |
)}\nAccount created at: ${user.createdAt?.toLocaleString()} (${formatDistanceToNowStrict( |
65 |
user.createdAt ?? new Date(), |
66 |
{ addSuffix: true } |
67 |
)})`, |
68 |
inline: true |
69 |
}, |
70 |
{ |
71 |
name: "Member", |
72 |
value: member |
73 |
? `Completed Membership Screening: ${member.pending ? "No" : "Yes"}\nNickname: ${ |
74 |
member.nickname ?? "*Not set*" |
75 |
}\nJoined At: ${member.joinedAt?.toLocaleString()} (${formatDistanceToNowStrict( |
76 |
member.joinedAt ?? new Date(), |
77 |
{ addSuffix: true } |
78 |
)})` + |
79 |
(member.premiumSince |
80 |
? `\nBoosting Since: ${member.premiumSince?.toLocaleString()} (${formatDistanceToNowStrict( |
81 |
member.premiumSince ?? new Date(), |
82 |
{ addSuffix: true } |
83 |
)})` |
84 |
: "") |
85 |
: "This user isn't a member of this server", |
86 |
inline: true |
87 |
}, |
88 |
{ |
89 |
name: "Flags", |
90 |
value: flags.length === 0 ? "*No flags*" : flags.join("\n") |
91 |
}, |
92 |
{ |
93 |
name: "Bot?", |
94 |
value: user.bot ? "Yes" : "No" |
95 |
} |
96 |
]; |
97 |
|
98 |
if (member?.communicationDisabledUntil) { |
99 |
fields.push({ |
100 |
name: "Timed-out until", |
101 |
value: `${member.communicationDisabledUntil.toLocaleDateString()} (${formatDistanceStrict( |
102 |
member.communicationDisabledUntil, |
103 |
new Date() |
104 |
)})` |
105 |
}); |
106 |
} |
107 |
|
108 |
if (member?.voice && member?.voice.channel) { |
109 |
fields.push({ |
110 |
name: "Current Voice Channel", |
111 |
value: `${member?.voice.channel.toString()} (${member?.voice.channel.id})` |
112 |
}); |
113 |
} |
114 |
|
115 |
if (member?.roles.highest.id !== member?.guild.id) { |
116 |
fields.push({ |
117 |
name: "Highest Role", |
118 |
value: `${member?.roles.highest.toString()} (${member?.roles.highest.id})` |
119 |
}); |
120 |
} |
121 |
|
122 |
await this.deferredReply(message, { |
123 |
embeds: [ |
124 |
new EmbedBuilder({ |
125 |
author: { |
126 |
name: user.username, |
127 |
iconURL: user.displayAvatarURL() |
128 |
}, |
129 |
color: 0x007bff, |
130 |
fields, |
131 |
footer: { text: user.id } |
132 |
}) |
133 |
.setColor(member?.user!.hexAccentColor ? member?.user!.hexAccentColor! : "#007bff") |
134 |
.setTimestamp() |
135 |
] |
136 |
}); |
137 |
} |
138 |
} |