2023-06-15 21:56:15 +02:00
|
|
|
import { ApplicationCommandDataResolvable, Client, ClientOptions, Collection, Guild, IntentsBitField, Snowflake, TextChannel } from "discord.js";
|
|
|
|
import fs from 'fs';
|
2023-06-13 18:58:41 +02:00
|
|
|
import { ScheduledTask, schedule } from "node-cron";
|
2023-06-15 21:56:15 +02:00
|
|
|
import { v4 as uuid } from 'uuid';
|
|
|
|
import { config } from "../configuration";
|
|
|
|
import { Maybe } from "../interfaces";
|
|
|
|
import { JellyfinHandler } from "../jellyfin/handler";
|
|
|
|
import { logger } from "../logger";
|
|
|
|
import { CommandType } from "../types/commandTypes";
|
2023-07-05 22:54:43 +02:00
|
|
|
import { isInitialAnnouncement } from "../helper/messageIdentifiers";
|
2023-06-26 23:47:43 +02:00
|
|
|
import VoteController from "../helper/vote.controller";
|
2023-07-13 22:47:28 +02:00
|
|
|
import { yavinJellyfinHandler } from "../..";
|
2023-11-20 00:17:02 +01:00
|
|
|
import RoleController from "../helper/role.controller";
|
2023-04-15 22:06:35 +02:00
|
|
|
|
2023-06-12 20:27:54 +02:00
|
|
|
|
|
|
|
|
2023-04-15 22:06:35 +02:00
|
|
|
export class ExtendedClient extends Client {
|
2023-06-24 21:09:56 +02:00
|
|
|
private eventFilePath = `${__dirname}/../events`
|
|
|
|
private commandFilePath = `${__dirname}/../commands`
|
|
|
|
private jellyfin: JellyfinHandler
|
2023-07-13 22:47:28 +02:00
|
|
|
public voteController: VoteController = new VoteController(this, yavinJellyfinHandler)
|
2023-11-22 19:56:20 +01:00
|
|
|
public roleController: RoleController = new RoleController()
|
2023-06-24 21:09:56 +02:00
|
|
|
public commands: Collection<string, CommandType> = new Collection()
|
|
|
|
private announcementChannels: Collection<string, TextChannel> = new Collection() //guildId to TextChannel
|
|
|
|
private announcementRoleHandlerTask: Collection<string, ScheduledTask> = new Collection() //one task per guild
|
|
|
|
private pollCloseBackgroundTasks: Collection<string, ScheduledTask> = new Collection()
|
|
|
|
public constructor(jf: JellyfinHandler) {
|
|
|
|
const intents: IntentsBitField = new IntentsBitField()
|
2023-06-25 22:48:55 +02:00
|
|
|
intents.add(IntentsBitField.Flags.GuildMembers, IntentsBitField.Flags.MessageContent, IntentsBitField.Flags.Guilds, IntentsBitField.Flags.DirectMessages, IntentsBitField.Flags.GuildScheduledEvents, IntentsBitField.Flags.GuildMessageReactions, IntentsBitField.Flags.GuildVoiceStates)
|
2023-06-24 21:09:56 +02:00
|
|
|
const options: ClientOptions = { intents }
|
|
|
|
super(options)
|
|
|
|
this.jellyfin = jf
|
|
|
|
}
|
|
|
|
public async start() {
|
|
|
|
if (process.env.NODE_ENV === 'test') return
|
|
|
|
const promises: Promise<any>[] = []
|
|
|
|
promises.push(this.registerSlashCommands())
|
|
|
|
promises.push(this.registerEventCallback())
|
|
|
|
Promise.all(promises).then(() => {
|
|
|
|
this.login(config.bot.token)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
private async importFile(filepath: string): Promise<any> {
|
|
|
|
logger.debug(`Importing ${filepath}`)
|
|
|
|
const imported = await import(filepath)
|
|
|
|
logger.debug(`Imported ${JSON.stringify(imported)}`)
|
|
|
|
return imported.default ?? imported
|
|
|
|
}
|
|
|
|
public async registerCommands(cmds: ApplicationCommandDataResolvable[], guildIds: Collection<Snowflake, Guild>) {
|
|
|
|
if (guildIds) {
|
|
|
|
guildIds.forEach(guild => {
|
|
|
|
this.guilds.cache.get(guild.id)?.commands.set(cmds)
|
|
|
|
logger.info(`Registering commands to ${guild.name}|${guild.id}`)
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
this.application?.commands.set(cmds)
|
|
|
|
logger.info(`Registering global commands`)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
public async registerSlashCommands(): Promise<void> {
|
|
|
|
try {
|
|
|
|
const slashCommands: ApplicationCommandDataResolvable[] = []
|
|
|
|
const commandFiles = fs.readdirSync(this.commandFilePath).filter(file => file.endsWith('.ts') || file.endsWith('.js'))
|
|
|
|
for (const commandFile of commandFiles) {
|
|
|
|
const filePath = `${this.commandFilePath}/${commandFile}`
|
|
|
|
const command = await this.importFile(filePath)
|
|
|
|
logger.debug(JSON.stringify(command))
|
|
|
|
if (!command.name) return
|
|
|
|
this.commands.set(command.name, command)
|
|
|
|
slashCommands.push(command)
|
|
|
|
}
|
|
|
|
this.on("ready", async (client: Client) => {
|
|
|
|
//logger.info(`Ready processing ${JSON.stringify(client)}`)
|
|
|
|
logger.info(`SlashCommands: ${JSON.stringify(slashCommands)}`)
|
|
|
|
const guilds = client.guilds.cache
|
2023-06-12 20:27:54 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
this.registerCommands(slashCommands, guilds)
|
|
|
|
this.cacheUsers(guilds)
|
|
|
|
await this.cacheAnnouncementServer(guilds)
|
2023-06-25 22:48:55 +02:00
|
|
|
this.fetchAnnouncementChannelMessage(this.announcementChannels)
|
2023-06-24 21:09:56 +02:00
|
|
|
this.startAnnouncementRoleBackgroundTask(guilds)
|
|
|
|
this.startPollCloseBackgroundTasks()
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
logger.info(`Error refreshing slash commands: ${error}`)
|
|
|
|
}
|
|
|
|
}
|
2023-06-27 20:08:39 +02:00
|
|
|
/**
|
|
|
|
* Fetches all messages from the provided channel collection.
|
|
|
|
* This is necessary for announcementChannels, because 'old' messages don't receive
|
|
|
|
* messageReactionAdd Events, only messages that were sent while the bot is online are tracked
|
|
|
|
* automatically.
|
|
|
|
* To prevent the need for a dedicated 'Collector' implementation which would listen on specific
|
|
|
|
* it's easiest to just fetch all messages from the backlog, which automatically makes the bot track them
|
|
|
|
* again.
|
|
|
|
* @param {Collection<string, TextChannel>} channels - All channels which should be fecthed for reactionTracking
|
|
|
|
*/
|
2023-06-25 22:48:55 +02:00
|
|
|
private async fetchAnnouncementChannelMessage(channels: Collection<string, TextChannel>): Promise<void> {
|
|
|
|
channels.each(async ch => {
|
|
|
|
ch.messages.fetch()
|
|
|
|
})
|
|
|
|
}
|
2023-06-24 21:09:56 +02:00
|
|
|
private async cacheAnnouncementServer(guilds: Collection<Snowflake, Guild>) {
|
|
|
|
for (const guild of guilds.values()) {
|
|
|
|
const channels: TextChannel[] = <TextChannel[]>(await guild.channels.fetch())
|
|
|
|
?.filter(channel => channel?.id === config.bot.announcement_channel_id)
|
|
|
|
.map((value) => value)
|
2023-06-12 20:27:54 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
if (!channels || channels.length != 1) {
|
|
|
|
logger.error(`Could not find announcement channel for guild ${guild.name} with guildId ${guild.id}. Found ${channels}`)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
logger.info(`Fetched announcement channel: ${JSON.stringify(channels[0])}`)
|
|
|
|
this.announcementChannels.set(guild.id, channels[0])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public getAnnouncementChannelForGuild(guildId: string): Maybe<TextChannel> {
|
|
|
|
return this.announcementChannels.get(guildId)
|
|
|
|
}
|
|
|
|
public async cacheUsers(guilds: Collection<Snowflake, Guild>) {
|
|
|
|
guilds.forEach((guild: Guild, id: Snowflake) => {
|
|
|
|
logger.info(`Fetching members for ${guild.name}|${id}`)
|
|
|
|
guild.members.fetch()
|
|
|
|
logger.info(`Fetched: ${guild.memberCount} members`)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
public async registerEventCallback() {
|
|
|
|
try {
|
|
|
|
const eventFiles = fs.readdirSync(this.eventFilePath).filter(file => file.endsWith('.ts') || file.endsWith('.js'));
|
|
|
|
for (const file of eventFiles) {
|
|
|
|
const filePath = `${this.eventFilePath}/${file}`
|
|
|
|
const event = await this.importFile(filePath)
|
|
|
|
if (event.once) {
|
|
|
|
logger.info(`Registering once ${file}`)
|
|
|
|
this.once(event.name, (...args: any[]) => event.execute(...args))
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
logger.info(`Registering on ${file}`)
|
|
|
|
this.on(event.name, (...args: any[]) => event.execute(...args))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
logger.info(`Registered event names ${this.eventNames()}`)
|
|
|
|
} catch (error) {
|
|
|
|
logger.error(error)
|
|
|
|
}
|
|
|
|
}
|
2023-06-13 18:58:41 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
public async startAnnouncementRoleBackgroundTask(guilds: Collection<string, Guild>) {
|
|
|
|
for (const guild of guilds.values()) {
|
|
|
|
logger.info("Starting background task for announcement role", { guildId: guild.id })
|
|
|
|
const textChannel: Maybe<TextChannel> = this.getAnnouncementChannelForGuild(guild.id)
|
|
|
|
if (!textChannel) {
|
|
|
|
logger.error("Could not find announcement channel. Aborting", { guildId: guild.id })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.announcementRoleHandlerTask.set(guild.id, schedule("*/10 * * * * *", async () => {
|
|
|
|
const requestId = uuid()
|
2023-07-05 22:54:43 +02:00
|
|
|
const messages = (await textChannel.messages.fetchPinned()).filter(message => isInitialAnnouncement(message))
|
2023-06-13 18:58:41 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
if (messages.size > 1) {
|
|
|
|
logger.error("More than one pinned announcement Messages found. Unable to know which one people react to. Please fix!", { guildId: guild.id, requestId })
|
|
|
|
return
|
|
|
|
} else if (messages.size == 0) {
|
|
|
|
logger.error("Could not find any pinned announcement messages. Unable to manage roles!", { guildId: guild.id, requestId })
|
|
|
|
return
|
|
|
|
}
|
2023-06-13 18:58:41 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
const message = await messages.at(0)?.fetch()
|
|
|
|
if (!message) {
|
|
|
|
logger.error(`No pinned message found`, { guildId: guild.id, requestId })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
//logger.debug(`Message: ${JSON.stringify(message, null, 2)}`, { guildId: guild.id, requestId })
|
2023-06-13 18:58:41 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
const reactions = message.reactions.resolve("🎫")
|
|
|
|
//logger.debug(`reactions: ${JSON.stringify(reactions, null, 2)}`, { guildId: guild.id, requestId })
|
|
|
|
if (reactions) {
|
2023-11-21 22:42:50 +01:00
|
|
|
this.roleController.assignAnnouncementRolesFromReactions(message.guild, reactions, requestId)
|
2023-06-24 21:09:56 +02:00
|
|
|
} else {
|
|
|
|
logger.error("Did not get reactions! Aborting!", { guildId: guild.id, requestId })
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
}
|
2023-06-13 20:13:13 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
public stopAnnouncementRoleBackgroundTask(guildId: string, requestId: string) {
|
|
|
|
const task: Maybe<ScheduledTask> = this.announcementRoleHandlerTask.get(guildId)
|
|
|
|
if (!task) {
|
|
|
|
logger.error(`No task found for guildID ${guildId}.`, { guildId, requestId })
|
|
|
|
return
|
|
|
|
}
|
|
|
|
task.stop()
|
|
|
|
}
|
2023-06-17 12:00:14 +02:00
|
|
|
|
2023-06-24 21:09:56 +02:00
|
|
|
private async startPollCloseBackgroundTasks() {
|
|
|
|
for (const guild of this.guilds.cache) {
|
2023-07-05 22:55:24 +02:00
|
|
|
this.pollCloseBackgroundTasks.set(guild[1].id, schedule("0 * * * * *", () => this.voteController.checkForPollsToClose(guild[1])))
|
2023-06-24 21:09:56 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-15 22:06:35 +02:00
|
|
|
}
|