/[sudobot]/trunk/src/events/ready/ReadyEvent.ts
ViewVC logotype

Annotation of /trunk/src/events/ready/ReadyEvent.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 323 - (hide annotations)
Mon Jul 29 17:29:32 2024 UTC (8 months, 2 weeks ago) by rakin
File MIME type: application/typescript
File size: 1234 byte(s)
feat: add basic server and routing
1 rakin 51 import BaseEvent from '../../utils/structures/BaseEvent';
2     import DiscordClient from '../../client/Client';
3     import { runTimeouts } from '../../utils/setTimeout';
4 rakin 77 import { LogLevel } from '../../services/DebugLogger';
5 rakin 148 import BannedGuild from '../../models/BannedGuild';
6 rakin 77 import { exit } from 'process';
7 rakin 51
8     export default class ReadyEvent extends BaseEvent {
9     constructor() {
10     super('ready');
11     }
12    
13     async run(client: DiscordClient) {
14 rakin 58 console.log(`\nLogged in as ${client.user!.tag}!`);
15 rakin 323 await client.server.run();
16    
17     console.log(client.server.router.routes);
18    
19 rakin 51 runTimeouts();
20 rakin 58 client.startupManager.boot();
21 rakin 71 client.randomStatus.update();
22 rakin 77
23     for (const guild of client.guilds.cache.toJSON()) {
24     console.log(guild.id + ' ' + guild.name);
25    
26     if (!client.config.props[guild.id]) {
27     console.log('Unauthorized guilds found! Please run the cli with `guildpurge` command to remove unauthorized guilds.');
28     await client.debugLogger.logLeaveJoin(LogLevel.CRITICAL, `Unauthorized guild detected: ${guild.name} [ID: ${guild.id}]`);
29     exit(-1);
30     }
31     }
32 rakin 51 }
33     }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26