thelounge/src/command-line/install.js

106 lines
2.6 KiB
JavaScript
Raw Normal View History

2017-09-18 17:57:24 +02:00
"use strict";
2018-03-02 19:28:54 +01:00
const colors = require("chalk");
2017-09-18 17:57:24 +02:00
const program = require("commander");
const Helper = require("../helper");
const Utils = require("./utils");
program
.command("install <package>")
.description("Install a theme or a package")
.on("--help", Utils.extraHelp)
.action(function(packageName) {
const fs = require("fs");
const fsextra = require("fs-extra");
const path = require("path");
const child = require("child_process");
const packageJson = require("package-json");
if (!fs.existsSync(Helper.getConfigPath())) {
log.error(`${Helper.getConfigPath()} does not exist.`);
2017-09-18 17:57:24 +02:00
return;
}
log.info("Retrieving information about the package...");
2017-09-18 17:57:24 +02:00
packageJson(packageName, {
fullMetadata: true,
2017-09-18 17:57:24 +02:00
}).then((json) => {
if (!("thelounge" in json)) {
2017-09-18 17:57:24 +02:00
log.error(`${colors.red(packageName)} does not have The Lounge metadata.`);
process.exit(1);
}
log.info(`Installing ${colors.green(packageName)}...`);
const packagesPath = Helper.getPackagesPath();
const packagesConfig = path.join(packagesPath, "package.json");
2017-09-18 17:57:24 +02:00
// Create node_modules folder, otherwise yarn will start walking upwards to find one
fsextra.ensureDirSync(path.join(packagesPath, "node_modules"));
2017-09-18 17:57:24 +02:00
// Create package.json with private set to true, if it doesn't exist already
if (!fs.existsSync(packagesConfig)) {
fs.writeFileSync(packagesConfig, JSON.stringify({
private: true,
description: "Packages for The Lounge. All packages in node_modules directory will be automatically loaded.",
}, null, "\t"));
}
2017-09-18 17:57:24 +02:00
const yarn = path.join(
__dirname,
"..",
"..",
"node_modules",
"yarn",
"bin",
"yarn.js"
);
let success = false;
const add = child.spawn(
process.execPath,
2017-09-18 17:57:24 +02:00
[
yarn,
"add",
"--json",
"--exact",
2017-09-18 17:57:24 +02:00
"--production",
"--ignore-scripts",
"--non-interactive",
"--cwd",
packagesPath,
`${packageName}@${json.version}`,
]
2017-09-18 17:57:24 +02:00
);
add.stdout.on("data", (data) => {
data.toString().trim().split("\n").forEach((line) => {
line = JSON.parse(line);
if (line.type === "success") {
success = true;
}
});
});
add.on("error", (e) => {
2017-09-18 17:57:24 +02:00
log.error(`${e}`);
process.exit(1);
});
add.on("close", (code) => {
if (!success || code !== 0) {
2017-09-18 17:57:24 +02:00
log.error(`Failed to install ${colors.green(packageName)}. Exit code: ${code}`);
return;
}
log.info(`${colors.green(packageName + " v" + json.version)} has been successfully installed.`);
2017-09-18 17:57:24 +02:00
});
}).catch((e) => {
log.error(`${e}`);
process.exit(1);
});
});