51 lines
2.4 KiB
TypeScript
51 lines
2.4 KiB
TypeScript
import { Guild, GuildMember, GuildScheduledEvent, GuildScheduledEventEditOptions, GuildScheduledEventSetStatusArg, GuildScheduledEventStatus, Message, MessageCreateOptions, MessageEditOptions, TextChannel, messageLink } from 'discord.js'
|
|
import { v4 as uuid } from 'uuid'
|
|
import { config } from '../configuration'
|
|
import { Emotes } from '../events/guildScheduledEventCreate'
|
|
import { logger } from '../logger'
|
|
import { Command } from '../structures/command'
|
|
import { RunOptions } from '../types/commandTypes'
|
|
import { client } from '../..'
|
|
|
|
export default new Command({
|
|
name: 'announce',
|
|
description: 'Neues announcement im announcement Channel an alle senden.',
|
|
options: [],
|
|
run: async (interaction: RunOptions) => {
|
|
const command = interaction.interaction
|
|
const requestId = uuid()
|
|
const guildId = command.guildId!
|
|
logger.info("Got command for announcing!", { guildId, requestId })
|
|
|
|
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`)
|
|
}
|
|
sendAnnouncement(guildId, requestId)
|
|
command.followUp("Ist rausgeschickt!")
|
|
}
|
|
})
|
|
|
|
function isAdmin(member: GuildMember): boolean {
|
|
return member.roles.cache.find((role, _) => role.id === config.bot.jf_admin_role) != undefined
|
|
}
|
|
|
|
async function sendAnnouncement(guildId: string, requestId: string): Promise<void> {
|
|
logger.info("Sending announcement")
|
|
const announcementChannel: TextChannel = client.getAnnouncementChannelForGuild(guildId)
|
|
|
|
const body = `Hey! @everyone! Hier ist der Watchparty Bot vom Hartzarett.
|
|
|
|
Wir machen in Zukunft regelmäßig Watchparties! 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.
|
|
|
|
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.`
|
|
|
|
const options: MessageCreateOptions = {
|
|
allowedMentions: { parse: ['everyone'] },
|
|
content: body
|
|
}
|
|
const message: Message<true> = await announcementChannel.send(options)
|
|
message.react("🎫")
|
|
} |