import { config } from 'dotenv'; config(); import logger from './bot/logger'; import AutomodClient, { login } from './struct/AutomodClient'; import MongoDB from './bot/db'; import DbUser from './struct/DbUser'; import ServerConfig from './struct/ServerConfig'; import Infraction from './struct/antispam/Infraction'; import PendingLogin from './struct/PendingLogin'; import TempBan from './struct/TempBan'; import { VoteEntry } from './bot/commands/votekick'; import ScannedUser from './struct/ScannedUser'; logger.info('Initializing client'); let db = MongoDB(); let client = new AutomodClient({ // pongTimeout: 10, // onPongTimeout: 'RECONNECT', fixReplyCrash: true, messageTimeoutFix: true }, db); login(client); const dbs = { SERVERS: db.get('servers'), USERS: db.get('users'), INFRACTIONS: db.get('infractions'), PENDING_LOGINS: db.get('pending_logins'), SESSIONS: db.get('sessions'), TEMPBANS: db.get('tempbans'), VOTEKICKS: db.get('votekicks'), SCANNED_USERS: db.get('scanned_users'), } export { client, dbs } (async () => { // Wait for a database query to succeed before loading the rest logger.info('Connecting to database...'); await db.get('servers').findOne({}); logger.done('DB ready!'); // Load modules import('./bot/modules/command_handler'); import('./bot/modules/mod_logs'); import('./bot/modules/event_handler'); import('./bot/modules/tempbans'); import('./bot/modules/user_scan'); import('./bot/modules/api_communication'); import('./bot/modules/metrics'); import('./bot/modules/bot_status'); import('./bot/modules/fetch_all'); })();