/[sudobot]/branches/5.x/src/utils/embed.ts
ViewVC logotype

Contents of /branches/5.x/src/utils/embed.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 3350 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 { Channel, ChannelType, ColorResolvable, EmbedBuilder, Message, User, resolveColor } from "discord.js";
21 import { ChatInputCommandContext } from "../services/CommandManager";
22
23 export function generateEmbed(options: ChatInputCommandContext["options"]) {
24 const getString = (field: string): string | undefined => {
25 return options.getString(field) ?? undefined;
26 };
27
28 const author = {
29 name: getString("author_name")!,
30 iconURL: getString("author_iconurl")
31 };
32
33 const footer = {
34 text: getString("footer_text")!,
35 iconURL: getString("footer_iconurl")
36 };
37
38 if (
39 getString("color") &&
40 (!resolveColor(getString("color") as ColorResolvable) || isNaN(resolveColor(getString("color") as ColorResolvable)))
41 ) {
42 return { error: "Invalid color given." };
43 }
44
45 const embed = new EmbedBuilder({
46 author: author.name ? author : undefined,
47 title: getString("title"),
48 description: getString("description"),
49 thumbnail: getString("thumbnail")
50 ? {
51 url: getString("thumbnail")!
52 }
53 : undefined,
54 image: getString("image")
55 ? {
56 url: getString("image")!
57 }
58 : undefined,
59 video: getString("video")
60 ? {
61 url: getString("video")!
62 }
63 : undefined,
64 footer: footer.text ? footer : undefined,
65 timestamp: getString("timestamp")
66 ? getString("timestamp") === "current"
67 ? new Date()
68 : new Date(getString("timestamp")!)
69 : undefined,
70 fields: getString("fields")
71 ? getString("fields")!
72 .trim()
73 .split(",")
74 .map(fieldData => {
75 const [name, value] = fieldData.trim().split(":");
76
77 return {
78 name: name.trim(),
79 value: value.trim()
80 };
81 })
82 : [],
83 url: getString("url")
84 }).setColor((getString("color") ?? "#007bff") as ColorResolvable);
85
86 return { embed };
87 }
88
89 export function userInfo(user: User) {
90 return `ID: ${user.id}\nUsername: ${user.username}\nMention: ${user.toString()}`;
91 }
92
93 export function messageInfo(message: Message) {
94 return `ID: ${message.id}\nURL: ${message.url}`;
95 }
96
97 export function channelInfo(channel: Channel) {
98 return `ID: ${channel.id}\nType: ${ChannelType[channel.type]}\nMention: ${channel.toString()}`;
99 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26