1 |
rakinar2 |
577 |
/** |
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 UserLookupCommand extends Command { |
27 |
|
|
public readonly name = "userlookup"; |
28 |
|
|
public readonly validationRules: ValidationRule[] = [ |
29 |
|
|
{ |
30 |
|
|
types: [ArgumentType.User], |
31 |
|
|
name: "user", |
32 |
|
|
errors: { |
33 |
|
|
"type:invalid": "Invalid user mention or ID given", |
34 |
|
|
"entity:null": "That user could not be found!", |
35 |
|
|
required: "Please provide a user!" |
36 |
|
|
}, |
37 |
|
|
entity: { |
38 |
|
|
notNull: true |
39 |
|
|
} |
40 |
|
|
} |
41 |
|
|
]; |
42 |
|
|
public readonly permissions = [PermissionFlagsBits.BanMembers, PermissionFlagsBits.ManageGuild]; |
43 |
|
|
public readonly permissionMode = "or"; |
44 |
|
|
|
45 |
|
|
public readonly description = "Shows information about a user."; |
46 |
|
|
public readonly slashCommandBuilder = new SlashCommandBuilder().addUserOption(option => |
47 |
|
|
option.setName("user").setDescription("The target user").setRequired(true) |
48 |
|
|
); |
49 |
|
|
|
50 |
|
|
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
51 |
|
|
await this.deferIfInteraction(message); |
52 |
|
|
|
53 |
|
|
const user: User = context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user", true); |
54 |
|
|
let member: GuildMember | null = null; |
55 |
|
|
|
56 |
|
|
try { |
57 |
|
|
member = message.guild!.members.cache.get(user.id) ?? (await message.guild!.members.fetch(user.id)); |
58 |
|
|
} catch (e) { |
59 |
|
|
logError(e); |
60 |
|
|
} |
61 |
|
|
|
62 |
|
|
const flags = flagsToString(user.flags!); |
63 |
|
|
const fields = [ |
64 |
|
|
{ |
65 |
|
|
name: "User", |
66 |
|
|
value: `ID: ${user.id}\nUsername: ${user.username}\nMention: ${userMention( |
67 |
|
|
user.id |
68 |
|
|
)}\nAccount created at: ${user.createdAt?.toLocaleString()} (${formatDistanceToNowStrict( |
69 |
|
|
user.createdAt ?? new Date(), |
70 |
|
|
{ addSuffix: true } |
71 |
|
|
)})`, |
72 |
|
|
inline: true |
73 |
|
|
}, |
74 |
|
|
{ |
75 |
|
|
name: "Member", |
76 |
|
|
value: member |
77 |
|
|
? `Completed Membership Screening: ${member.pending ? "No" : "Yes"}\nNickname: ${ |
78 |
|
|
member.nickname ?? "*Not set*" |
79 |
|
|
}\nJoined At: ${member.joinedAt?.toLocaleString()} (${formatDistanceToNowStrict( |
80 |
|
|
member.joinedAt ?? new Date(), |
81 |
|
|
{ addSuffix: true } |
82 |
|
|
)})` + |
83 |
|
|
(member.premiumSince |
84 |
|
|
? `\nBoosting Since: ${member.premiumSince?.toLocaleString()} (${formatDistanceToNowStrict( |
85 |
|
|
member.premiumSince ?? new Date(), |
86 |
|
|
{ addSuffix: true } |
87 |
|
|
)})` |
88 |
|
|
: "") |
89 |
|
|
: "This user isn't a member of this server", |
90 |
|
|
inline: true |
91 |
|
|
}, |
92 |
|
|
{ |
93 |
|
|
name: "Flags", |
94 |
|
|
value: flags.length === 0 ? "*No flags*" : flags.join("\n") |
95 |
|
|
}, |
96 |
|
|
{ |
97 |
|
|
name: "Bot?", |
98 |
|
|
value: user.bot ? "Yes" : "No" |
99 |
|
|
} |
100 |
|
|
]; |
101 |
|
|
|
102 |
|
|
if (member?.communicationDisabledUntil) { |
103 |
|
|
fields.push({ |
104 |
|
|
name: "Timed-out until", |
105 |
|
|
value: `${member.communicationDisabledUntil.toLocaleDateString()} (${formatDistanceStrict( |
106 |
|
|
member.communicationDisabledUntil, |
107 |
|
|
new Date() |
108 |
|
|
)})` |
109 |
|
|
}); |
110 |
|
|
} |
111 |
|
|
|
112 |
|
|
if (member?.voice && member?.voice.channel) { |
113 |
|
|
fields.push({ |
114 |
|
|
name: "Current Voice Channel", |
115 |
|
|
value: `${member?.voice.channel.toString()} (${member?.voice.channel.id})` |
116 |
|
|
}); |
117 |
|
|
} |
118 |
|
|
|
119 |
|
|
if (member?.roles.highest.id !== member?.guild.id) { |
120 |
|
|
fields.push({ |
121 |
|
|
name: "Highest Role", |
122 |
|
|
value: `${member?.roles.highest.toString()} (${member?.roles.highest.id})` |
123 |
|
|
}); |
124 |
|
|
} |
125 |
|
|
|
126 |
|
|
await this.deferredReply(message, { |
127 |
|
|
embeds: [ |
128 |
|
|
new EmbedBuilder({ |
129 |
|
|
author: { |
130 |
|
|
name: user.username, |
131 |
|
|
iconURL: user.displayAvatarURL() |
132 |
|
|
}, |
133 |
|
|
color: 0x007bff, |
134 |
|
|
fields, |
135 |
|
|
footer: { text: user.id } |
136 |
|
|
}) |
137 |
|
|
.setColor(member?.user!.hexAccentColor ? member?.user!.hexAccentColor! : "#007bff") |
138 |
|
|
.setTimestamp() |
139 |
|
|
] |
140 |
|
|
}); |
141 |
|
|
} |
142 |
|
|
} |