1 |
rakinar2 |
577 |
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 MvsnippetCommand extends BaseCommand { |
12 |
|
|
constructor() { |
13 |
|
|
super('mvsnippet', 'utils', []); |
14 |
|
|
} |
15 |
|
|
|
16 |
|
|
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
17 |
|
|
if (!options.isInteraction && options.args[1] === undefined) { |
18 |
|
|
await msg.reply({ |
19 |
|
|
embeds: [ |
20 |
|
|
new MessageEmbed() |
21 |
|
|
.setColor('#f14a60') |
22 |
|
|
.setDescription(`This command requires at least two arguments.`) |
23 |
|
|
] |
24 |
|
|
}); |
25 |
|
|
|
26 |
|
|
return; |
27 |
|
|
} |
28 |
|
|
|
29 |
|
|
let name: string; |
30 |
|
|
let newName: string; |
31 |
|
|
|
32 |
|
|
if (options.isInteraction) { |
33 |
|
|
await (msg as CommandInteraction).deferReply(); |
34 |
|
|
name = <string> await options.options.getString('old-name'); |
35 |
|
|
newName = <string> await options.options.getString('new-name'); |
36 |
|
|
} |
37 |
|
|
else { |
38 |
|
|
name = options.args[0]; |
39 |
|
|
newName = options.args[1]; |
40 |
|
|
} |
41 |
|
|
|
42 |
|
|
const oldsnippet = client.snippetManager.get(msg.guild!.id, name); |
43 |
|
|
const newsnippet = client.snippetManager.get(msg.guild!.id, newName); |
44 |
|
|
|
45 |
|
|
if (!oldsnippet) { |
46 |
|
|
await this.deferReply(msg, { |
47 |
|
|
embeds: [ |
48 |
|
|
new MessageEmbed() |
49 |
|
|
.setColor('#f14a60') |
50 |
|
|
.setDescription("No snippet exists with that name.") |
51 |
|
|
] |
52 |
|
|
}); |
53 |
|
|
|
54 |
|
|
return; |
55 |
|
|
} |
56 |
|
|
|
57 |
|
|
if (newsnippet) { |
58 |
|
|
await this.deferReply(msg, { |
59 |
|
|
embeds: [ |
60 |
|
|
new MessageEmbed() |
61 |
|
|
.setColor('#f14a60') |
62 |
|
|
.setDescription("A snippet already exists with the new name.") |
63 |
|
|
] |
64 |
|
|
}); |
65 |
|
|
|
66 |
|
|
return; |
67 |
|
|
} |
68 |
|
|
|
69 |
|
|
await client.snippetManager.deleteData(msg.guild!.id, name); |
70 |
|
|
await client.snippetManager.set(msg.guild!.id, newName, oldsnippet.content, oldsnippet.files); |
71 |
|
|
await client.snippetManager.write(); |
72 |
|
|
|
73 |
|
|
await this.deferReply(msg, { |
74 |
|
|
embeds: [ |
75 |
|
|
new MessageEmbed() |
76 |
|
|
.setDescription((await fetchEmoji('check'))!.toString() + " Snippet renamed") |
77 |
|
|
] |
78 |
|
|
}); |
79 |
|
|
} |
80 |
|
|
} |