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 { EmbedBuilder, GuildMember, SlashCommandBuilder, User } from "discord.js"; |
21 |
|
|
import Command, { AnyCommandContext, ArgumentType, CommandMessage, CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
|
|
import { logError } from "../../utils/logger"; |
23 |
|
|
|
24 |
|
|
export default class AvatarCommand extends Command { |
25 |
|
|
public readonly name = "avatar"; |
26 |
|
|
public readonly validationRules: ValidationRule[] = [ |
27 |
|
|
{ |
28 |
|
|
types: [ArgumentType.User], |
29 |
|
|
name: "user", |
30 |
|
|
optional: true, |
31 |
|
|
typeErrorMessage: "Invalid user given", |
32 |
|
|
entityNotNull: true, |
33 |
|
|
entityNotNullErrorMessage: "That user could not be found!" |
34 |
|
|
} |
35 |
|
|
]; |
36 |
|
|
public readonly permissions = []; |
37 |
|
|
public readonly aliases = ["avt", "av", "pfp"]; |
38 |
|
|
|
39 |
|
|
public readonly description = "Shows your or someone else's avatar."; |
40 |
|
|
public readonly slashCommandBuilder = new SlashCommandBuilder().addUserOption(option => |
41 |
|
|
option.setName("user").setDescription("The target user") |
42 |
|
|
); |
43 |
|
|
|
44 |
|
|
async execute(message: CommandMessage, context: AnyCommandContext): Promise<CommandReturn> { |
45 |
|
|
await this.deferIfInteraction(message); |
46 |
|
|
|
47 |
|
|
const user: User = |
48 |
|
|
(context.isLegacy ? context.parsedNamedArgs.user : context.options.getUser("user")) ?? message.member!.user; |
49 |
|
|
let member: GuildMember | undefined; |
50 |
|
|
|
51 |
|
|
try { |
52 |
|
|
member = user |
53 |
|
|
? message.guild!.members.cache.get(user.id) ?? (await message.guild!.members.fetch(user.id)) |
54 |
|
|
: (message.member! as GuildMember); |
55 |
|
|
} catch (e) { |
56 |
|
|
logError(e); |
57 |
|
|
} |
58 |
|
|
|
59 |
|
|
await this.deferredReply(message, { |
60 |
|
|
embeds: [ |
61 |
|
|
new EmbedBuilder() |
62 |
|
|
.setColor(user!.hexAccentColor ?? "#007bff") |
63 |
|
|
.setAuthor({ |
64 |
|
|
name: member?.user.username ?? user!.username |
65 |
|
|
}) |
66 |
|
|
.setImage( |
67 |
|
|
member?.displayAvatarURL({ |
68 |
|
|
size: 4096, |
69 |
|
|
forceStatic: false |
70 |
|
|
}) ?? |
71 |
|
|
user!.displayAvatarURL({ |
72 |
|
|
size: 4096, |
73 |
|
|
forceStatic: false |
74 |
|
|
}) |
75 |
|
|
) |
76 |
|
|
.setURL( |
77 |
|
|
member?.displayAvatarURL({ |
78 |
|
|
size: 4096, |
79 |
|
|
forceStatic: false |
80 |
|
|
}) ?? |
81 |
|
|
user!.displayAvatarURL({ |
82 |
|
|
size: 4096, |
83 |
|
|
forceStatic: false |
84 |
|
|
}) |
85 |
|
|
) |
86 |
|
|
.addFields({ |
87 |
|
|
name: "Download", |
88 |
|
|
value: `[Click Here](${ |
89 |
|
|
member?.displayAvatarURL({ |
90 |
|
|
size: 4096, |
91 |
|
|
forceStatic: false |
92 |
|
|
}) ?? |
93 |
|
|
user!.displayAvatarURL({ |
94 |
|
|
size: 4096, |
95 |
|
|
forceStatic: false |
96 |
|
|
}) |
97 |
|
|
})` |
98 |
|
|
}) |
99 |
|
|
.setFooter({ |
100 |
|
|
text: `${user!.username} (${user!.id})` |
101 |
|
|
}) |
102 |
|
|
] |
103 |
|
|
}); |
104 |
|
|
} |
105 |
|
|
} |