1 |
import { CommandInteraction, FileOptions, GuildMember, Interaction, Message, MessageAttachment } from 'discord.js'; |
2 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
3 |
import DiscordClient from '../../client/Client'; |
4 |
import CommandOptions from '../../types/CommandOptions'; |
5 |
import InteractionOptions from '../../types/InteractionOptions'; |
6 |
import MessageEmbed from '../../client/MessageEmbed'; |
7 |
import { download } from '../../utils/util'; |
8 |
import path from 'path'; |
9 |
import { fetchEmoji } from '../../utils/Emoji'; |
10 |
|
11 |
export default class AddsnippetCommand extends BaseCommand { |
12 |
supportsInteractions: boolean = true; |
13 |
supportsLegacy: boolean = false; |
14 |
|
15 |
constructor() { |
16 |
super('snippet', 'utils', []); |
17 |
} |
18 |
|
19 |
async run(client: DiscordClient, msg: CommandInteraction, options: InteractionOptions) { |
20 |
if (options.options.getSubcommand(true) === 'get') { |
21 |
const snippet = await client.snippetManager.getParsed(msg.guild!.id, options.options.getString('name')!); |
22 |
|
23 |
if (!snippet) { |
24 |
await msg.reply({ |
25 |
content: ":x: No snippet found with that name.", |
26 |
ephemeral: true |
27 |
}); |
28 |
|
29 |
return; |
30 |
} |
31 |
|
32 |
try { |
33 |
await msg.reply({ |
34 |
content: snippet.content.trim() === '' ? undefined : snippet.content, |
35 |
files: snippet.files.map(name => { |
36 |
return { |
37 |
name, |
38 |
attachment: path.resolve(__dirname, '../../../storage', name) |
39 |
} as FileOptions |
40 |
}), |
41 |
embeds: snippet.embeds |
42 |
}); |
43 |
} |
44 |
catch (e) { |
45 |
console.log(e); |
46 |
await msg.reply({ content: 'Looks like that snippet is corrupted. Maybe invalid embed schema?', ephemeral: true }); |
47 |
} |
48 |
} |
49 |
|
50 |
let cmdName = ''; |
51 |
|
52 |
if (options.options.getSubcommand(true) === 'create') |
53 |
cmdName = 'addsnippet'; |
54 |
else if (options.options.getSubcommand(true) === 'delete') |
55 |
cmdName = 'delsnippet'; |
56 |
else if (options.options.getSubcommand(true) === 'rename') |
57 |
cmdName = 'mvsnippet'; |
58 |
|
59 |
const command = await client.commands.get(cmdName); |
60 |
|
61 |
if (command) { |
62 |
return await command.run(client, msg, options); |
63 |
} |
64 |
} |
65 |
} |