/[sudobot]/trunk/src/index.ts
ViewVC logotype

Annotation of /trunk/src/index.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 66 - (hide annotations)
Mon Jul 29 17:28:27 2024 UTC (8 months, 1 week ago) by rakin
File MIME type: application/typescript
File size: 1539 byte(s)
Fixed security issues
1 rakin 51 import { registerCommands, registerEvents } from './utils/registry';
2     import DiscordClient from './client/Client';
3     import { Intents } from 'discord.js';
4     import { config } from 'dotenv';
5     import { existsSync } from 'fs';
6     import path from 'path';
7 rakin 58 import { registrationEnd, registrationStart } from './utils/debug';
8     import { yellow } from './utils/util';
9 rakin 51
10     if (existsSync(path.join(__dirname, '../.env'))) {
11     config();
12     }
13     else {
14     process.env.ENV = 'prod';
15     }
16    
17 rakin 58 if (process.argv.includes('--prod')) {
18     console.warn(yellow('WARNING: Forcing production mode (--prod option passed)'));
19     process.env.ENV = 'prod';
20     }
21    
22     if (process.argv.includes('--dev')) {
23     console.warn(yellow('WARNING: Forcing development mode (--dev option passed)'));
24     process.env.ENV = 'dev';
25     }
26    
27 rakin 66 const client = new DiscordClient({
28     partials: ["CHANNEL"],
29     intents: [
30     Intents.FLAGS.GUILDS,
31     Intents.FLAGS.GUILD_MESSAGES,
32     Intents.FLAGS.DIRECT_MESSAGES,
33     Intents.FLAGS.DIRECT_MESSAGE_TYPING,
34     Intents.FLAGS.GUILD_PRESENCES,
35     Intents.FLAGS.GUILD_MEMBERS,
36     Intents.FLAGS.GUILD_BANS,
37     Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
38     Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS,
39     ]
40     }, path.resolve(__dirname, '..'));
41    
42 rakin 51 (async () => {
43 rakin 58 await registrationStart();
44 rakin 51 await registerCommands(client, '../commands');
45 rakin 58 await registrationEnd();
46    
47     await registrationStart();
48 rakin 51 await registerEvents(client, '../events');
49 rakin 58 await registrationEnd();
50    
51 rakin 51 await client.login(process.env.token);
52     })();

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26