1 |
import { CommandInteraction, 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 DelsnippetCommand extends BaseCommand { |
12 |
constructor() { |
13 |
super('delsnippet', 'utils', []); |
14 |
} |
15 |
|
16 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
17 |
if (!options.isInteraction && options.args[0] === undefined) { |
18 |
await msg.reply({ |
19 |
embeds: [ |
20 |
new MessageEmbed() |
21 |
.setColor('#f14a60') |
22 |
.setDescription(`This command requires at least one argument.`) |
23 |
] |
24 |
}); |
25 |
|
26 |
return; |
27 |
} |
28 |
|
29 |
let name: string; |
30 |
|
31 |
if (options.isInteraction) { |
32 |
await (msg as CommandInteraction).deferReply(); |
33 |
name = <string> await options.options.getString('name'); |
34 |
} |
35 |
else { |
36 |
name = options.args[0]; |
37 |
} |
38 |
|
39 |
const snippet = client.snippetManager.get(msg.guild!.id, name); |
40 |
|
41 |
if (!snippet) { |
42 |
await this.deferReply(msg, { |
43 |
embeds: [ |
44 |
new MessageEmbed() |
45 |
.setColor('#f14a60') |
46 |
.setDescription("No snippet exists with that name.") |
47 |
] |
48 |
}); |
49 |
|
50 |
return; |
51 |
} |
52 |
|
53 |
await client.snippetManager.delete(msg.guild!.id, name); |
54 |
await client.snippetManager.write(); |
55 |
|
56 |
await this.deferReply(msg, { |
57 |
embeds: [ |
58 |
new MessageEmbed() |
59 |
.setDescription((await fetchEmoji('check'))!.toString() + " Snippet deleted") |
60 |
] |
61 |
}); |
62 |
} |
63 |
} |