/[sudobot]/branches/6.x/src/index.ts
ViewVC logotype

Annotation of /branches/6.x/src/index.ts

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (hide annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: application/typescript
File size: 2236 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 rakinar2 577 /**
2     * This file is part of SudoBot.
3     *
4     * Copyright (C) 2021-2023 OSN Developers.
5     *
6     * SudoBot is free software; you can redistribute it and/or modify it
7     * under the terms of the GNU Affero General Public License as published by
8     * the Free Software Foundation, either version 3 of the License, or
9     * (at your option) any later version.
10     *
11     * SudoBot is distributed in the hope that it will be useful, but
12     * WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU Affero General Public License for more details.
15     *
16     * You should have received a copy of the GNU Affero General Public License
17     * along with SudoBot. If not, see <https://www.gnu.org/licenses/>.
18     */
19     import "module-alias/register";
20     import "reflect-metadata";
21    
22     import { spawn } from "child_process";
23     import { GatewayIntentBits, Partials } from "discord.js";
24     import "dotenv/config";
25     import Client from "./core/Client";
26    
27     const intents = [
28     GatewayIntentBits.Guilds,
29     GatewayIntentBits.MessageContent,
30     GatewayIntentBits.GuildMessages,
31     GatewayIntentBits.GuildMembers,
32     GatewayIntentBits.GuildMessageReactions,
33     GatewayIntentBits.GuildModeration,
34     GatewayIntentBits.GuildEmojisAndStickers,
35     GatewayIntentBits.GuildPresences,
36     GatewayIntentBits.GuildInvites
37     ];
38    
39     const partials = [Partials.Channel];
40    
41     export const client = new Client({
42     intents,
43     partials
44     });
45    
46     function spawnNativeProcess() {
47     const path = process.env.EXPERIMENTAL_NATIVE_EXECUTABLE_PATH;
48    
49     if (path) {
50     const child = spawn(path, {
51     stdio: "inherit",
52     env: process.env
53     });
54    
55     process.on("exit", () => void (child.killed ? null : child.kill()));
56     process.on("uncaughtException", () => void (child.killed ? null : child.kill()));
57     process.on("unhandledRejection", () => void (child.killed ? null : child.kill()));
58     }
59     }
60    
61     (async () => {
62     spawnNativeProcess();
63    
64     await client.boot();
65     await client.loadEvents();
66     await client.loadCommands();
67    
68     if (process.env.SERVER_ONLY_MODE) {
69     await client.server.boot();
70     await client.server.start();
71     } else {
72     await client.login(process.env.TOKEN);
73     }
74     })();

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26