mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
d3ce502c13
* Install plugins from npm * A bit more * Error handling and messaging
146 lines
3.7 KiB
JavaScript
146 lines
3.7 KiB
JavaScript
// @flow
|
|
import mkdirp from 'mkdirp';
|
|
import * as models from '../models';
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
import {PLUGIN_PATH} from '../common/constants';
|
|
import {resolveHomePath} from '../common/misc';
|
|
|
|
export type Plugin = {
|
|
name: string,
|
|
description: string,
|
|
version: string,
|
|
directory: string,
|
|
module: *
|
|
};
|
|
|
|
export type TemplateTag = {
|
|
plugin: string,
|
|
templateTag: Function
|
|
}
|
|
|
|
export type RequestHook = {
|
|
plugin: Plugin,
|
|
hook: Function
|
|
}
|
|
|
|
export type ResponseHook = {
|
|
plugin: Plugin,
|
|
hook: Function
|
|
}
|
|
|
|
let plugins: ?Array<Plugin> = null;
|
|
|
|
export async function init (): Promise<void> {
|
|
// Force plugins to load.
|
|
await getPlugins(true);
|
|
}
|
|
|
|
export async function getPlugins (force: boolean = false): Promise<Array<Plugin>> {
|
|
if (force) {
|
|
plugins = null;
|
|
}
|
|
|
|
if (!plugins) {
|
|
const settings = await models.settings.getOrCreate();
|
|
const extraPaths = settings.pluginPath.split(':').filter(p => p).map(resolveHomePath);
|
|
|
|
// Make sure the default directories exist
|
|
mkdirp.sync(PLUGIN_PATH);
|
|
|
|
// Also look in node_modules folder in each directory
|
|
const basePaths = [PLUGIN_PATH, ...extraPaths];
|
|
const extendedPaths = basePaths.map(p => path.join(p, 'node_modules'));
|
|
const allPaths = [...basePaths, ...extendedPaths];
|
|
|
|
plugins = [];
|
|
for (const p of allPaths) {
|
|
if (!fs.existsSync(p)) {
|
|
continue;
|
|
}
|
|
|
|
for (const filename of fs.readdirSync(p)) {
|
|
const modulePath = path.join(p, filename);
|
|
const packageJSONPath = path.join(modulePath, 'package.json');
|
|
|
|
// Only read directories
|
|
if (!fs.statSync(modulePath).isDirectory()) {
|
|
continue;
|
|
}
|
|
|
|
// Is it a Node module?
|
|
if (!fs.readdirSync(modulePath).includes('package.json')) {
|
|
continue;
|
|
}
|
|
|
|
// Use global.require() instead of require() because Webpack wraps require()
|
|
delete global.require.cache[global.require.resolve(packageJSONPath)];
|
|
const pluginJson = global.require(packageJSONPath);
|
|
|
|
// Not an Insomnia plugin because it doesn't have the package.json['insomnia']
|
|
if (!pluginJson.hasOwnProperty('insomnia')) {
|
|
continue;
|
|
}
|
|
|
|
// Delete require cache entry and re-require
|
|
delete global.require.cache[global.require.resolve(modulePath)];
|
|
const module = global.require(modulePath);
|
|
|
|
const pluginMeta = pluginJson.insomnia || {};
|
|
|
|
const plugin: Plugin = {
|
|
name: pluginMeta.name || pluginJson.name,
|
|
description: pluginMeta.description || '',
|
|
version: pluginJson.version || '0.0.0',
|
|
directory: modulePath,
|
|
module
|
|
};
|
|
|
|
plugins.push(plugin);
|
|
// console.log(`[plugin] Loaded ${modulePath}`);
|
|
}
|
|
}
|
|
}
|
|
|
|
return plugins;
|
|
}
|
|
|
|
export async function getTemplateTags (): Promise<Array<TemplateTag>> {
|
|
let extensions = [];
|
|
for (const plugin of await getPlugins()) {
|
|
const templateTags = plugin.module.templateTags || [];
|
|
extensions = [
|
|
...extensions,
|
|
...templateTags.map(tt => ({plugin: plugin.name, templateTag: tt}))
|
|
];
|
|
}
|
|
|
|
return extensions;
|
|
}
|
|
|
|
export async function getRequestHooks (): Promise<Array<RequestHook>> {
|
|
let functions = [];
|
|
for (const plugin of await getPlugins()) {
|
|
const moreFunctions = plugin.module.requestHooks || [];
|
|
functions = [
|
|
...functions,
|
|
...moreFunctions.map(hook => ({plugin, hook}))
|
|
];
|
|
}
|
|
|
|
return functions;
|
|
}
|
|
|
|
export async function getResponseHooks (): Promise<Array<ResponseHook>> {
|
|
let functions = [];
|
|
for (const plugin of await getPlugins()) {
|
|
const moreFunctions = plugin.module.responseHooks || [];
|
|
functions = [
|
|
...functions,
|
|
...moreFunctions.map(hook => ({plugin, hook}))
|
|
];
|
|
}
|
|
|
|
return functions;
|
|
}
|