mrmBot-Matrix/app.js

51 lines
1.5 KiB
JavaScript
Raw Normal View History

// 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");
}
2019-09-13 20:02:41 +00:00
}
// launch the bot
init();