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 { CommandInteraction, Message } 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 |
import CommandOptions from '../../types/CommandOptions'; |
26 |
import { emoji, fetchEmoji } from '../../utils/Emoji'; |
27 |
|
28 |
export default class EmbedBuildCommand extends BaseCommand { |
29 |
supportsInteractions: boolean = false; |
30 |
supportsLegacy: boolean = false; |
31 |
|
32 |
constructor() { |
33 |
super('embed__build', 'automation', []); |
34 |
} |
35 |
|
36 |
async run(client: DiscordClient, message: CommandInteraction | Message, options: InteractionOptions | CommandOptions) { |
37 |
if (!options.isInteraction && options.args[0] === undefined) { |
38 |
await message.reply(`${emoji('error')} No embed schema provided.`); |
39 |
return; |
40 |
} |
41 |
|
42 |
try { |
43 |
const embedData = JSON.parse((options.isInteraction ? options.options.getString('json_schema')! : options.args.join(' ')).replace(/^embed\:/, '')); |
44 |
|
45 |
if (!embedData) { |
46 |
throw new Error('Parse Error'); |
47 |
} |
48 |
|
49 |
try { |
50 |
const embed = new MessageEmbed(embedData); |
51 |
|
52 |
if (embedData.color) { |
53 |
try { |
54 |
embed.setColor(embedData.color); |
55 |
} |
56 |
catch (e) { |
57 |
console.log(e); |
58 |
} |
59 |
} |
60 |
|
61 |
await message.channel?.send({ |
62 |
embeds: [embed] |
63 |
}); |
64 |
|
65 |
if (message instanceof CommandInteraction) |
66 |
await message.reply({ content: 'Message sent.', ephemeral: true }); |
67 |
else |
68 |
message.react((await fetchEmoji('check'))!).catch(console.error); |
69 |
} |
70 |
catch (e) { |
71 |
console.log(e); |
72 |
message.reply({ content: 'Invalid options given.', ephemeral: true }); |
73 |
} |
74 |
} |
75 |
catch (e) { |
76 |
console.log(e); |
77 |
message.reply({ content: 'Invalid embed JSON schema given.', ephemeral: true }); |
78 |
return; |
79 |
} |
80 |
} |
81 |
} |