/[sudobot]/branches/2.x/src/commands/utils/DelsnippetCommand.ts
ViewVC logotype

Contents of /branches/2.x/src/commands/utils/DelsnippetCommand.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 2096 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
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 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26