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 } from "discord.js"; |
21 |
import Command, { BasicCommandContext, CommandMessage, CommandReturn } from "../../core/Command"; |
22 |
import { displayDate } from "../../utils/datetime"; |
23 |
import { userInfo } from "../../utils/embed"; |
24 |
import { safeUserFetch } from "../../utils/fetch"; |
25 |
|
26 |
export default class BallotViewCommand extends Command { |
27 |
public readonly name = "ballot__view"; |
28 |
public readonly permissions = []; |
29 |
public readonly description = "Shows a poll/ballot."; |
30 |
public readonly supportsInteractions: boolean = false; |
31 |
public readonly supportsLegacy: boolean = false; |
32 |
|
33 |
async execute(message: CommandMessage, context: BasicCommandContext): Promise<CommandReturn> { |
34 |
if (context.isLegacy && context.args[0] === undefined) { |
35 |
await this.error(message, "Please provide the ballot ID!"); |
36 |
return; |
37 |
} |
38 |
|
39 |
await this.deferIfInteraction(message); |
40 |
|
41 |
const id = context.isLegacy ? parseInt(context.args[0]) : context.options.getInteger("id", true); |
42 |
|
43 |
if (isNaN(id)) { |
44 |
await this.error(message, "Invalid ballot ID given! Ballot IDs must be numeric values."); |
45 |
return; |
46 |
} |
47 |
|
48 |
const ballot = await this.client.ballotManager.get({ |
49 |
id, |
50 |
guildId: message.guildId! |
51 |
}); |
52 |
|
53 |
if (!ballot) { |
54 |
await this.error(message, "No such ballot exists with that ID!"); |
55 |
return; |
56 |
} |
57 |
|
58 |
const user = await safeUserFetch(this.client, ballot.userId); |
59 |
const url = `https://discord.com/channels/${encodeURIComponent(ballot.guildId)}/${encodeURIComponent( |
60 |
ballot.channelId |
61 |
)}/${encodeURIComponent(ballot.messageId)}`; |
62 |
|
63 |
await this.deferredReply(message, { |
64 |
files: ballot.files.map(url => ({ attachment: url })), |
65 |
embeds: [ |
66 |
{ |
67 |
author: { |
68 |
name: ballot.anonymous ? "Staff" : user?.username ?? "Unknown", |
69 |
icon_url: ballot.anonymous ? message.guild!.iconURL() ?? undefined : user?.displayAvatarURL(), |
70 |
url |
71 |
}, |
72 |
description: ballot.content, |
73 |
color: 0x007bff, |
74 |
fields: [ |
75 |
{ |
76 |
name: "Total Votes", |
77 |
value: `⚪ **${ballot.upvotes.length - ballot.downvotes.length}**`, |
78 |
inline: true |
79 |
}, |
80 |
{ |
81 |
name: "Upvotes", |
82 |
value: `${this.emoji("ArrowTop")} ${ballot.upvotes.length}`, |
83 |
inline: true |
84 |
}, |
85 |
{ |
86 |
name: "Downvotes", |
87 |
value: `${this.emoji("ArrowDown")} ${ballot.downvotes.length}`, |
88 |
inline: true |
89 |
}, |
90 |
{ |
91 |
name: "Created At", |
92 |
value: `${displayDate(ballot.createdAt)}`, |
93 |
inline: true |
94 |
}, |
95 |
{ |
96 |
name: "Updated At", |
97 |
value: `${displayDate(ballot.updatedAt)}`, |
98 |
inline: true |
99 |
}, |
100 |
{ |
101 |
name: "Created By", |
102 |
value: user ? userInfo(user) : "*Not available*" |
103 |
} |
104 |
] |
105 |
} |
106 |
], |
107 |
components: [ |
108 |
new ActionRowBuilder<ButtonBuilder>().addComponents( |
109 |
new ButtonBuilder().setURL(url).setStyle(ButtonStyle.Link).setLabel("Go to ballot message") |
110 |
) |
111 |
] |
112 |
}); |
113 |
} |
114 |
} |