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 { ContextMenuInteraction, Message, Permissions } from "discord.js"; |
21 |
import DiscordClient from "../../client/Client"; |
22 |
import MessageEmbed from "../../client/MessageEmbed"; |
23 |
import BaseCommand from "../../utils/structures/BaseCommand"; |
24 |
|
25 |
export default class SaveMessageCommand extends BaseCommand { |
26 |
supportsContextMenu: boolean = true; |
27 |
supportsLegacy = false; |
28 |
permissions = [Permissions.FLAGS.MANAGE_MESSAGES]; |
29 |
|
30 |
constructor() { |
31 |
super('Save Message', 'moderation', []); |
32 |
} |
33 |
|
34 |
async run(client: DiscordClient, interaction: ContextMenuInteraction): Promise<void> { |
35 |
if (!interaction.isMessageContextMenu() || !interaction.targetMessage) { |
36 |
await interaction.reply({ content: "The interaction payload is corrupted.", ephemeral: true }); |
37 |
return; |
38 |
} |
39 |
|
40 |
await interaction.deferReply({ ephemeral: true }); |
41 |
|
42 |
const { targetMessage, guild } = interaction; |
43 |
const message = targetMessage as Message; |
44 |
|
45 |
try { |
46 |
const channel = await guild?.channels.fetch(client.config.props[guild!.id].message_save_channel ?? client.config.props[guild!.id].logging_channel); |
47 |
|
48 |
if (!channel || channel.type !== 'GUILD_TEXT') { |
49 |
throw new Error("Channel not found"); |
50 |
} |
51 |
|
52 |
const savedMessage = await channel.send({ |
53 |
embeds: [ |
54 |
new MessageEmbed({ |
55 |
title: 'Message saved', |
56 |
author: { |
57 |
name: message.author.tag, |
58 |
iconURL: message.author.displayAvatarURL(), |
59 |
}, |
60 |
color: 0x007bff, |
61 |
description: message.content ?? '*No content*', |
62 |
fields: [ |
63 |
{ |
64 |
name: 'Channel', |
65 |
value: `${message.channel.toString()}` |
66 |
}, |
67 |
{ |
68 |
name: 'Saved by', |
69 |
value: `${interaction.member!.user.toString()}` |
70 |
} |
71 |
], |
72 |
footer: { |
73 |
text: `Saved • Attachments might appear at the top of this embed` |
74 |
} |
75 |
}) |
76 |
.setTimestamp() |
77 |
], |
78 |
files: [...message.attachments.values()], |
79 |
stickers: [...message.stickers.values()] |
80 |
}); |
81 |
|
82 |
await interaction.editReply({ content: `The message was successfully saved! [Click here](${savedMessage.url}) to jump to the saved message.` }); |
83 |
} |
84 |
catch (e) { |
85 |
console.log(e); |
86 |
await interaction.editReply({ content: "The interaction payload is corrupted." }); |
87 |
} |
88 |
} |
89 |
} |