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 { ActionRowBuilder, ButtonBuilder, ButtonStyle, ChannelType, Message, User } from "discord.js"; |
21 |
import Command, { BasicCommandContext, CommandMessage, CommandReturn } from "../../core/Command"; |
22 |
import { logError } from "../../utils/logger"; |
23 |
|
24 |
export default class BallotCreateCommand extends Command { |
25 |
public readonly name = "ballot__create"; |
26 |
public readonly permissions = []; |
27 |
public readonly description = "Sends a poll/ballot embed."; |
28 |
public readonly supportsInteractions: boolean = false; |
29 |
public readonly supportsLegacy: boolean = false; |
30 |
|
31 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
32 |
if (context.isLegacy && context.args[0] === undefined) { |
33 |
await this.error(message, "Please provide the content to put inside the ballot/poll!"); |
34 |
return; |
35 |
} |
36 |
|
37 |
await this.deferIfInteraction(message, { ephemeral: true }); |
38 |
|
39 |
const content = context.isLegacy |
40 |
? (message as Message).content |
41 |
.substring(this.client.configManager.config[message.guildId!]?.prefix?.length ?? 1) |
42 |
.trimStart() |
43 |
.substring(context.argv[0] === "ballot" ? "ballot".length : 0) |
44 |
.trimStart() |
45 |
.substring(context.argv[0] === "ballot" ? this.name.replace("ballot__", "").length : context.argv[0].length) |
46 |
.trim() |
47 |
: context.options.getString("content", true); |
48 |
|
49 |
const anonymous = (context.isLegacy ? null : context.options.getBoolean("anonymous")) ?? false; |
50 |
const channel = |
51 |
(context.isLegacy ? null : context.options.getChannel<ChannelType.GuildText>("channel")) ?? message.channel!; |
52 |
|
53 |
if (!channel.isTextBased()) { |
54 |
await this.error(message, "Cannot send messages into a non-text based channel!"); |
55 |
return; |
56 |
} |
57 |
|
58 |
try { |
59 |
const ballotMessage = await channel.send({ |
60 |
embeds: [ |
61 |
{ |
62 |
author: { |
63 |
icon_url: anonymous |
64 |
? message.guild?.iconURL() ?? undefined |
65 |
: (message.member?.user as User).displayAvatarURL(), |
66 |
name: anonymous ? "Staff" : message.member!.user.username |
67 |
}, |
68 |
color: 0x007bff, |
69 |
description: content, |
70 |
footer: { |
71 |
text: `0 Votes • React to vote!` |
72 |
} |
73 |
} |
74 |
], |
75 |
files: |
76 |
message instanceof Message |
77 |
? message.attachments.map(({ name, proxyURL }) => ({ |
78 |
name, |
79 |
attachment: proxyURL |
80 |
})) |
81 |
: undefined, |
82 |
components: [ |
83 |
new ActionRowBuilder<ButtonBuilder>().addComponents( |
84 |
new ButtonBuilder() |
85 |
.setCustomId("ballot__upvote") |
86 |
.setEmoji(this.emoji("ArrowTop")) |
87 |
.setStyle(ButtonStyle.Secondary), |
88 |
new ButtonBuilder() |
89 |
.setCustomId("ballot__downvote") |
90 |
.setEmoji(this.emoji("ArrowDown")) |
91 |
.setStyle(ButtonStyle.Secondary) |
92 |
) |
93 |
] |
94 |
}); |
95 |
|
96 |
try { |
97 |
const ballot = await this.client.ballotManager.create({ |
98 |
content, |
99 |
guildId: message.guildId!, |
100 |
userId: message.member!.user.id, |
101 |
channelId: channel.id, |
102 |
messageId: ballotMessage.id, |
103 |
anonymous, |
104 |
files: message instanceof Message ? [...message.attachments.map(a => a.proxyURL).values()] : [] |
105 |
}); |
106 |
|
107 |
await this.success( |
108 |
message, |
109 |
`The ballot/poll has been created successfully.\nID: \`${ballot.id}\`\n${ |
110 |
message instanceof Message && message.attachments.size > 0 |
111 |
? "Please do not delete your message, otherwise the attachments will be lost." |
112 |
: "" |
113 |
}` |
114 |
); |
115 |
} catch (e) { |
116 |
logError(e); |
117 |
return; |
118 |
} |
119 |
} catch (e) { |
120 |
logError(e); |
121 |
|
122 |
await this.error( |
123 |
message, |
124 |
"An error has occurred while sending the message. Make sure I have enough permissions to send messages here!" |
125 |
); |
126 |
|
127 |
return; |
128 |
} |
129 |
} |
130 |
} |