1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2022 OSN Inc. |
5 |
* |
6 |
* SudoBot is free software; you can redistribute it and/or modify it |
7 |
* under the terms of the GNU Affero General Public License as published by |
8 |
* the Free Software Foundation, either version 3 of the License, or |
9 |
* (at your option) any later version. |
10 |
* |
11 |
* SudoBot is distributed in the hope that it will be useful, but |
12 |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
* GNU Affero General Public License for more details. |
15 |
* |
16 |
* You should have received a copy of the GNU Affero General Public License |
17 |
* along with SudoBot. If not, see <https://www.gnu.org/licenses/>. |
18 |
*/ |
19 |
|
20 |
import { CommandInteraction, EmojiIdentifierResolvable, FileOptions, GuildMember, Message } from 'discord.js'; |
21 |
import BaseCommand from '../../utils/structures/BaseCommand'; |
22 |
import DiscordClient from '../../client/Client'; |
23 |
import CommandOptions from '../../types/CommandOptions'; |
24 |
import InteractionOptions from '../../types/InteractionOptions'; |
25 |
import MessageEmbed from '../../client/MessageEmbed'; |
26 |
import getMember from '../../utils/getMember'; |
27 |
import { fetchEmoji } from '../../utils/Emoji'; |
28 |
import { parseEmbedsInString } from '../../utils/util'; |
29 |
|
30 |
export default class SendCommand extends BaseCommand { |
31 |
supportsInteractions: boolean = true; |
32 |
|
33 |
constructor() { |
34 |
super('send', 'moderation', []); |
35 |
} |
36 |
|
37 |
async run(client: DiscordClient, msg: Message | CommandInteraction, options: CommandOptions | InteractionOptions) { |
38 |
if (!options.isInteraction && typeof options.args[1] === 'undefined') { |
39 |
await msg.reply({ |
40 |
embeds: [ |
41 |
new MessageEmbed() |
42 |
.setColor('#f14a60') |
43 |
.setDescription(`This command requires at least two arguments.`) |
44 |
] |
45 |
}); |
46 |
|
47 |
return; |
48 |
} |
49 |
|
50 |
let content: string; |
51 |
let member: GuildMember | undefined | null; |
52 |
|
53 |
if (options.isInteraction) { |
54 |
member = await <GuildMember> options.options.getMember('member'); |
55 |
content = await <string> options.options.getString('content'); |
56 |
} |
57 |
else { |
58 |
member = await getMember(msg as Message, options); |
59 |
|
60 |
if (!member) { |
61 |
await msg.reply({ |
62 |
embeds: [ |
63 |
new MessageEmbed() |
64 |
.setColor('#f14a60') |
65 |
.setDescription(`Invalid user given.`) |
66 |
] |
67 |
}); |
68 |
|
69 |
return; |
70 |
} |
71 |
|
72 |
options.args.shift(); |
73 |
content = await options.args.join(' '); |
74 |
} |
75 |
|
76 |
try { |
77 |
let { embeds, content: parsedContent } = parseEmbedsInString(content); |
78 |
|
79 |
await member.send({ |
80 |
content: parsedContent.trim() === '' ? undefined : parsedContent, |
81 |
embeds, |
82 |
files: msg instanceof CommandInteraction ? undefined : [...msg.attachments.map(a => ({ |
83 |
attachment: a.proxyURL, |
84 |
description: a.description, |
85 |
name: a.name |
86 |
} as FileOptions)).values()] |
87 |
}); |
88 |
|
89 |
if (options.isInteraction) { |
90 |
const emoji = await fetchEmoji('check'); |
91 |
|
92 |
console.log(emoji); |
93 |
|
94 |
await msg.reply({ |
95 |
content: emoji!.toString() + " Message sent!", |
96 |
ephemeral: true |
97 |
}); |
98 |
} |
99 |
else { |
100 |
await (msg as Message).react(await fetchEmoji('check') as EmojiIdentifierResolvable); |
101 |
} |
102 |
} |
103 |
catch (e) { |
104 |
console.log(e); |
105 |
|
106 |
await msg.reply({ |
107 |
embeds: [ |
108 |
new MessageEmbed() |
109 |
.setColor('#f14a60') |
110 |
.setDescription(`Failed to send message. Maybe invalid embed schema or the user has disabled DMs?`) |
111 |
], |
112 |
ephemeral: true |
113 |
}); |
114 |
|
115 |
return; |
116 |
} |
117 |
} |
118 |
} |