2023-06-13 21:12:32 +02:00
|
|
|
import { ApplicationCommandOptionType, Guild, GuildMember, Message, MessageCreateOptions, MessageReaction, Role, TextChannel, User } from 'discord.js'
|
2023-06-12 22:21:10 +02:00
|
|
|
import { v4 as uuid } from 'uuid'
|
2023-06-13 18:18:26 +02:00
|
|
|
import { client } from '../..'
|
2023-06-12 22:21:10 +02:00
|
|
|
import { config } from '../configuration'
|
2023-06-15 21:56:15 +02:00
|
|
|
import { Maybe } from '../interfaces'
|
2023-06-12 22:21:10 +02:00
|
|
|
import { logger } from '../logger'
|
|
|
|
import { Command } from '../structures/command'
|
|
|
|
import { RunOptions } from '../types/commandTypes'
|
2023-07-05 22:54:43 +02:00
|
|
|
import { isInitialAnnouncement } from '../helper/messageIdentifiers'
|
2023-06-12 22:21:10 +02:00
|
|
|
|
|
|
|
export default new Command({
|
2023-06-24 21:09:56 +02:00
|
|
|
name: 'announce',
|
|
|
|
description: 'Neues announcement im announcement Channel an alle senden.',
|
|
|
|
options: [{
|
|
|
|
name: "typ",
|
|
|
|
type: ApplicationCommandOptionType.String,
|
|
|
|
description: "Was für ein announcement?",
|
|
|
|
choices: [{ name: "initial", value: "initial" }, { name: "votepls", value: "votepls" }, { name: "cancel", value: "cancel" }],
|
|
|
|
required: true
|
|
|
|
}],
|
|
|
|
run: async (interaction: RunOptions) => {
|
|
|
|
const command = interaction.interaction
|
|
|
|
const requestId = uuid()
|
|
|
|
if (!command.guildId) {
|
|
|
|
logger.error("COMMAND DOES NOT HAVE A GUILD ID; CANCELLING!!!", { requestId })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const guildId = command.guildId
|
|
|
|
const announcementType = command.options.data.find(option => option.name.includes("typ"))
|
|
|
|
logger.info(`Got command for announcing ${announcementType?.value}!`, { guildId, requestId })
|
|
|
|
|
|
|
|
if (!announcementType) {
|
|
|
|
logger.error("Did not get an announcement type!", { guildId, requestId })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isAdmin(command.member)) {
|
|
|
|
logger.info(`Announcement was requested by ${command.member.displayName} but they are not an admin! Not sending announcement.`, { guildId, requestId })
|
|
|
|
return
|
|
|
|
} else {
|
|
|
|
logger.info(`User ${command.member.displayName} seems to be admin`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((<string>announcementType.value).includes("initial")) {
|
|
|
|
sendInitialAnnouncement(guildId, requestId)
|
|
|
|
command.followUp("Ist rausgeschickt!")
|
|
|
|
} else {
|
|
|
|
command.followUp(`${announcementType.value} ist aktuell noch nicht implementiert`)
|
|
|
|
}
|
|
|
|
}
|
2023-06-12 22:34:39 +02:00
|
|
|
})
|
2023-06-12 22:21:10 +02:00
|
|
|
|
2023-06-12 22:34:39 +02:00
|
|
|
function isAdmin(member: GuildMember): boolean {
|
2023-06-24 21:09:56 +02:00
|
|
|
return member.roles.cache.find((role) => role.id === config.bot.jf_admin_role) !== undefined
|
2023-06-12 22:34:39 +02:00
|
|
|
}
|
2023-06-12 22:21:10 +02:00
|
|
|
|
2023-06-13 21:12:32 +02:00
|
|
|
async function sendInitialAnnouncement(guildId: string, requestId: string): Promise<void> {
|
2023-06-24 21:09:56 +02:00
|
|
|
logger.info("Sending initial announcement")
|
|
|
|
const announcementChannel: Maybe<TextChannel> = client.getAnnouncementChannelForGuild(guildId)
|
|
|
|
if (!announcementChannel) {
|
|
|
|
logger.error("Could not find announcement channel. Aborting", { guildId, requestId })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-07-05 22:54:43 +02:00
|
|
|
const currentPinnedAnnouncementMessages = (await announcementChannel.messages.fetchPinned()).filter(message => isInitialAnnouncement(message))
|
2023-06-24 21:09:56 +02:00
|
|
|
currentPinnedAnnouncementMessages.forEach(async (message) => await message.unpin())
|
|
|
|
currentPinnedAnnouncementMessages.forEach(message => message.delete())
|
|
|
|
|
|
|
|
const body = `[initial] Hey! @everyone! Hier ist der Watchparty Bot vom Hartzarett.
|
2023-06-12 22:34:39 +02:00
|
|
|
|
2023-06-15 22:33:42 +02:00
|
|
|
Wir machen in Zukunft regelmäßig Watchparties in denen wir zusammen Filme gucken! Falls du mitmachen möchtest, reagiere einfach auf diesen Post mit 🎫, dann bekommst du automatisch eine Rolle zugewiesen und wirst benachrichtigt sobald es in der Zukunft weitere Watchparties und Filme zum abstimmen gibt.
|
2023-06-12 22:21:10 +02:00
|
|
|
|
2023-06-12 22:34:39 +02:00
|
|
|
Für eine Erklärung wie das alles funktioniert mach einfach /mitgucken für eine lange Erklärung am Stück oder /guides wenn du auswählen möchtest wozu du Infos bekommst.`
|
2023-06-12 22:21:10 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
const options: MessageCreateOptions = {
|
|
|
|
allowedMentions: { parse: ['everyone'] },
|
|
|
|
content: body
|
|
|
|
}
|
|
|
|
const message: Message<true> = await announcementChannel.send(options)
|
|
|
|
await message.react("🎫")
|
|
|
|
await message.pin()
|
2023-06-13 18:18:26 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|