/[sudobot]/branches/4.x/src/commands/automation/EmbedSendCommand.ts
ViewVC logotype

Annotation of /branches/4.x/src/commands/automation/EmbedSendCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 3668 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-2022 OSN Inc.
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 { ColorResolvable, CommandInteraction, Permissions, Util } from 'discord.js';
21     import BaseCommand from '../../utils/structures/BaseCommand';
22     import DiscordClient from '../../client/Client';
23     import InteractionOptions from '../../types/InteractionOptions';
24     import MessageEmbed from '../../client/MessageEmbed';
25    
26     export default class EmbedSendCommand extends BaseCommand {
27     permissions = [Permissions.FLAGS.MANAGE_MESSAGES];
28     supportsInteractions: boolean = false;
29     supportsLegacy: boolean = false;
30     supportsContextMenu: boolean = false;
31    
32     constructor() {
33     super('embed__send', 'automation', []);
34     }
35    
36     async run(client: DiscordClient, interaction: CommandInteraction, options: InteractionOptions) {
37     const getString = (field: string): string | undefined => {
38     return options.options.getString(field) ?? undefined;
39     };
40    
41     const author = {
42     name: getString('author_name'),
43     iconURL: getString('author_iconurl'),
44     };
45    
46     const footer = {
47     text: getString('footer_text'),
48     iconURL: getString('footer_iconurl'),
49     };
50    
51     if (getString('color') && (!Util.resolveColor(getString('color') as ColorResolvable) || isNaN(Util.resolveColor(getString('color') as ColorResolvable)))) {
52     await interaction.reply({ content: "Invalid color given.", ephemeral: true });
53     return;
54     }
55    
56     const embed = new MessageEmbed({
57     author: author.name ? author : undefined,
58     title: getString('title'),
59     description: getString('description'),
60     thumbnail: getString('thumbnail') ? {
61     url: getString('thumbnail')
62     } : undefined,
63     image: getString('image') ? {
64     url: getString('image')
65     } : undefined,
66     video: getString('video') ? {
67     url: getString('video')
68     } : undefined,
69     footer: footer.text ? footer : undefined,
70     color: (getString('color') ?? '#007bff') as ColorResolvable,
71     timestamp: getString('timestamp') ? (getString('timestamp') === 'current' ? new Date() : new Date(getString('timestamp')!)) : undefined,
72     fields: getString('fields') ? getString('fields')!.trim().split(',').map(fieldData => {
73     const [name, value] = fieldData.trim().split(':');
74    
75     return {
76     name: name.trim(),
77     value: value.trim(),
78     };
79     }) : [],
80     url: getString('url'),
81     });
82    
83     try {
84     await interaction.channel?.send({
85     embeds: [embed]
86     });
87    
88     await interaction.reply({ content: 'Message sent.', ephemeral: true });
89     }
90     catch (e) {
91     console.log(e);
92     interaction.reply({ content: 'Invalid options given.', ephemeral: true });
93     }
94     }
95     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26