mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-14 10:44:55 -05:00
30 lines
940 B
JavaScript
30 lines
940 B
JavaScript
/* eslint-disable max-len */
|
|
const fs = require('fs/promises');
|
|
const util = require('util');
|
|
const path = require('path');
|
|
|
|
/**
|
|
* load plugins
|
|
* @param {object} bot the bot object
|
|
* @param {object} dcclient discord client
|
|
* @param {object} config the config
|
|
* @param {object} rl readline
|
|
* @param {object} targetClient proxy target
|
|
* @param {object} client proxy client
|
|
* @param {boolean} proxy is proxy
|
|
*/
|
|
async function loadPlugins(bot, dcclient, config, rl) {
|
|
const plugins = await fs.readdir(path.join(__dirname, '..', 'plugins'));
|
|
plugins.forEach((plugin) => {
|
|
if (!plugin.endsWith('.js')) return;
|
|
try {
|
|
const plug = require(path.join(__dirname, '..', 'plugins', plugin));
|
|
plug.inject(bot, dcclient, config, rl);
|
|
} catch (e) {
|
|
console.log(`Plugin ${plugin} is having exception loading the plugin:`);
|
|
console.log(util.inspect(e));
|
|
}
|
|
});
|
|
};
|
|
|
|
module.exports = {loadPlugins};
|