1 |
import { CommandInteraction, GuildEmoji, GuildMember, Interaction, Message, MessageAttachment, TextChannel } 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 AnnounceCommand extends BaseCommand { |
12 |
supportsInteractions = true; |
13 |
|
14 |
constructor() { |
15 |
super('announce', 'utils', []); |
16 |
} |
17 |
|
18 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
19 |
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
20 |
await msg.reply({ |
21 |
embeds: [ |
22 |
new MessageEmbed() |
23 |
.setColor('#f14a60') |
24 |
.setDescription(`This command requires at least one argument.`) |
25 |
] |
26 |
}); |
27 |
|
28 |
return; |
29 |
} |
30 |
|
31 |
let content: string; |
32 |
|
33 |
if (options.isInteraction) { |
34 |
content = <string> await options.options.getString('content'); |
35 |
} |
36 |
else { |
37 |
content = await options.args.join(' '); |
38 |
} |
39 |
|
40 |
try { |
41 |
const channel = await <TextChannel> msg.guild!.channels.cache.find(c => c.id === client.config.get('announcement_channel')); |
42 |
|
43 |
if (!channel) { |
44 |
await msg.reply({ |
45 |
content: ":x: Channel not found" |
46 |
}); |
47 |
|
48 |
return; |
49 |
} |
50 |
|
51 |
await channel.send({ |
52 |
content |
53 |
}); |
54 |
|
55 |
if (msg instanceof Message) |
56 |
await msg.react(<GuildEmoji> (await fetchEmoji('check'))); |
57 |
else |
58 |
await msg.reply({ |
59 |
content: (<GuildEmoji> (await fetchEmoji('check'))).toString() + " The message has been announced!", |
60 |
ephemeral: true |
61 |
}); |
62 |
} |
63 |
catch(e) { |
64 |
console.log(e); |
65 |
|
66 |
await msg.reply({ |
67 |
content: ":x: Failed to send message", |
68 |
ephemeral: true |
69 |
}); |
70 |
} |
71 |
} |
72 |
} |