3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-15 05:41:51 +00:00
zeppelin/backend/src/index.ts

272 lines
8.8 KiB
TypeScript
Raw Normal View History

2021-08-18 20:47:24 +03:00
import { Client, Intents, TextChannel, ThreadChannel } from "discord.js";
import yaml from "js-yaml";
import { Knub, PluginError } from "knub";
import { PluginLoadError } from "knub/dist/plugins/PluginLoadError";
// Always use UTC internally
// This is also enforced for the database in data/db.ts
import moment from "moment-timezone";
import { AllowedGuilds } from "./data/AllowedGuilds";
import { Configs } from "./data/Configs";
import { connect } from "./data/db";
import { GuildLogs } from "./data/GuildLogs";
import { LogType } from "./data/LogType";
import { DiscordJSError } from "./DiscordJSError";
import "./loadEnv";
import { logger } from "./logger";
import { baseGuildPlugins, globalPlugins, guildPlugins } from "./plugins/availablePlugins";
import { RecoverablePluginError } from "./RecoverablePluginError";
import { SimpleError } from "./SimpleError";
import { ZeppelinGlobalConfig, ZeppelinGuildConfig } from "./types";
import { startUptimeCounter } from "./uptime";
2021-07-25 14:32:08 +02:00
import { errorMessage, isDiscordAPIError, isDiscordHTTPError, successMessage } from "./utils";
import { loadYamlSafely } from "./utils/loadYamlSafely";
2020-09-16 22:32:43 +03:00
if (!process.env.KEY) {
// tslint:disable-next-line:no-console
console.error("Project root .env with KEY is required!");
process.exit(1);
}
2018-07-01 03:35:51 +03:00
2019-05-07 19:54:16 +03:00
// Error handling
let recentPluginErrors = 0;
const RECENT_PLUGIN_ERROR_EXIT_THRESHOLD = 5;
let recentDiscordErrors = 0;
const RECENT_DISCORD_ERROR_EXIT_THRESHOLD = 5;
setInterval(() => (recentPluginErrors = Math.max(0, recentPluginErrors - 1)), 2000);
setInterval(() => (recentDiscordErrors = Math.max(0, recentDiscordErrors - 1)), 2000);
2018-07-01 03:35:51 +03:00
// Eris handles these internally, so we don't need to panic if we get one of them
const SAFE_TO_IGNORE_ERIS_ERROR_CODES = [
1001, // "CloudFlare WebSocket proxy restarting"
1006, // "Connection reset by peer"
"ECONNRESET", // Pretty much the same as above
];
2020-09-13 22:46:59 +03:00
const SAFE_TO_IGNORE_ERIS_ERROR_MESSAGES = ["Server didn't acknowledge previous heartbeat, possible lost connection"];
function errorHandler(err) {
const guildName = err.guild?.name || "Global";
const guildId = err.guild?.id || "0";
if (err instanceof RecoverablePluginError) {
// Recoverable plugin errors can be, well, recovered from.
// Log it in the console as a warning and post a warning to the guild's log.
// tslint:disable:no-console
console.warn(`${guildName}: [${err.code}] ${err.message}`);
if (err.guild) {
const logs = new GuildLogs(err.guild.id);
logs.log(LogType.BOT_ALERT, { body: `\`[${err.code}]\` ${err.message}` });
}
return;
}
if (err instanceof PluginLoadError) {
// tslint:disable:no-console
console.warn(`${guildName} (${guildId}): Failed to load plugin '${err.pluginName}': ${err.message}`);
return;
}
2020-07-30 20:40:00 +03:00
if (err instanceof DiscordJSError) {
if (err.code && SAFE_TO_IGNORE_ERIS_ERROR_CODES.includes(err.code)) {
2020-12-17 03:51:59 +02:00
return;
}
if (err.message && SAFE_TO_IGNORE_ERIS_ERROR_MESSAGES.includes(err.message)) {
return;
}
}
2021-05-31 03:30:55 +02:00
if (isDiscordHTTPError(err) && err.code >= 500) {
// Don't need stack traces on HTTP 500 errors
// These also shouldn't count towards RECENT_DISCORD_ERROR_EXIT_THRESHOLD because they don't indicate an error in our code
console.error(err.message);
return;
}
2020-12-19 03:09:24 +02:00
if (err.message && err.message.startsWith("Request timed out")) {
// These are very noisy, so just print the message without stack. The stack trace doesn't really help here anyway.
console.error(err.message);
return;
}
2021-08-18 22:24:23 +03:00
// FIXME: Hotfix
if (err.message && err.message.startsWith("Unknown custom override criteria")) {
console.warn(err.message);
return;
}
// tslint:disable:no-console
console.error(err);
if (err instanceof PluginError) {
// Tolerate a few recent plugin errors before crashing
if (++recentPluginErrors >= RECENT_PLUGIN_ERROR_EXIT_THRESHOLD) {
console.error(`Exiting after ${RECENT_PLUGIN_ERROR_EXIT_THRESHOLD} plugin errors`);
process.exit(1);
}
} else if (isDiscordAPIError(err) || isDiscordHTTPError(err)) {
// Discord API errors, usually safe to just log instead of crash
// We still bail if we get a ton of them in a short amount of time
if (++recentDiscordErrors >= RECENT_DISCORD_ERROR_EXIT_THRESHOLD) {
console.error(`Exiting after ${RECENT_DISCORD_ERROR_EXIT_THRESHOLD} API errors`);
process.exit(1);
}
} else {
// On other errors, crash immediately
process.exit(1);
}
// tslint:enable:no-console
}
if (process.env.NODE_ENV === "production") {
process.on("uncaughtException", errorHandler);
process.on("unhandledRejection", errorHandler);
}
2018-08-03 19:25:00 +03:00
2018-12-14 06:27:41 +02:00
// Verify required Node.js version
const REQUIRED_NODE_VERSION = "14.0.0";
2018-12-14 06:27:41 +02:00
const requiredParts = REQUIRED_NODE_VERSION.split(".").map(v => parseInt(v, 10));
const actualVersionParts = process.versions.node.split(".").map(v => parseInt(v, 10));
for (const [i, part] of actualVersionParts.entries()) {
2019-01-03 03:47:52 +02:00
if (part > requiredParts[i]) break;
if (part === requiredParts[i]) continue;
throw new SimpleError(`Unsupported Node.js version! Must be at least ${REQUIRED_NODE_VERSION}`);
2018-12-14 06:27:41 +02:00
}
moment.tz.setDefault("UTC");
logger.info("Connecting to database");
2020-06-30 17:48:18 +03:00
connect().then(async () => {
2021-05-31 03:30:55 +02:00
const client = new Client({
partials: ["USER", "CHANNEL", "GUILD_MEMBER", "MESSAGE", "REACTION"],
2021-08-18 22:33:13 +03:00
// restTimeOffset: 150,
// restGlobalRateLimit: 50,
2021-04-10 23:37:55 +03:00
// Disable mentions by default
allowedMentions: {
2021-05-31 03:30:55 +02:00
parse: [],
users: [],
roles: [],
2021-04-10 23:37:55 +03:00
repliedUser: false,
},
2020-07-30 22:10:17 +03:00
intents: [
// Privileged
2021-05-31 03:30:55 +02:00
Intents.FLAGS.GUILD_MEMBERS,
2021-06-06 02:41:06 +02:00
// Intents.FLAGS.GUILD_PRESENCES,
2021-05-31 03:30:55 +02:00
Intents.FLAGS.GUILD_MESSAGE_TYPING,
2020-07-30 22:10:17 +03:00
// Regular
2021-05-31 03:30:55 +02:00
Intents.FLAGS.DIRECT_MESSAGES,
Intents.FLAGS.GUILD_BANS,
Intents.FLAGS.GUILD_EMOJIS_AND_STICKERS,
2021-05-31 03:30:55 +02:00
Intents.FLAGS.GUILD_INVITES,
Intents.FLAGS.GUILD_MESSAGE_REACTIONS,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_VOICE_STATES,
2020-07-30 22:10:17 +03:00
],
2018-07-31 20:58:48 +03:00
});
2020-07-30 13:51:36 +03:00
client.setMaxListeners(200);
2018-07-01 03:35:51 +03:00
client.on("rateLimit", rateLimitData => {
2021-07-29 01:51:11 +01:00
logger.info(`[429] ${JSON.stringify(rateLimitData)}`);
2019-02-07 20:44:26 +02:00
});
2021-05-31 03:30:55 +02:00
client.on("error", err => {
errorHandler(new DiscordJSError(err.message, (err as any).code, 0));
});
const allowedGuilds = new AllowedGuilds();
const guildConfigs = new Configs();
const bot = new Knub<ZeppelinGuildConfig, ZeppelinGlobalConfig>(client, {
guildPlugins,
globalPlugins,
options: {
canLoadGuild(guildId): Promise<boolean> {
return allowedGuilds.isAllowed(guildId);
},
2019-05-07 19:54:16 +03:00
/**
* Plugins are enabled if they...
* - are base plugins, i.e. always enabled, or
* - are explicitly enabled in the guild config
* Dependencies are also automatically loaded by Knub.
2019-05-07 19:54:16 +03:00
*/
async getEnabledGuildPlugins(ctx, plugins): Promise<string[]> {
2020-08-28 02:01:35 +03:00
if (!ctx.config || !ctx.config.plugins) {
return [];
}
const configuredPlugins = ctx.config.plugins;
const basePluginNames = baseGuildPlugins.map(p => p.name);
return Array.from(plugins.keys()).filter(pluginName => {
if (basePluginNames.includes(pluginName)) return true;
return configuredPlugins[pluginName] && configuredPlugins[pluginName].enabled !== false;
});
},
async getConfig(id) {
const key = id === "global" ? "global" : `guild-${id}`;
const row = await guildConfigs.getActiveByKey(key);
if (row) {
try {
return loadYamlSafely(row.config);
} catch (err) {
logger.error(`Error while loading config "${key}": ${err.message}`);
return {};
}
}
logger.warn(`No config with key "${key}"`);
return {};
},
2019-05-04 10:58:57 +03:00
logFn: (level, msg) => {
if (level === "debug") return;
if (logger[level]) {
logger[level](msg);
} else {
logger.log(`[${level.toUpperCase()}] ${msg}`);
}
2019-05-04 10:58:57 +03:00
},
2019-02-08 21:04:04 +02:00
performanceDebug: {
2019-05-04 10:52:59 +03:00
enabled: false,
2019-02-08 21:04:04 +02:00
size: 30,
2019-02-19 00:02:46 +02:00
threshold: 200,
},
2020-01-12 22:19:10 +11:00
sendSuccessMessageFn(channel, body) {
2021-08-18 20:47:24 +03:00
const guildId =
channel instanceof TextChannel || channel instanceof ThreadChannel ? channel.guild.id : undefined;
const emoji = guildId ? bot.getLoadedGuild(guildId)!.config.success_emoji : undefined;
2021-05-31 03:30:55 +02:00
channel.send(successMessage(body, emoji));
},
sendErrorMessageFn(channel, body) {
2021-08-18 20:47:24 +03:00
const guildId =
channel instanceof TextChannel || channel instanceof ThreadChannel ? channel.guild.id : undefined;
const emoji = guildId ? bot.getLoadedGuild(guildId)!.config.error_emoji : undefined;
2021-05-31 03:30:55 +02:00
channel.send(errorMessage(body, emoji));
},
2019-02-19 00:02:46 +02:00
},
2018-07-01 03:35:51 +03:00
});
2019-04-23 05:58:50 +03:00
client.once("ready", () => {
startUptimeCounter();
});
2021-07-04 17:41:44 +02:00
bot.initialize();
logger.info("Bot Initialized");
2021-06-02 19:35:44 +02:00
logger.info("Logging in...");
await client.login(process.env.TOKEN);
2018-07-01 03:35:51 +03:00
});