1 |
rakinar2 |
577 |
import { BanOptions, CommandInteraction, EmojiIdentifierResolvable, FileOptions, GuildMember, Interaction, Message, Permissions, TextChannel, User } 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 getUser from '../../utils/getUser'; |
8 |
|
|
import getMember from '../../utils/getMember'; |
9 |
|
|
import History from '../../automod/History'; |
10 |
|
|
import { fetchEmoji } from '../../utils/Emoji'; |
11 |
|
|
import { parseEmbedsInString } from '../../utils/util'; |
12 |
|
|
|
13 |
|
|
export default class EchoCommand extends BaseCommand { |
14 |
|
|
supportsInteractions: boolean = true; |
15 |
|
|
|
16 |
|
|
constructor() { |
17 |
|
|
super('echo', 'moderation', []); |
18 |
|
|
} |
19 |
|
|
|
20 |
|
|
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
21 |
|
|
if (!options.isInteraction && typeof options.args[0] === 'undefined') { |
22 |
|
|
await msg.reply({ |
23 |
|
|
embeds: [ |
24 |
|
|
new MessageEmbed() |
25 |
|
|
.setColor('#f14a60') |
26 |
|
|
.setDescription(`This command requires at least one argument.`) |
27 |
|
|
] |
28 |
|
|
}); |
29 |
|
|
|
30 |
|
|
return; |
31 |
|
|
} |
32 |
|
|
|
33 |
|
|
let content: string; |
34 |
|
|
let channel: TextChannel = <TextChannel> msg.channel; |
35 |
|
|
|
36 |
|
|
if (options.isInteraction) { |
37 |
|
|
content = await <string> options.options.getString('content'); |
38 |
|
|
|
39 |
|
|
if (options.options.getChannel('channel')) { |
40 |
|
|
channel = await <TextChannel> options.options.getChannel('channel'); |
41 |
|
|
} |
42 |
|
|
} |
43 |
|
|
else { |
44 |
|
|
if ((msg as Message).mentions.channels.last()) { |
45 |
|
|
channel = await <TextChannel> (msg as Message).mentions.channels.last(); |
46 |
|
|
await options.args.pop(); |
47 |
|
|
} |
48 |
|
|
|
49 |
|
|
content = await options.args.join(' '); |
50 |
|
|
} |
51 |
|
|
|
52 |
|
|
if (!channel.send) { |
53 |
|
|
await msg.reply({ |
54 |
|
|
content: 'Invalid text channel.', |
55 |
|
|
ephemeral: true |
56 |
|
|
}); |
57 |
|
|
|
58 |
|
|
return; |
59 |
|
|
} |
60 |
|
|
|
61 |
|
|
try { |
62 |
|
|
let { embeds, content: parsedContent } = parseEmbedsInString(content); |
63 |
|
|
|
64 |
|
|
await channel.send({ |
65 |
|
|
content: parsedContent.trim() === '' ? undefined : parsedContent, |
66 |
|
|
embeds, |
67 |
|
|
files: msg instanceof CommandInteraction ? undefined : [...msg.attachments.map(a => ({ |
68 |
|
|
attachment: a.proxyURL, |
69 |
|
|
description: a.description, |
70 |
|
|
name: a.name |
71 |
|
|
} as FileOptions)).values()] |
72 |
|
|
}); |
73 |
|
|
|
74 |
|
|
if (options.isInteraction) { |
75 |
|
|
const emoji = await fetchEmoji('check'); |
76 |
|
|
|
77 |
|
|
console.log(emoji); |
78 |
|
|
|
79 |
|
|
await msg.reply({ |
80 |
|
|
content: emoji!.toString() + " Message sent!", |
81 |
|
|
ephemeral: true |
82 |
|
|
}); |
83 |
|
|
} |
84 |
|
|
else { |
85 |
|
|
await (msg as Message).react(await fetchEmoji('check') as EmojiIdentifierResolvable); |
86 |
|
|
} |
87 |
|
|
} |
88 |
|
|
catch (e) { |
89 |
|
|
console.log(e); |
90 |
|
|
|
91 |
|
|
await msg.reply({ |
92 |
|
|
embeds: [ |
93 |
|
|
new MessageEmbed() |
94 |
|
|
.setColor('#f14a60') |
95 |
|
|
.setDescription(`Failed to send message. Maybe missing permissions or invalid embed schema?`) |
96 |
|
|
], |
97 |
|
|
ephemeral: true |
98 |
|
|
}); |
99 |
|
|
|
100 |
|
|
return; |
101 |
|
|
} |
102 |
|
|
} |
103 |
|
|
} |