datoit
Version:
An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MongoDB, MySQL, MariaDB, PostgreSQL, SQLite
118 lines (96 loc) • 3.15 kB
JavaScript
;
// Dependencies.
const path = require('path');
const fs = require('fs-extra');
const _ = require('lodash');
const glob = require('../load/glob');
const findPackagePath = require('../load/package-path');
/**
* Load hooks
*/
module.exports = async function({ installedHooks, installedPlugins, appPath }) {
let hooks = {};
await Promise.all([
loadHookDependencies(installedHooks, hooks),
// local middleware
loadLocalHooks(appPath, hooks),
// admin hooks
loadAdminHooks(hooks),
// plugins middlewares
loadPluginsHooks(installedPlugins, hooks),
// local plugin middlewares
loadLocalPluginsHooks(appPath, hooks),
]);
return hooks;
};
const loadHooksInDir = async (dir, hooks) => {
const files = await glob('*/*(index|defaults).*(js|json)', {
cwd: dir,
});
files.forEach(f => {
const name = f.split('/')[0];
mountHooks(name, [path.resolve(dir, f)], hooks);
});
};
const loadLocalHooks = (appPath, hooks) => loadHooksInDir(path.resolve(appPath, 'hooks'), hooks);
const loadPluginsHooks = async (plugins, hooks) => {
for (let pluginName of plugins) {
const dir = path.resolve(findPackagePath(`datoit-plugin-${pluginName}`), 'hooks');
await loadHooksInDir(dir, hooks);
}
};
const loadAdminHooks = async hooks => {
const hooksDir = 'hooks';
const dir = path.resolve(findPackagePath('datoit-admin'), hooksDir);
await loadHooksInDir(dir, hooks);
// load ee admin hooks if they exist
if (process.env.STRAPI_DISABLE_EE !== 'true' && strapi.EE) {
await loadHooksInDir(`${dir}/../ee/${hooksDir}`, hooks);
}
};
const loadLocalPluginsHooks = async (appPath, hooks) => {
const pluginsDir = path.resolve(appPath, 'plugins');
if (!fs.existsSync(pluginsDir)) return;
const pluginsNames = await fs.readdir(pluginsDir);
for (let pluginName of pluginsNames) {
// ignore files
const stat = await fs.stat(path.resolve(pluginsDir, pluginName));
if (!stat.isDirectory()) continue;
const dir = path.resolve(pluginsDir, pluginName, 'hooks');
await loadHooksInDir(dir, hooks);
}
};
const loadHookDependencies = async (installedHooks, hooks) => {
for (let hook of installedHooks) {
const hookDir = path.dirname(require.resolve(`datoit-hook-${hook}`));
const files = await glob('*(index|defaults).*(js|json)', {
cwd: hookDir,
absolute: true,
});
mountHooks(hook, files, hooks);
}
};
const mountHooks = (name, files, hooks) => {
files.forEach(file => {
hooks[name] = hooks[name] || { loaded: false };
let dependencies = [];
try {
dependencies = _.get(require(`datoit-hook-${name}/package.json`), 'datoit.dependencies', []);
} catch (err) {
// Silent
}
if (_.endsWith(file, 'index.js') && !hooks[name].load) {
Object.defineProperty(hooks[name], 'load', {
configurable: false,
enumerable: true,
get: () => require(file)(strapi),
});
hooks[name].dependencies = dependencies;
return;
}
if (_.endsWith(file, 'defaults.json')) {
hooks[name].defaults = require(file);
return;
}
});
};