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 AddsnippetCommand extends BaseCommand { |
12 |
constructor() { |
13 |
super('addsnippet', '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 content: string; |
31 |
let files: MessageAttachment[] = []; |
32 |
let filenames: string[] = []; |
33 |
|
34 |
if (options.isInteraction) { |
35 |
await (msg as CommandInteraction).deferReply(); |
36 |
name = <string> await options.options.getString('name'); |
37 |
content = <string> await options.options.getString('content'); |
38 |
|
39 |
if (options.options.getAttachment('file')) |
40 |
files.push(await options.options.getAttachment('file')!); |
41 |
} |
42 |
else { |
43 |
name = options.args[0]; |
44 |
options.args.shift(); |
45 |
content = options.args.join(' '); |
46 |
|
47 |
if ((msg as Message).attachments.first()) { |
48 |
files = (msg as Message).attachments.map(a => { |
49 |
return { |
50 |
name: a.name, |
51 |
url: a.proxyURL |
52 |
} as MessageAttachment; |
53 |
}); |
54 |
} |
55 |
} |
56 |
|
57 |
if (client.snippetManager.get(msg.guild!.id, name)) { |
58 |
await this.deferReply(msg, { |
59 |
embeds: [ |
60 |
new MessageEmbed() |
61 |
.setColor('#f14a60') |
62 |
.setDescription("A snippet already exists with that name.") |
63 |
] |
64 |
}); |
65 |
|
66 |
return; |
67 |
} |
68 |
|
69 |
for await (const file of files) { |
70 |
try { |
71 |
let filename = Math.round(Math.random() * 1000000) + '_' + file.name!; |
72 |
filenames.push(filename); |
73 |
await download(file.url, path.resolve(__dirname, '../../..', 'storage', filename)); |
74 |
} |
75 |
catch (e) { |
76 |
console.log(e); |
77 |
} |
78 |
} |
79 |
|
80 |
await client.snippetManager.set(msg.guild!.id, name, content, filenames); |
81 |
await client.snippetManager.write(); |
82 |
|
83 |
await this.deferReply(msg, { |
84 |
embeds: [ |
85 |
new MessageEmbed() |
86 |
.setDescription((await fetchEmoji('check'))!.toString() + " Snippet created") |
87 |
] |
88 |
}); |
89 |
} |
90 |
} |