forked from radiantly/live-countdown-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.js
94 lines (83 loc) · 2.87 KB
/
bot.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import Cluster from "discord-hybrid-sharding";
import { Client, Intents, Options, Permissions } from "discord.js";
import process, { env } from "process";
import config from "../config.js";
import {
initGuilds,
addGuild,
removeGuild,
closeDb,
updateClusterInfo,
removeMessageWithReplyId,
} from "./sqlite3.js";
import { messageHandler } from "./messageHandler.js";
import { updateCountdowns } from "./updateManager.js";
import { interactionHandler } from "./interactionHandler.js";
const client = new Client({
shards: Cluster.data.SHARD_LIST,
shardCount: Cluster.data.TOTAL_SHARDS,
presence: {
status: "online",
activities: [
// { type: "WATCHING", name: "maintenance" },
{ type: "PLAYING", name: "with time" },
{ type: "PLAYING", name: "with 100 seconds" },
{ type: "WATCHING", name: "for !help" },
{ type: "WATCHING", name: "times change" },
{ type: "WATCHING", name: "the time fly by" },
{ type: "LISTENING", name: "the clock tick" },
{ type: "COMPETING", name: "the race for time" },
],
},
makeCache: Options.cacheWithLimits({
MessageManager: 0,
PresenceManager: 0,
ThreadManager: 0,
}),
partials: ["MESSAGE", "CHANNEL"],
intents: [Intents.FLAGS.DIRECT_MESSAGES, Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES],
});
client.cluster = new Cluster.Client(client);
export const clientId = Math.round(Math.random() * 1e9);
const log = console.log;
client.once("ready", () => {
log(`Initialized cluster ${client.cluster.id} (${clientId}).`);
setInterval(
() => updateClusterInfo(client.cluster.id, client.guilds.cache.size, process.memoryUsage().rss),
5 * 60 * 1000
);
initGuilds(client.guilds.cache, clientId);
updateCountdowns(client, clientId);
});
client.on("messageCreate", messageHandler);
client.on("messageDelete", message => {
removeMessageWithReplyId(message.id);
});
client.on("interactionCreate", interactionHandler);
client.on("guildCreate", guild => {
addGuild(guild.id, clientId);
if (guild.systemChannel?.permissionsFor(guild.me).has(Permissions.FLAGS.SEND_MESSAGES))
guild.systemChannel.send(
"**Glad to be a part of your server** :heart:\nYou're probably looking for `!help`"
);
log(`Added to ${guild.name} (${guild.id})`);
});
client.on("guildDelete", guild => {
log(`Removed from ${guild.name} (${guild.id})`);
removeGuild(guild.id);
});
client.on("rateLimit", rateLimitInfo => {
log(rateLimitInfo);
});
// Start client
client.login(config.token);
if (env.NODE_ENV === "debug") client.on("debug", console.info);
process.on("unhandledRejection", log);
process.on("SIGHUP", () => process.exit(128 + 1));
process.on("SIGINT", () => process.exit(128 + 2));
process.on("SIGTERM", () => process.exit(128 + 15));
process.on("exit", code => {
console.log(`Destroying cluster ${client.cluster.id} (${clientId}). Code ${code}.`);
client.destroy();
closeDb();
});