/[sudobot]/branches/7.x/src/commands/information/UserLookupCommand.ts
ViewVC logotype

Annotation of /branches/7.x/src/commands/information/UserLookupCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months, 1 week ago) by rakinar2
File MIME type: application/typescript
File size: 6234 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 { action, points, summary } = await this.client.infractionManager.getUserStats(user.id, message.guildId!);
63    
64     const flags = flagsToString(user.flags!);
65     const fields = [
66     {
67     name: "User",
68     value: `ID: ${user.id}\nUsername: ${user.username}\nMention: ${userMention(
69     user.id
70     )}\nAccount created at: ${user.createdAt?.toLocaleString()} (${formatDistanceToNowStrict(
71     user.createdAt ?? new Date(),
72     { addSuffix: true }
73     )})`,
74     inline: true
75     },
76     {
77     name: "Member",
78     value: member
79     ? `Completed Membership Screening: ${member.pending ? "No" : "Yes"}\nNickname: ${
80     member.nickname ?? "*Not set*"
81     }\nJoined At: ${member.joinedAt?.toLocaleString()} (${formatDistanceToNowStrict(
82     member.joinedAt ?? new Date(),
83     { addSuffix: true }
84     )})` +
85     (member.premiumSince
86     ? `\nBoosting Since: ${member.premiumSince?.toLocaleString()} (${formatDistanceToNowStrict(
87     member.premiumSince ?? new Date(),
88     { addSuffix: true }
89     )})`
90     : "")
91     : "This user isn't a member of this server",
92     inline: true
93     },
94     {
95     name: "Flags",
96     value: flags.length === 0 ? "*No flags*" : flags.join("\n")
97     },
98     {
99     name: "Bot?",
100     value: user.bot ? "Yes" : "No"
101     }
102     ];
103    
104     if (member?.communicationDisabledUntil) {
105     fields.push({
106     name: "Timed-out until",
107     value: `${member.communicationDisabledUntil.toLocaleDateString()} (${formatDistanceStrict(
108     member.communicationDisabledUntil,
109     new Date()
110     )})`
111     });
112     }
113    
114     if (member?.voice && member?.voice.channel) {
115     fields.push({
116     name: "Current Voice Channel",
117     value: `${member?.voice.channel.toString()} (${member?.voice.channel.id})`
118     });
119     }
120    
121     if (member?.roles.highest.id !== member?.guild.id) {
122     fields.push({
123     name: "Highest Role",
124     value: `${member?.roles.highest.toString()} (${member?.roles.highest.id})`
125     });
126     }
127    
128     fields.push(
129     {
130     name: "Moderation Points",
131     value: `**${points}**`,
132     inline: true
133     },
134     {
135     name: "Infractions",
136     value: summary,
137     inline: true
138     },
139     {
140     name: "Recommended Action",
141     value: action,
142     inline: true
143     }
144     );
145    
146     await this.deferredReply(message, {
147     embeds: [
148     new EmbedBuilder({
149     author: {
150     name: user.username,
151     iconURL: user.displayAvatarURL()
152     },
153     color: 0x007bff,
154     fields,
155     footer: { text: user.id }
156     })
157     .setColor(member?.user!.hexAccentColor ? member?.user!.hexAccentColor! : "#007bff")
158     .setTimestamp()
159     ]
160     });
161     }
162     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26