pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 1 | import { LoadingEmbed } from "./../../../utils/defaultEmbeds.js"; |
| 2 | import { ChannelType } from "discord-api-types"; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 3 | import Discord, { CommandInteraction, MessageActionRow, MessageButton } from "discord.js"; |
| 4 | import EmojiEmbed from "../../../utils/generateEmojiEmbed.js"; |
| 5 | import confirmationMessage from "../../../utils/confirmationMessage.js"; |
| 6 | import getEmojiByName from "../../../utils/getEmojiByName.js"; |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 7 | import type { SlashCommandSubcommandBuilder } from "@discordjs/builders"; |
| 8 | // eslint-disable-next-line @typescript-eslint/ban-ts-comment |
| 9 | // @ts-ignore |
| 10 | import type { WrappedCheck } from "jshaiku"; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 11 | import client from "../../../utils/client.js"; |
| 12 | |
| 13 | const command = (builder: SlashCommandSubcommandBuilder) => |
| 14 | builder |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 15 | .setName("staff") |
| 16 | .setDescription("Settings for the staff notifications channel") |
| 17 | .addChannelOption(option => option.setName("channel").setDescription("The channel to set the staff notifications channel to").addChannelTypes([ |
| 18 | ChannelType.GuildNews, ChannelType.GuildText |
| 19 | ]).setRequired(false)); |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 20 | |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 21 | const callback = async (interaction: CommandInteraction): Promise<unknown | void> => { |
| 22 | if (!interaction.guild) return; |
| 23 | const m = await interaction.reply({embeds: LoadingEmbed, ephemeral: true, fetchReply: true}) as Discord.Message<boolean>; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 24 | if (interaction.options.getChannel("channel")) { |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 25 | let channel; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 26 | try { |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 27 | channel = interaction.options.getChannel("channel"); |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 28 | } catch { |
| 29 | return await interaction.editReply({embeds: [new EmojiEmbed() |
| 30 | .setEmoji("CHANNEL.TEXT.DELETE") |
| 31 | .setTitle("Staff Notifications Channel") |
| 32 | .setDescription("The channel you provided is not a valid channel") |
| 33 | .setStatus("Danger") |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 34 | ]}); |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 35 | } |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 36 | channel = channel as Discord.TextChannel; |
pineafan | e23c4ec | 2022-07-27 21:56:27 +0100 | [diff] [blame] | 37 | if (channel.guild.id !== interaction.guild.id) { |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 38 | return interaction.editReply({embeds: [new EmojiEmbed() |
| 39 | .setTitle("Staff Notifications Channel") |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 40 | .setDescription("You must choose a channel in this server") |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 41 | .setStatus("Danger") |
| 42 | .setEmoji("CHANNEL.TEXT.DELETE") |
| 43 | ]}); |
| 44 | } |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 45 | const confirmation = await new confirmationMessage(interaction) |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 46 | .setEmoji("CHANNEL.TEXT.EDIT") |
| 47 | .setTitle("Staff Notifications Channel") |
| 48 | .setDescription( |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 49 | "This will be the channel all notifications, updates, user reports etc. will be sent to.\n\n" + |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 50 | `Are you sure you want to set the staff notifications channel to <#${channel.id}>?` |
| 51 | ) |
| 52 | .setColor("Warning") |
| 53 | .setInverted(true) |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 54 | .send(true); |
| 55 | if (confirmation.cancelled) return; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 56 | if (confirmation.success) { |
| 57 | try { |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 58 | await client.database.guilds.write(interaction.guild.id, {"logging.staff.channel": channel.id}); |
| 59 | const { log, NucleusColors, entry, renderUser, renderChannel } = client.logger; |
| 60 | const data = { |
| 61 | meta:{ |
| 62 | type: "staffChannelUpdate", |
| 63 | displayName: "Staff Notifications Channel Updated", |
| 64 | calculateType: "nucleusSettingsUpdated", |
| 65 | color: NucleusColors.yellow, |
| 66 | emoji: "CHANNEL.TEXT.EDIT", |
| 67 | timestamp: new Date().getTime() |
| 68 | }, |
| 69 | list: { |
| 70 | memberId: entry(interaction.user.id, `\`${interaction.user.id}\``), |
| 71 | changedBy: entry(interaction.user.id, renderUser(interaction.user)), |
| 72 | channel: entry(channel.id, renderChannel(channel)) |
| 73 | }, |
| 74 | hidden: { |
| 75 | guild: interaction.guild.id |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 76 | } |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 77 | }; |
| 78 | log(data); |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 79 | } catch (e) { |
| 80 | return interaction.editReply({embeds: [new EmojiEmbed() |
| 81 | .setTitle("Staff Notifications Channel") |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 82 | .setDescription("Something went wrong and the staff notifications channel could not be set") |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 83 | .setStatus("Danger") |
| 84 | .setEmoji("CHANNEL.TEXT.DELETE") |
| 85 | ], components: []}); |
| 86 | } |
| 87 | } else { |
| 88 | return interaction.editReply({embeds: [new EmojiEmbed() |
| 89 | .setTitle("Staff Notifications Channel") |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 90 | .setDescription("No changes were made") |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 91 | .setStatus("Success") |
| 92 | .setEmoji("CHANNEL.TEXT.CREATE") |
| 93 | ], components: []}); |
| 94 | } |
| 95 | } |
| 96 | let clicks = 0; |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 97 | const data = await client.database.guilds.read(interaction.guild.id); |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 98 | let channel = data.logging.staff.channel; |
| 99 | while (true) { |
| 100 | await interaction.editReply({embeds: [new EmojiEmbed() |
| 101 | .setTitle("Staff Notifications channel") |
| 102 | .setDescription(channel ? `Your staff notifications channel is currently set to <#${channel}>` : "This server does not have a staff notifications channel") |
| 103 | .setStatus("Success") |
| 104 | .setEmoji("CHANNEL.TEXT.CREATE") |
| 105 | ], components: [new MessageActionRow().addComponents([new MessageButton() |
| 106 | .setCustomId("clear") |
| 107 | .setLabel(clicks ? "Click again to confirm" : "Reset channel") |
| 108 | .setEmoji(getEmojiByName(clicks ? "TICKETS.ISSUE" : "CONTROL.CROSS", "id")) |
| 109 | .setStyle("DANGER") |
| 110 | .setDisabled(!channel) |
| 111 | ])]}); |
| 112 | let i; |
| 113 | try { |
| 114 | i = await m.awaitMessageComponent({time: 300000}); |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 115 | } catch(e) { break; } |
| 116 | i.deferUpdate(); |
| 117 | if ((i.component as MessageButton).customId === "clear") { |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 118 | clicks += 1; |
pineafan | e23c4ec | 2022-07-27 21:56:27 +0100 | [diff] [blame] | 119 | if (clicks === 2) { |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 120 | clicks = 0; |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 121 | await client.database.guilds.write(interaction.guild.id, null, ["logging.staff.channel"]); |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 122 | channel = undefined; |
| 123 | } |
| 124 | } else { |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 125 | break; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 126 | } |
| 127 | } |
| 128 | await interaction.editReply({embeds: [new EmojiEmbed() |
| 129 | .setTitle("Staff Notifications channel") |
| 130 | .setDescription(channel ? `Your staff notifications channel is currently set to <#${channel}>` : "This server does not have a staff notifications channel") |
| 131 | .setStatus("Success") |
| 132 | .setEmoji("CHANNEL.TEXT.CREATE") |
| 133 | .setFooter({text: "Message closed"}) |
| 134 | ], components: [new MessageActionRow().addComponents([new MessageButton() |
| 135 | .setCustomId("clear") |
| 136 | .setLabel("Clear") |
| 137 | .setEmoji(getEmojiByName("CONTROL.CROSS", "id")) |
| 138 | .setStyle("SECONDARY") |
| 139 | .setDisabled(true) |
| 140 | ])]}); |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 141 | }; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 142 | |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 143 | const check = (interaction: CommandInteraction, _defaultCheck: WrappedCheck) => { |
| 144 | const member = (interaction.member as Discord.GuildMember); |
| 145 | if (!member.permissions.has("MANAGE_GUILD")) throw "You must have the *Manage Server* permission to use this command"; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 146 | return true; |
pineafan | 63fc5e2 | 2022-08-04 22:04:10 +0100 | [diff] [blame] | 147 | }; |
pineafan | 708692b | 2022-07-24 22:16:22 +0100 | [diff] [blame] | 148 | |
| 149 | export { command }; |
| 150 | export { callback }; |
| 151 | export { check }; |