mrmBot-Matrix/app.js

68 lines
2.4 KiB
JavaScript
Raw Normal View History

if (process.platform === "win32") console.log("\x1b[1m\x1b[31m\x1b[40m" + `WIN32 IS NOT OFFICIALLY SUPPORTED!
Although there's a (very) slim chance of it working, multiple aspects of the bot are built with UNIX-like systems in mind and could break on Win32-based systems. If you want to run the bot on Windows, using Windows Subsystem for Linux is highly recommended.
The bot will continue to run past this message, but keep in mind that it could break at any time. Continue running at your own risk; alternatively, stop the bot using Ctrl+C and install WSL.` + "\x1b[0m");
// load config from .env file
require("dotenv").config();
2019-09-13 20:02:41 +00:00
// turn fs.readdir into a promise
2020-02-19 22:46:50 +00:00
const readdir = require("util").promisify(require("fs").readdir);
2019-09-13 20:02:41 +00:00
// fancy loggings
const logger = require("./utils/logger.js");
// start the client
const client = require("./utils/client.js");
// initialize command loader
const handler = require("./utils/handler.js");
const sound = require("./utils/soundplayer.js");
2019-09-13 20:02:41 +00:00
2020-02-19 22:46:50 +00:00
// registers stuff and connects the bot
2019-09-13 20:02:41 +00:00
async function init() {
logger.log("info", "Starting esmBot...");
// register commands and their info
2019-09-13 20:02:41 +00:00
const commands = await readdir("./commands/");
const soundStatus = await sound.checkStatus();
2019-09-13 20:02:41 +00:00
logger.log("info", `Attempting to load ${commands.length} commands...`);
for (const commandFile of commands) {
2019-09-13 20:02:41 +00:00
logger.log("info", `Loading command ${commandFile}...`);
try {
await handler.load(commandFile, soundStatus);
2019-09-13 20:02:41 +00:00
} catch (e) {
logger.error(`Failed to register command ${commandFile.split(".")[0]}: ${e}`);
}
}
2019-09-13 20:02:41 +00:00
// register events
const events = await readdir("./events/");
logger.log("info", `Attempting to load ${events.length} events...`);
for (const file of events) {
2019-09-13 20:02:41 +00:00
logger.log("info", `Loading event ${file}...`);
const eventName = file.split(".")[0];
const event = require(`./events/${file}`);
client.on(eventName, event);
}
2019-09-13 20:02:41 +00:00
// login
client.connect();
// post to DBL
2019-12-20 14:25:29 +00:00
if (process.env.NODE_ENV === "production") {
require("./utils/dbl.js");
}
2020-07-22 01:29:32 +00:00
// handle ctrl+c and pm2 stop
process.on("SIGINT", () => {
logger.log("info", "SIGINT detected, shutting down...");
client.editStatus("dnd", {
name: "Restarting/shutting down..."
});
for (const command of commands) {
handler.unload(command);
}
client.disconnect();
require("./utils/database.js").stop();
process.exit(0);
2020-07-22 01:29:32 +00:00
});
2019-09-13 20:02:41 +00:00
}
// launch the bot
2020-07-22 01:29:32 +00:00
init();