1 |
/** |
2 |
* This file is part of SudoBot. |
3 |
* |
4 |
* Copyright (C) 2021-2023 OSN Developers. |
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 { ApplicationCommandType, EmbedBuilder, MessageContextMenuCommandInteraction, PermissionsBitField } from "discord.js"; |
21 |
import Command, { CommandReturn, ValidationRule } from "../../core/Command"; |
22 |
import { logError } from "../../utils/Logger"; |
23 |
import { channelInfo, messageInfo, userInfo } from "../../utils/embed"; |
24 |
import { safeChannelFetch } from "../../utils/fetch"; |
25 |
|
26 |
export default class SaveMessageCommand extends Command { |
27 |
public readonly name = "Save Message"; |
28 |
public readonly validationRules: ValidationRule[] = []; |
29 |
public readonly permissions = [PermissionsBitField.Flags.ManageMessages]; |
30 |
public readonly applicationCommandType = ApplicationCommandType.Message; |
31 |
|
32 |
public readonly supportsLegacy = false; |
33 |
public readonly description = "Saves the target message to the message log channel"; |
34 |
|
35 |
async execute(interaction: MessageContextMenuCommandInteraction): Promise<CommandReturn> { |
36 |
const { targetMessage } = interaction; |
37 |
|
38 |
await interaction.deferReply({ ephemeral: true }); |
39 |
|
40 |
if (!this.client.configManager.config[interaction.guildId!]?.logging?.enabled) { |
41 |
await interaction.editReply({ |
42 |
content: "This server has logging turned off. Please turn it on to use this command." |
43 |
}); |
44 |
|
45 |
return; |
46 |
} |
47 |
|
48 |
const channelId = |
49 |
this.client.configManager.config[interaction.guildId!]?.logging?.saved_messages_channel ?? |
50 |
this.client.configManager.config[interaction.guildId!]?.logging?.primary_channel; |
51 |
|
52 |
if (!channelId) { |
53 |
await interaction.editReply({ |
54 |
content: "This server does not have logging channel set up. Please set it up first." |
55 |
}); |
56 |
|
57 |
return; |
58 |
} |
59 |
|
60 |
const channel = await safeChannelFetch(interaction.guild!, channelId!); |
61 |
|
62 |
if (!channel?.isTextBased()) { |
63 |
await interaction.editReply({ |
64 |
content: "Could not send the saved message to the log channel. This is probably due to a misconfiguration." |
65 |
}); |
66 |
return; |
67 |
} |
68 |
|
69 |
let url = ""; |
70 |
|
71 |
try { |
72 |
url = ( |
73 |
await channel.send({ |
74 |
embeds: [ |
75 |
new EmbedBuilder({ |
76 |
color: 0x007bff, |
77 |
title: "Message saved", |
78 |
author: { |
79 |
name: targetMessage.author.username, |
80 |
icon_url: targetMessage.author.displayAvatarURL() |
81 |
}, |
82 |
description: targetMessage.content ?? "No content", |
83 |
fields: [ |
84 |
{ |
85 |
name: "User", |
86 |
value: userInfo(targetMessage.author), |
87 |
inline: true |
88 |
}, |
89 |
{ |
90 |
name: "Saved By", |
91 |
value: userInfo(interaction.user), |
92 |
inline: true |
93 |
}, |
94 |
{ |
95 |
name: "Message", |
96 |
value: messageInfo(targetMessage) |
97 |
}, |
98 |
{ |
99 |
name: "Channel", |
100 |
value: channelInfo(targetMessage.channel) |
101 |
} |
102 |
], |
103 |
footer: { |
104 |
text: "Saved" |
105 |
} |
106 |
}).setTimestamp() |
107 |
], |
108 |
files: targetMessage.attachments.toJSON() |
109 |
}) |
110 |
).url; |
111 |
} catch (e) { |
112 |
logError(e); |
113 |
await this.error( |
114 |
interaction, |
115 |
"Could not send the saved message into the log channel! Make sure I have enough permissions." |
116 |
); |
117 |
return; |
118 |
} |
119 |
|
120 |
await this.success(interaction, `The message was saved. [Click here](${url}) to nagivate to the saved message.`); |
121 |
} |
122 |
} |