jellyfin-discord-bot/index.ts

25 lines
833 B
TypeScript
Raw Normal View History

2023-04-15 22:06:35 +02:00
import { ExtendedClient } from "./server/structures/client"
import { config } from "./server/configuration"
import { logger } from "./server/logger"
2023-05-04 23:38:11 +02:00
import { JellyfinHandler } from "./server/jellyfin/handler"
import { attachedImages } from "./server/assets/attachments"
const requestId = 'startup'
2023-04-15 22:06:35 +02:00
2023-04-18 23:44:42 +02:00
export const jellyfinHandler = new JellyfinHandler(config)
export const client = new ExtendedClient(jellyfinHandler)
export const attachmentImages = attachedImages
async function init() {
try {
const users = await jellyfinHandler.getCurrentUsers("", requestId)
logger.info(`Fetched ${users.map(x => x.name).join(', ')} from JF`, { requestId })
} catch (error) {
logger.error(`Error fetching existing users from Jellyfin`, { requestId })
2023-04-15 22:06:35 +02:00
}
logger.info(`Starting client`, { requestId })
client.start()
2023-04-15 22:06:35 +02:00
}
init()