1 |
/** |
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, 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 |
supportsInteractions: boolean = false; |
28 |
supportsLegacy: boolean = false; |
29 |
supportsContextMenu: boolean = false; |
30 |
|
31 |
constructor() { |
32 |
super('embed__send', 'automation', []); |
33 |
} |
34 |
|
35 |
async run(client: DiscordClient, interaction: CommandInteraction, options: InteractionOptions) { |
36 |
const getString = (field: string): string | undefined => { |
37 |
return options.options.getString(field) ?? undefined; |
38 |
}; |
39 |
|
40 |
const author = { |
41 |
name: getString('author_name'), |
42 |
iconURL: getString('author_iconurl'), |
43 |
}; |
44 |
|
45 |
const footer = { |
46 |
text: getString('footer_text'), |
47 |
iconURL: getString('footer_iconurl'), |
48 |
}; |
49 |
|
50 |
if (getString('color') && (!Util.resolveColor(getString('color') as ColorResolvable) || Util.resolveColor(getString('color') as ColorResolvable) === NaN)) { |
51 |
await interaction.reply({ content: "Invalid color given.", ephemeral: true }); |
52 |
return; |
53 |
} |
54 |
|
55 |
const embed = new MessageEmbed({ |
56 |
author: author.name ? author : undefined, |
57 |
title: getString('title'), |
58 |
description: getString('description'), |
59 |
thumbnail: getString('thumbnail') ? { |
60 |
url: getString('thumbnail') |
61 |
} : undefined, |
62 |
image: getString('image') ? { |
63 |
url: getString('image') |
64 |
} : undefined, |
65 |
video: getString('video') ? { |
66 |
url: getString('video') |
67 |
} : undefined, |
68 |
footer: footer.text ? footer : undefined, |
69 |
color: (getString('color') ?? '#007bff') as ColorResolvable, |
70 |
timestamp: getString('timestamp') ? (getString('timestamp') === 'current' ? new Date() : new Date(getString('timestamp')!)) : undefined, |
71 |
fields: getString('fields') ? getString('fields')!.trim().split(',').map(fieldData => { |
72 |
const [name, value] = fieldData.trim().split(':'); |
73 |
|
74 |
return { |
75 |
name: name.trim(), |
76 |
value: value.trim(), |
77 |
}; |
78 |
}) : [], |
79 |
url: getString('url'), |
80 |
}); |
81 |
|
82 |
try { |
83 |
await interaction.channel?.send({ |
84 |
embeds: [embed] |
85 |
}); |
86 |
|
87 |
await interaction.reply({ content: 'Message sent.', ephemeral: true }); |
88 |
} |
89 |
catch (e) { |
90 |
console.log(e); |
91 |
interaction.reply({ content: 'Invalid options given.', ephemeral: true }); |
92 |
} |
93 |
} |
94 |
} |