Files
illegitimate-bot/src/components/buttons/guildapplicationaccept.ts
2024-02-20 13:03:52 +01:00

139 lines
5.0 KiB
TypeScript

import { ActionRowBuilder, ButtonStyle, ButtonBuilder, TextChannel } from "discord.js"
import { embedColor, waitingListChannel, waitingListMessage, hypixelGuildID } from "config/options"
import color from "utils/functions/colors"
import mongoose from "mongoose"
import guildapp from "schemas/guildAppSchema"
import waitingList from "schemas/waitinglistSchema"
import { waitingListRole } from "config/roles"
import { IButton } from "interfaces"
import { getGuild, getIGN } from "utils/Hypixel"
export = {
name: "guildapplicationaccept",
description: "Accept a guild application.",
async execute(interaction) {
await interaction.deferReply()
const user = interaction.user
const guild = interaction.guild!
const message = interaction.message
const embed = message.embeds[0]
const applicantId = embed.footer!.text.split(" ")[1]
const applicant = await guild.members.fetch(applicantId)
const applicantUsername = applicant.user.username + "#" + applicant.user.discriminator
await message.edit({
components: [
new ActionRowBuilder<ButtonBuilder>().addComponents(
new ButtonBuilder()
.setCustomId("guildapplicationaccept")
.setLabel("Accept")
.setStyle(ButtonStyle.Primary)
.setDisabled(true),
new ButtonBuilder()
.setCustomId("guildapplicationdeny")
.setLabel("Deny")
.setStyle(ButtonStyle.Danger)
.setDisabled(true),
new ButtonBuilder()
.setCustomId("checkstats")
.setLabel("Check Stats")
.setStyle(ButtonStyle.Secondary)
.setDisabled(true)
)
]
})
await applicant.send({
embeds: [{
description: "Your application for the Illegitimate guild has been accepted.\n\n" +
"Make sure to leave your current guild so that we can invite you.",
color: embedColor
}]
})
const applicantEntry = await guildapp.findOne({ userID: applicantId })
const applicantUUID = applicantEntry!.uuid
const time = Date.now()
const waitingListAdd = new waitingList({
_id: new mongoose.Types.ObjectId(),
userID: applicantId,
uuid: applicantUUID,
timestamp: time
})
await waitingListAdd.save()
await applicant.roles.add(waitingListRole)
await guildapp.findOneAndDelete({ userID: applicantId })
await interaction.editReply({
embeds: [{
title: applicantUsername + " - Guild Application",
description: "Application has been accepted by <@" + user.id + ">.",
color: embedColor,
thumbnail: {
url: applicant.avatarURL() || ""
},
footer: {
icon_url: guild.iconURL() || undefined,
text: "ID: " + applicant.id
}
}]
})
if (process.env.NODE_ENV === "dev") return
try {
const channel = guild.channels.cache.get(waitingListChannel) as TextChannel
const wlmessage = await channel!.messages.fetch(waitingListMessage)
const wlembed = wlmessage.embeds[0]
const accepted = await waitingList.find()
for (let i = 0; i < accepted.length; i++) {
const uuid = accepted[i].uuid
const guild = await getGuild(uuid)
if (guild && guild._id === hypixelGuildID) {
await waitingList.findOneAndDelete({ uuid: uuid })
continue
}
}
const fields: { name: string; value: string }[] = []
for (let i = 0; i < accepted.length; i++) {
const ign = await getIGN(accepted[i].uuid)
const timestamp = Math.floor(accepted[i].timestamp / 1000)
fields.push({
name: `${i + 1}. ${ign}`,
value: `TS: <t:${timestamp}:R>`
})
}
await wlmessage.edit({
embeds: [{
title: wlembed.title!,
description: wlembed.description!,
color: wlembed.color!,
footer: {
text: "Last updated by " + user.username,
icon_url: user.avatarURL() || undefined
},
thumbnail: wlembed.thumbnail!,
fields: fields,
timestamp: new Date().toISOString()
}]
})
} catch (err) {
console.log(
color("Error while trying to update waiting list.", "red")
)
}
}
} as IButton