mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
09c219fb6d
* Playing around with pre-request hooks * Added response hooks * More flow types * Flow types on wrapper.js * Flow types on plugin folder * Basic tests for plugin hooks * Make DB initilize for all tests no matter what * Touch
140 lines
3.7 KiB
JavaScript
140 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_PATHS} from '../common/constants';
|
|
import {render} from '../templating';
|
|
import skeletonPackageJson from './skeleton/package.json.js';
|
|
import skeletonPluginJs from './skeleton/plugin.js.js';
|
|
import {resolveHomePath} from '../common/misc';
|
|
|
|
export type Plugin = {
|
|
name: 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);
|
|
const allPaths = [...PLUGIN_PATHS, ...extraPaths];
|
|
|
|
// Make sure the default directories exist
|
|
for (const p of PLUGIN_PATHS) {
|
|
mkdirp.sync(p);
|
|
}
|
|
|
|
plugins = [];
|
|
for (const p of allPaths) {
|
|
for (const dir of fs.readdirSync(p)) {
|
|
if (dir.indexOf('.') === 0) {
|
|
continue;
|
|
}
|
|
|
|
const modulePath = path.join(p, dir);
|
|
const packageJSONPath = path.join(modulePath, 'package.json');
|
|
|
|
// Use global.require() instead of require() because Webpack wraps require()
|
|
delete global.require.cache[global.require.resolve(packageJSONPath)];
|
|
const pluginJson = global.require(packageJSONPath);
|
|
|
|
// Delete require cache entry and re-require
|
|
delete global.require.cache[global.require.resolve(modulePath)];
|
|
const module = global.require(modulePath);
|
|
|
|
plugins.push({
|
|
name: pluginJson.name,
|
|
version: pluginJson.version || '0.0.0',
|
|
directory: modulePath,
|
|
module
|
|
});
|
|
|
|
// console.log(`[plugin] Loaded ${modulePath}`);
|
|
}
|
|
}
|
|
}
|
|
|
|
return plugins;
|
|
}
|
|
|
|
export async function createPlugin (displayName: string): Promise<void> {
|
|
// Create root plugin dir
|
|
const name = displayName.replace(/\s/g, '-').toLowerCase();
|
|
const dir = path.join(PLUGIN_PATHS[0], name);
|
|
mkdirp.sync(dir);
|
|
|
|
fs.writeFileSync(path.join(dir, 'plugin.js'), skeletonPluginJs);
|
|
|
|
const renderedPackageJson = await render(skeletonPackageJson, {context: {name, displayName}});
|
|
fs.writeFileSync(path.join(dir, 'package.json'), renderedPackageJson);
|
|
}
|
|
|
|
export async function getTemplateTags (): Promise<Array<TemplateTag>> {
|
|
console.log('GETTING TEMPLATE TAGS');
|
|
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;
|
|
}
|