2017-07-22 00:55:34 +00:00
|
|
|
// @flow
|
2017-08-01 16:58:08 +00:00
|
|
|
import * as electron from 'electron';
|
2018-03-29 17:23:49 +00:00
|
|
|
import fs from 'fs';
|
|
|
|
import fsx from 'fs-extra';
|
2017-07-22 00:55:34 +00:00
|
|
|
import childProcess from 'child_process';
|
2018-10-17 20:25:15 +00:00
|
|
|
import { getTempDir, isDevelopment, isWindows, PLUGIN_PATH } from '../common/constants';
|
2017-08-01 16:58:08 +00:00
|
|
|
import mkdirp from 'mkdirp';
|
|
|
|
import path from 'path';
|
2017-07-22 00:55:34 +00:00
|
|
|
|
2018-08-04 18:52:35 +00:00
|
|
|
export default async function(lookupName: string): Promise<void> {
|
2017-07-22 00:55:34 +00:00
|
|
|
return new Promise(async (resolve, reject) => {
|
2017-08-01 16:58:08 +00:00
|
|
|
let info: Object = {};
|
2017-07-22 00:55:34 +00:00
|
|
|
try {
|
2018-08-04 18:52:35 +00:00
|
|
|
info = await _isInsomniaPlugin(lookupName);
|
|
|
|
|
|
|
|
// Get actual module name without version suffixes and things
|
|
|
|
const moduleName = info.name;
|
2017-07-22 00:55:34 +00:00
|
|
|
|
2018-03-29 17:23:49 +00:00
|
|
|
const pluginDir = path.join(PLUGIN_PATH, moduleName);
|
2017-08-01 16:58:08 +00:00
|
|
|
|
2018-03-29 17:23:49 +00:00
|
|
|
// Make plugin directory
|
|
|
|
mkdirp.sync(pluginDir);
|
2017-08-01 16:58:08 +00:00
|
|
|
|
2018-03-29 17:23:49 +00:00
|
|
|
// Download the module
|
|
|
|
const request = electron.remote.net.request(info.dist.tarball);
|
|
|
|
request.on('error', err => {
|
2018-08-04 18:52:35 +00:00
|
|
|
reject(new Error(`Failed to make plugin request ${info.dist.tarball}: ${err.message}`));
|
2018-03-28 20:32:51 +00:00
|
|
|
});
|
|
|
|
|
2018-08-04 18:52:35 +00:00
|
|
|
const { tmpDir } = await _installPluginToTmpDir(lookupName);
|
2018-03-29 17:23:49 +00:00
|
|
|
console.log(`[plugins] Moving plugin from ${tmpDir} to ${pluginDir}`);
|
|
|
|
|
|
|
|
// Move entire module to plugins folder
|
2018-06-25 17:42:50 +00:00
|
|
|
fsx.moveSync(path.join(tmpDir, moduleName), pluginDir, {
|
|
|
|
overwrite: true
|
|
|
|
});
|
2018-03-29 17:23:49 +00:00
|
|
|
|
|
|
|
// Move each dependency into node_modules folder
|
|
|
|
const pluginModulesDir = path.join(pluginDir, 'node_modules');
|
|
|
|
mkdirp.sync(pluginModulesDir);
|
|
|
|
for (const name of fs.readdirSync(tmpDir)) {
|
|
|
|
const src = path.join(tmpDir, name);
|
|
|
|
if (name === moduleName || !fs.statSync(src).isDirectory()) {
|
|
|
|
continue;
|
2017-07-22 00:55:34 +00:00
|
|
|
}
|
2017-08-01 16:58:08 +00:00
|
|
|
|
2018-03-29 17:23:49 +00:00
|
|
|
const dest = path.join(pluginModulesDir, name);
|
2018-06-25 17:42:50 +00:00
|
|
|
fsx.moveSync(src, dest, { overwrite: true });
|
2018-03-29 17:23:49 +00:00
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
reject(err);
|
|
|
|
return;
|
|
|
|
}
|
2017-08-01 16:58:08 +00:00
|
|
|
|
2018-03-29 17:23:49 +00:00
|
|
|
resolve();
|
2017-07-22 00:55:34 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-08-04 18:52:35 +00:00
|
|
|
async function _isInsomniaPlugin(lookupName: string): Promise<Object> {
|
2017-07-22 00:55:34 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2017-11-22 00:07:28 +00:00
|
|
|
console.log(`[plugins] Fetching module info from npm`);
|
2017-11-04 20:53:40 +00:00
|
|
|
childProcess.execFile(
|
2018-07-11 23:07:20 +00:00
|
|
|
escape(process.execPath),
|
|
|
|
[
|
|
|
|
'--no-deprecation', // Because Yarn still uses `new Buffer()`
|
|
|
|
_getYarnPath(),
|
|
|
|
'info',
|
2018-08-04 18:52:35 +00:00
|
|
|
lookupName,
|
2018-07-11 23:07:20 +00:00
|
|
|
'--json'
|
|
|
|
],
|
2017-11-04 20:53:40 +00:00
|
|
|
{
|
|
|
|
timeout: 5 * 60 * 1000,
|
|
|
|
maxBuffer: 1024 * 1024,
|
2018-07-11 23:07:20 +00:00
|
|
|
shell: true,
|
2017-11-04 20:53:40 +00:00
|
|
|
env: {
|
2018-06-25 17:42:50 +00:00
|
|
|
NODE_ENV: 'production',
|
|
|
|
ELECTRON_RUN_AS_NODE: 'true'
|
2017-11-04 20:53:40 +00:00
|
|
|
}
|
2018-06-25 17:42:50 +00:00
|
|
|
},
|
|
|
|
(err, stdout, stderr) => {
|
2017-11-04 20:53:40 +00:00
|
|
|
if (err) {
|
2018-08-04 18:52:35 +00:00
|
|
|
reject(new Error(`${lookupName} npm error: ${err.message}`));
|
2017-11-04 20:53:40 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stderr) {
|
|
|
|
reject(new Error(`Yarn error ${stderr.toString('utf8')}`));
|
2017-07-22 00:55:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-04 20:53:40 +00:00
|
|
|
let yarnOutput;
|
|
|
|
try {
|
|
|
|
yarnOutput = JSON.parse(stdout.toString('utf8'));
|
|
|
|
} catch (err) {
|
|
|
|
reject(new Error(`Yarn response not JSON: ${err.message}`));
|
|
|
|
return;
|
|
|
|
}
|
2017-08-01 16:58:08 +00:00
|
|
|
|
2017-11-04 20:53:40 +00:00
|
|
|
const data = yarnOutput.data;
|
|
|
|
if (!data.hasOwnProperty('insomnia')) {
|
2018-08-04 18:52:35 +00:00
|
|
|
reject(new Error(`"${lookupName}" not a plugin! Package missing "insomnia" attribute`));
|
2017-08-01 16:58:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-22 00:07:28 +00:00
|
|
|
console.log(`[plugins] Detected Insomnia plugin ${data.name}`);
|
2017-11-04 20:53:40 +00:00
|
|
|
|
2017-08-01 16:58:08 +00:00
|
|
|
resolve({
|
2017-11-04 20:53:40 +00:00
|
|
|
insomnia: data.insomnia,
|
|
|
|
name: data.name,
|
|
|
|
version: data.version,
|
2017-08-01 16:58:08 +00:00
|
|
|
dist: {
|
2017-11-04 20:53:40 +00:00
|
|
|
shasum: data.dist.shasum,
|
|
|
|
tarball: data.dist.tarball
|
2017-08-01 16:58:08 +00:00
|
|
|
}
|
|
|
|
});
|
2017-07-22 00:55:34 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
2017-11-26 20:45:40 +00:00
|
|
|
|
2018-08-04 18:52:35 +00:00
|
|
|
async function _installPluginToTmpDir(lookupName: string): Promise<{ tmpDir: string }> {
|
2018-03-29 17:23:49 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
2018-08-04 18:52:35 +00:00
|
|
|
const tmpDir = path.join(getTempDir(), `${lookupName}-${Date.now()}`);
|
2018-03-29 17:23:49 +00:00
|
|
|
mkdirp.sync(tmpDir);
|
|
|
|
console.log(`[plugins] Installing plugin to ${tmpDir}`);
|
|
|
|
childProcess.execFile(
|
2018-07-11 23:07:20 +00:00
|
|
|
escape(process.execPath),
|
2018-03-29 17:23:49 +00:00
|
|
|
[
|
2018-07-11 23:07:20 +00:00
|
|
|
'--no-deprecation', // Because Yarn still uses `new Buffer()`
|
2018-06-25 17:42:50 +00:00
|
|
|
_getYarnPath(),
|
|
|
|
'add',
|
2018-08-04 18:52:35 +00:00
|
|
|
lookupName,
|
2018-06-25 17:42:50 +00:00
|
|
|
'--modules-folder',
|
|
|
|
tmpDir,
|
|
|
|
'--cwd',
|
|
|
|
tmpDir,
|
2018-03-29 17:23:49 +00:00
|
|
|
'--no-lockfile',
|
|
|
|
'--production',
|
|
|
|
'--no-progress'
|
|
|
|
],
|
|
|
|
{
|
|
|
|
timeout: 5 * 60 * 1000,
|
|
|
|
maxBuffer: 1024 * 1024,
|
|
|
|
cwd: tmpDir,
|
2018-07-11 23:07:20 +00:00
|
|
|
shell: true, // Some package installs require a shell
|
2018-03-29 17:23:49 +00:00
|
|
|
env: {
|
2018-06-25 17:42:50 +00:00
|
|
|
NODE_ENV: 'production',
|
|
|
|
ELECTRON_RUN_AS_NODE: 'true'
|
2018-03-29 17:23:49 +00:00
|
|
|
}
|
2018-06-25 17:42:50 +00:00
|
|
|
},
|
|
|
|
(err, stdout, stderr) => {
|
2018-03-29 17:23:49 +00:00
|
|
|
if (err) {
|
2018-08-04 18:52:35 +00:00
|
|
|
reject(new Error(`${lookupName} install error: ${err.message}`));
|
2018-03-29 17:23:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stderr) {
|
|
|
|
reject(new Error(`Yarn error ${stderr.toString('utf8')}`));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
resolve({ tmpDir });
|
2018-03-29 17:23:49 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-06-25 17:42:50 +00:00
|
|
|
function _getYarnPath() {
|
|
|
|
const { app } = electron.remote || electron;
|
2017-11-29 23:14:44 +00:00
|
|
|
|
|
|
|
// TODO: This is brittle. Make finding this more robust.
|
|
|
|
if (isDevelopment()) {
|
|
|
|
return path.resolve(app.getAppPath(), './bin/yarn-standalone.js');
|
|
|
|
} else {
|
|
|
|
return path.resolve(app.getAppPath(), '../bin/yarn-standalone.js');
|
|
|
|
}
|
2017-11-26 20:45:40 +00:00
|
|
|
}
|
2018-07-11 23:07:20 +00:00
|
|
|
|
|
|
|
function escape(p) {
|
2018-10-17 20:25:15 +00:00
|
|
|
if (isWindows()) {
|
|
|
|
// Quote for Windows paths
|
|
|
|
return `"${p}"`;
|
|
|
|
} else {
|
|
|
|
// Escape with backslashes for Unix paths
|
|
|
|
return p.replace(/(\s+)/g, '\\$1');
|
|
|
|
}
|
2018-07-11 23:07:20 +00:00
|
|
|
}
|