-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaster.js
More file actions
391 lines (341 loc) · 15.9 KB
/
Copy pathmaster.js
File metadata and controls
391 lines (341 loc) · 15.9 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
/* eslint-disable max-len, promise/no-callback-in-promise, promise/no-nesting */
const { Traffic, SkynetClient } = require("./Modules");
const { Boot, Sharder } = require("./Internals");
const { Stopwatch } = require("./Modules/Utils");
const centralClient = new SkynetClient(null);
const database = require("./Database/Driver.js");
// Lazy-load Redis to prevent startup crash if ioredis is not installed
let Redis = null;
try {
Redis = require("./Database/Redis");
} catch (err) {
// Redis module not available - will use in-memory caching only
}
const { loadConfigs } = require("./Configurations/env.js");
const { auth, configJS, configJSON } = loadConfigs();
const configWarnings = [];
const figlet = require("figlet");
const scope = { safeMode: false };
Boot({ configJS, configJSON, auth }, scope).then(() => {
if (scope.migrating) return;
const databaseType = process.env.DATABASE_TYPE || "mongodb";
const isMariaDB = databaseType === "mariadb";
if (isMariaDB) {
logger.info("Connecting to MariaDB...", {
host: process.env.MARIADB_HOST,
database: process.env.MARIADB_DATABASE,
});
} else {
logger.info("Connecting to MongoDB...", { URL: configJS.database.URL, db: configJS.database.db });
}
// eslint-disable-next-line promise/catch-or-return
database.initialize(configJS.database).catch(err => {
logger.error(`An error occurred while connecting to ${isMariaDB ? "MariaDB" : "MongoDB"}! x( Is the database online?`, { config: isMariaDB ? { host: process.env.MARIADB_HOST } : configJS.database }, err);
process.exit(1);
}).then(async () => {
const db = database.getConnection();
if (db && !scope.safeMode) {
await logger.info(`Connected to ${isMariaDB ? "MariaDB" : "MongoDB"} successfully.`);
// Initialize Redis if configured and available
if (Redis && Redis.isEnabled()) {
try {
await Redis.createClient();
logger.info("Redis client initialized successfully.");
} catch (err) {
logger.warn("Redis initialization failed, falling back to in-memory caching", {}, err);
}
}
logger.silly("Confirming auth.js config values.");
if (Object.values(auth.tokens).some(token => token === "")) {
logger.warn("You haven't supplied some auth tokens, make sure to fill in auth.js to make sure all Skynet features function!");
configWarnings.push("In auth.js, some values have not been filled in correctly. Some commands may not function as expected.");
}
logger.silly("Confirming config.js config values.");
if (!configJS.hostingURL || !configJS.oauthLink || (typeof configJS.hostingURL || typeof configJS.oauthLink) !== "string") {
logger.warn("Some config.js values have not been configured correctly. Skynet may be harder to reach by users.");
configWarnings.push("The config.js values hostingURL and/or oauthLink are malformed or empty.");
}
if (!configJS.secret || !configJS.serverIP || (typeof configJS.secret || typeof configJS.serverIP) !== "string" || !configJS.httpPort || !configJS.httpsPort) {
logger.warn("Some config.js values have not been configured correclty. Skynet's Web Interface may not work as intended.");
configWarnings.push("The config.js values secret, serverIP, httpPort and/or httpsPort are malformed or empty.");
}
if (configJS.secret === "vFEvmrQl811q2E8CZelg4438l9YFwAYd") {
logger.warn("Your session secret value appears to be default. Please note that this value is public!");
configWarnings.push("Your config.js secret value has not been reconfigured. This value is public!");
}
if ((configJS.httpPort !== "80" || configJS.httpsPort !== "443") && !process.argv.includes("-p") && !process.argv.includes("--proxy")) {
logger.warn("You are running SkynetBot on a non-standard port, if a reverse-proxy such as Nginx is being used, restart SkynetBot with the '--proxy' argument.");
}
logger.silly("Confirming config.json values.");
let localVersion;
try {
localVersion = await centralClient.API("versions").branch(configJSON.branch).get(configJSON.version);
} catch (err) {
logger.error(`Error while fetching SkynetBot version metadata.`, {}, err);
localVersion = {};
}
if (!localVersion.valid) {
logger.warn(`Skynet version ${configJSON.version} was not found on branch ${configJSON.branch}, you may need to reinstall Skynet in order to enable Versioning.`);
configWarnings.push(`SkynetBot ${configJSON.version} is not a valid version on branch ${configJSON.branch}. Versioning has been disabled to avoid update conflicts.`);
}
logger.silly("Confirming environment setup.");
if (process.env.NODE_ENV !== "production") {
logger.warn("Skynet is running in development mode, this might impact web interface performance. In order to run Skynet in production mode, please set the NODE_ENV environment var to production.");
configWarnings.push("SkynetBot is running in development mode. Set the NODE_ENV environment variable to 'production' to dismiss this warning.");
}
logger.silly("Confirming clientToken config value.");
if (!auth.discord.clientToken && !process.argv.includes("--build")) {
logger.error("You must provide a clientToken in \"Configurations/auth.js\" to open the gates to Discord! -.-");
process.exit(1);
}
logger.silly("Confirming shardTotal config value.");
if (!parseInt(configJS.shardTotal) && configJS.shardTotal !== "auto") {
logger.error(`You must enter your shardTotal config value as a valid number, or "auto".`);
process.exit(1);
}
if (configJS.shardTotal !== "auto" && configJS.shardTotal < 1) {
logger.error(`In config.js, shardTotal must be greater than or equal to 1`);
process.exit(1);
}
if (configJS.shardTotal === "auto") {
logger.info(`Getting the recommended shards from Discord...`);
const { fetchRecommendedShardCount } = require("discord.js");
const result = await fetchRecommendedShardCount(auth.discord.clientToken);
logger.info(`SkynetBot will spawn ${result} shard(s) as recommended by Discord.`, { shards: result });
configJS.shardTotal = result;
}
}
logger.silly("Creating sharder instance.");
const sharder = await new Sharder(auth.discord.clientToken, configJS.shardTotal, logger);
sharder.cluster.on("online", worker => {
logger.info(`Worker ${worker.id} launched.`, { worker: worker.id });
});
if (!scope.safeMode) {
sharder.traffic = new Traffic(sharder.IPC, false);
// Sharder events
sharder.ready = 0;
sharder.finished = 0;
sharder.IPC.on("ready", async (msg, callback) => {
sharder.ready++;
// Mark the shard as ready and reset its failure count
const shardId = msg?.shard ?? sharder.ready - 1;
const shard = sharder.shards.get(Number(shardId));
if (shard) {
shard.ready = true;
shard.failures = 0; // Reset failures on successful ready
shard.startHeartbeat();
}
if (sharder.ready === sharder.count) {
logger.info("All shards connected to Discord.");
}
if (callback) callback({ ok: true }); // eslint-disable-line callback-return
});
const shardFinished = () => {
if (sharder.finished > -1) sharder.finished++;
if (sharder.finished === sharder.count) {
// Print startup ascii message
logger.info(`The best Discord Bot, version ${configJSON.version}, is now ready!`);
// Use console.log because winston never lets us have anything fun, MOM
figlet("SkynetBot", (err, res) => {
if (err) {
logger.error("", {}, err);
} else {
// eslint-disable-next-line no-console
console.log(res);
}
});
sharder.finished = -1;
sharder.IPC.send("postAllData", {}, 0);
if (process.argv.includes("--build")) {
logger.info("Shutting down travis build with code 0");
sharder.cluster.disconnect();
process.exit(0);
}
}
};
// Shard has finished all work
sharder.IPC.on("finished", shardFinished);
// Shard requests guild data
sharder.IPC.on("getGuild", async (msg, callback) => {
try {
if (msg.target !== "*") {
const shardId = sharder.IPC.shard(msg.target);
if (!shardId && shardId !== 0) return callback({ target: msg.target, err: 404, result: null });
const result = await sharder.shards.get(shardId).getGuild(msg.target, msg.settings);
return callback({ target: msg.target, err: null, result });
} else {
const promises = [];
sharder.shards.forEach(async shard => {
promises.push(shard.getGuilds(msg.settings));
});
const result = await Promise.all(promises);
const isArr = msg.settings.parse === "noKeys";
return callback({
target: msg.target,
err: null,
result: result.reduce((prev, value) => isArr ? prev.concat(value) : Object.assign(prev, value), isArr ? [] : {}),
});
}
} catch (err) {
logger.error("An error occurred while fetching internal guild data.", { target: msg.target }, err);
return callback({ target: msg.target, err: err, result: null });
}
});
// Shard has modified Console data
sharder.IPC.on("dashboardUpdate", async msg => {
logger.silly(`Broadcasting update to dashboard at ${msg.location}.`, { location: msg.location, namespace: msg.namespace, author: msg.author });
sharder.IPC.send("dashboardUpdate", { namespace: msg.namespace, location: msg.location, author: msg.author }, "*");
});
// Shard requests a user to be muted
sharder.IPC.forward("muteMember");
// Shard requests a user to be unmuted
sharder.IPC.forward("unmuteMember");
// Shard requests a new Message Of The Day to be created
sharder.IPC.forward("createMOTD");
// Shard requests bot stats to be posted
sharder.IPC.on("sendAllGuilds", () => sharder.IPC.send("postAllData", {}, 0));
// Shard requests a guild's public Invite Link to be created/destroyed
sharder.IPC.forward("createPublicInviteLink");
sharder.IPC.forward("deletePublicInviteLink");
// Shard requests JavaScript code to be executed
sharder.IPC.on("eval", async (msg, callback) => {
const promises = [];
sharder.shards.forEach(shard => promises.push(shard.eval(msg)));
callback(await Promise.all(promises));
});
// Shard requests JavaScript code to be executed and return values to be readable by humans
sharder.IPC.on("evaluate", async (msg, callback) => {
if (msg.target === "master") {
const result = {};
try {
result.result = await eval(`(async () => {${msg.code}})()`);
} catch (err) {
result.err = true;
result.result = err;
}
if (typeof result.result !== "string") result.result = require("util").inspect(result.result, false, 1);
return callback(result);
} else if (sharder.shards.has(Number(msg.target)) || msg.target === "all") {
sharder.IPC.send("evaluate", `(async () => {${msg.code}})()`, msg.target === "all" ? "*" : Number(msg.target)).then(res => {
const result = {};
if (msg.target !== "all") result.result = res.result;
else result.result = res.map(m => m.result);
if (msg.target !== "all" && res.err) result.err = true;
else if (msg.target === "all" && res.some(m => m.err)) result.err = true;
callback(result);
}).catch(() => callback(null));
} else {
return callback(null);
}
});
// Shard requests leaving a guild
sharder.IPC.forward("leaveGuild", "this");
// Shard requests a message to be sent to a guild
sharder.IPC.on("sendMessage", async msg => {
if (msg.guild === "*") return sharder.IPC.send("sendMessage", msg, "*");
const shardid = sharder.IPC.shard(msg.guild);
if (sharder.shards.has(shardid)) sharder.IPC.send("sendMessage", msg, shardid);
});
// Shard requests the bot user to be updated
sharder.IPC.on("updateBotUser", async msg => sharder.IPC.send("updateBotUser", msg, "*"));
// Shard requests data about all shards
sharder.IPC.on("shardData", async (msg, callback) => {
const data = {};
data.master = {};
data.master.rss = Math.floor((process.memoryUsage().rss / 1024) / 1024);
data.master.uptime = Math.round(((process.uptime() / 60) / 60) * 10) / 10;
data.master.warns = configWarnings;
data.master.platform = process.platform;
switch (data.master.platform) {
case "win32":
data.master.platform = "Windows";
data.master.platformIcon = "windows";
break;
case "darwin":
data.master.platform = "MacOS";
data.master.platformIcon = "apple";
break;
case "linux":
data.master.platform = "Linux";
data.master.platformIcon = "linux";
break;
default:
data.master.platform = `An Unknown Operating System (${process.platform})`;
data.master.platformIcon = "question";
break;
}
data.master.PID = process.pid;
const timer = new Stopwatch();
data.master.guilds = await db.servers.count();
const afterQuery = timer.friendlyDuration;
timer.stop();
data.master.ping = afterQuery;
data.master.users = await db.users.count();
if (!msg.noShards) data.shards = await Promise.all(sharder.shards.map(shard => sharder.IPC.send("shardData", {}, shard.id)));
callback(data);
});
sharder.IPC.on("dismissWarning", (msg, callback) => {
const index = configWarnings.indexOf(msg.warning);
if (index > -1) configWarnings.splice(index, 1);
callback();
});
sharder.IPC.on("freezeShard", async (msg, callback) => {
if (sharder.shards.has(Number(msg.shard))) await sharder.IPC.send("freeze", {}, Number(msg.shard));
callback();
});
sharder.IPC.on("restartShard", async (msg, callback) => {
if (sharder.shards.has(Number(msg.shard))) await sharder.IPC.send("restart", { soft: msg.soft }, Number(msg.shard));
callback();
});
sharder.IPC.forward("modifyActivity");
sharder.IPC.on("relay", async (msg, reply) => {
const findResults = await sharder.IPC.send("relay", {
command: msg.command,
params: msg.findParams,
action: "find",
}, "*");
if (findResults.every(result => result === false)) return reply("none");
if (findResults.filter(result => result !== false).length !== 1) return reply("multi");
reply(true);
if (!msg.execParams) msg.execParams = {};
const guildID = findResults.find(result => result !== false);
const shardID = sharder.IPC.shard(guildID);
msg.execParams.guildid = guildID;
sharder.IPC.send("relay", { command: msg.command, params: msg.execParams, action: "run" }, shardID);
});
sharder.IPC.on("awaitMessage", async (msg, callback) => callback(await sharder.IPC.send("awaitMessage", msg, 0)));
// Shard requests all shards to be marked Unavailable
sharder.IPC.on("updating", (msg, callback) => sharder.IPC.send("updating", msg, "*").then(callback));
// Shard requests Skynet to shutdown
sharder.IPC.on("shutdown", async msg => {
if (msg.soft) {
if (msg.err) logger.error(`A critical error occurred within a worker, all workers must restart.`);
else logger.info(`All workers are being restarted. Expect some lag!`);
sharder.shards.forEach(shard => shard.worker.kill());
} else {
if (msg.err) logger.error(`A critical error occurred within a worker, the master can no longer operate; Skynet is shutting down.`);
else logger.info(`Skynet is shutting down.`);
sharder.shutdown = true;
sharder.cluster.disconnect();
process.exit(msg.err ? 1 : 0);
}
});
}
sharder.spawn();
});
process.on("uncaughtException", err => {
logger.error("Uncaught exception in master process. Shards will continue operating.\n", {}, err);
// Don't exit - let shards continue operating
// Only exit if this is a truly fatal error that prevents recovery
if (err.code === "EADDRINUSE" || err.code === "EACCES") {
logger.error("Fatal error - cannot recover. Shutting down.");
process.exit(1);
}
});
process.on("unhandledRejection", (err, promise) => {
logger.error("Unhandled promise rejection in master process. Shards will continue operating.\n", { promise: String(promise) }, err);
// Don't exit on unhandled rejections - log and continue
});
}).catch(err => {
throw err;
});