blob: 5867338bcb777c9a629dcd8c4d073091b527130b [file] [log] [blame]
pineafane23c4ec2022-07-27 21:56:27 +01001import { LoadingEmbed } from './../../../utils/defaultEmbeds.js';
pineafan708692b2022-07-24 22:16:22 +01002import { ChannelType } from 'discord-api-types';
3import Discord, { CommandInteraction, MessageActionRow, MessageButton } from "discord.js";
4import EmojiEmbed from "../../../utils/generateEmojiEmbed.js";
5import confirmationMessage from "../../../utils/confirmationMessage.js";
6import getEmojiByName from "../../../utils/getEmojiByName.js";
7import { SlashCommandSubcommandBuilder } from "@discordjs/builders";
8import { WrappedCheck } from "jshaiku";
9import client from "../../../utils/client.js";
10
11const command = (builder: SlashCommandSubcommandBuilder) =>
12 builder
13 .setName("staff")
14 .setDescription("Settings for the staff notifications channel")
15 .addChannelOption(option => option.setName("channel").setDescription("The channel to set the staff notifications channel to").addChannelTypes([
16 ChannelType.GuildNews, ChannelType.GuildText
17 ]).setRequired(false))
18
19const callback = async (interaction: CommandInteraction): Promise<any> => {
20 let m;
pineafane23c4ec2022-07-27 21:56:27 +010021 m = await interaction.reply({embeds: LoadingEmbed, ephemeral: true, fetchReply: true});
pineafan708692b2022-07-24 22:16:22 +010022 if (interaction.options.getChannel("channel")) {
23 let channel
24 try {
25 channel = interaction.options.getChannel("channel")
26 } catch {
27 return await interaction.editReply({embeds: [new EmojiEmbed()
28 .setEmoji("CHANNEL.TEXT.DELETE")
29 .setTitle("Staff Notifications Channel")
30 .setDescription("The channel you provided is not a valid channel")
31 .setStatus("Danger")
32 ]})
33 }
34 channel = channel as Discord.TextChannel
pineafane23c4ec2022-07-27 21:56:27 +010035 if (channel.guild.id !== interaction.guild.id) {
pineafan708692b2022-07-24 22:16:22 +010036 return interaction.editReply({embeds: [new EmojiEmbed()
37 .setTitle("Staff Notifications Channel")
38 .setDescription(`You must choose a channel in this server`)
39 .setStatus("Danger")
40 .setEmoji("CHANNEL.TEXT.DELETE")
41 ]});
42 }
43 let confirmation = await new confirmationMessage(interaction)
44 .setEmoji("CHANNEL.TEXT.EDIT")
45 .setTitle("Staff Notifications Channel")
46 .setDescription(
47 `This will be the channel all notifications, updates, user reports etc. will be sent to.\n\n` +
48 `Are you sure you want to set the staff notifications channel to <#${channel.id}>?`
49 )
50 .setColor("Warning")
51 .setInverted(true)
52 .send(true)
53 if (confirmation.cancelled) return
54 if (confirmation.success) {
55 try {
56 await client.database.guilds.write(interaction.guild.id, {"logging.staff.channel": channel.id})
57 const { log, NucleusColors, entry, renderUser, renderChannel } = client.logger
58 try {
59 let data = {
60 meta:{
61 type: 'staffChannelUpdate',
62 displayName: 'Staff Notifications Channel Updated',
63 calculateType: 'nucleusSettingsUpdated',
64 color: NucleusColors.yellow,
65 emoji: "CHANNEL.TEXT.EDIT",
66 timestamp: new Date().getTime()
67 },
68 list: {
69 memberId: entry(interaction.user.id, `\`${interaction.user.id}\``),
70 changedBy: entry(interaction.user.id, renderUser(interaction.user)),
71 channel: entry(channel.id, renderChannel(channel)),
72 },
73 hidden: {
74 guild: interaction.guild.id
75 }
76 }
77 log(data);
78 } catch {}
79 } catch (e) {
80 return interaction.editReply({embeds: [new EmojiEmbed()
81 .setTitle("Staff Notifications Channel")
82 .setDescription(`Something went wrong and the staff notifications channel could not be set`)
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")
90 .setDescription(`No changes were made`)
91 .setStatus("Success")
92 .setEmoji("CHANNEL.TEXT.CREATE")
93 ], components: []});
94 }
95 }
96 let clicks = 0;
97 let data = await client.database.guilds.read(interaction.guild.id);
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});
115 } catch(e) { break }
116 i.deferUpdate()
pineafane23c4ec2022-07-27 21:56:27 +0100117 if (i.component.customId === "clear") {
pineafan708692b2022-07-24 22:16:22 +0100118 clicks += 1;
pineafane23c4ec2022-07-27 21:56:27 +0100119 if (clicks === 2) {
pineafan708692b2022-07-24 22:16:22 +0100120 clicks = 0;
pineafane23c4ec2022-07-27 21:56:27 +0100121 await client.database.guilds.write(interaction.guild.id, null, ["logging.staff.channel"])
pineafan708692b2022-07-24 22:16:22 +0100122 channel = undefined;
123 }
124 } else {
125 break
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 ])]});
141}
142
143const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
144 let member = (interaction.member as Discord.GuildMember)
pineafane23c4ec2022-07-27 21:56:27 +0100145 if (!member.permissions.has("MANAGE_GUILD")) throw "You must have the *Manage Server* permission to use this command"
pineafan708692b2022-07-24 22:16:22 +0100146 return true;
147}
148
149export { command };
150export { callback };
151export { check };