code-server/src/node/cli.ts

270 lines
8.6 KiB
TypeScript
Raw Normal View History

2019-08-08 04:18:17 +07:00
import * as cp from "child_process";
2019-07-03 04:55:54 +07:00
import * as os from "os";
import * as path from "path";
import { setUnexpectedErrorHandler } from "vs/base/common/errors";
2019-08-08 04:18:17 +07:00
import { main as vsCli } from "vs/code/node/cliProcessMain";
2019-07-03 04:55:54 +07:00
import { validatePaths } from "vs/code/node/paths";
2019-08-08 04:18:17 +07:00
import { ParsedArgs } from "vs/platform/environment/common/environment";
import { buildHelpMessage, buildVersionMessage, Option as VsOption, OPTIONS, OptionDescriptions } from "vs/platform/environment/node/argv";
2019-08-10 06:50:05 +07:00
import { parseMainProcessArgv } from "vs/platform/environment/node/argvHelper";
import product from "vs/platform/product/common/product";
import { ipcMain } from "vs/server/src/node/ipc";
import { enableCustomMarketplace } from "vs/server/src/node/marketplace";
import { MainServer } from "vs/server/src/node/server";
import { AuthType, buildAllowedMessage, enumToArray, FormatType, generateCertificate, generatePassword, localRequire, open, unpackExecutables } from "vs/server/src/node/util";
const { logger } = localRequire<typeof import("@coder/logger/out/index")>("@coder/logger/out/index");
setUnexpectedErrorHandler((error) => logger.warn(error.message));
2019-07-03 04:55:54 +07:00
2019-07-03 06:29:48 +07:00
interface Args extends ParsedArgs {
auth?: AuthType;
"base-path"?: string;
cert?: string;
"cert-key"?: string;
2019-09-05 04:57:23 +07:00
format?: string;
host?: string;
open?: boolean;
2019-07-03 06:29:48 +07:00
port?: string;
socket?: string;
2019-07-03 06:29:48 +07:00
}
2019-08-10 06:50:05 +07:00
// @ts-ignore: Force `keyof Args` to work.
interface Option extends VsOption {
id: keyof Args;
}
2019-08-08 04:18:17 +07:00
const getArgs = (): Args => {
// Remove options that won't work or don't make sense.
for (let key in OPTIONS) {
switch (key) {
2019-08-08 04:18:17 +07:00
case "add":
case "diff":
case "file-uri":
case "folder-uri":
case "goto":
case "new-window":
case "reuse-window":
case "wait":
case "disable-gpu":
// TODO: pretty sure these don't work but not 100%.
case "max-memory":
case "prof-startup":
case "inspect-extensions":
case "inspect-brk-extensions":
delete OPTIONS[key];
2019-08-08 04:18:17 +07:00
break;
}
}
const options = OPTIONS as OptionDescriptions<Required<Args>>;
options["base-path"] = { type: "string", cat: "o", description: "Base path of the URL at which code-server is hosted (used for login redirects)." };
options["cert"] = { type: "string", cat: "o", description: "Path to certificate. If the path is omitted, both this and --cert-key will be generated." };
options["cert-key"] = { type: "string", cat: "o", description: "Path to the certificate's key if one was provided." };
options["format"] = { type: "string", cat: "o", description: `Format for the version. ${buildAllowedMessage(FormatType)}.` };
options["host"] = { type: "string", cat: "o", description: "Host for the server." };
options["auth"] = { type: "string", cat: "o", description: `The type of authentication to use. ${buildAllowedMessage(AuthType)}.` };
options["open"] = { type: "boolean", cat: "o", description: "Open in the browser on startup." };
options["port"] = { type: "string", cat: "o", description: "Port for the main server." };
options["socket"] = { type: "string", cat: "o", description: "Listen on a socket instead of host:port." };
2019-07-03 06:29:48 +07:00
const args = parseMainProcessArgv(process.argv);
if (!args["user-data-dir"]) {
args["user-data-dir"] = path.join(process.env.XDG_DATA_HOME || path.join(os.homedir(), ".local/share"), "code-server");
}
if (!args["extensions-dir"]) {
args["extensions-dir"] = path.join(args["user-data-dir"], "extensions");
}
if (!args.verbose && !args.log && process.env.LOG_LEVEL) {
args.log = process.env.LOG_LEVEL;
}
return validatePaths(args);
2019-08-08 04:18:17 +07:00
};
2019-07-03 04:55:54 +07:00
2019-08-08 04:18:17 +07:00
const startVscode = async (): Promise<void | void[]> => {
const args = getArgs();
2019-07-20 05:43:54 +07:00
const extra = args["_"] || [];
2019-07-12 05:12:52 +07:00
const options = {
auth: args.auth || AuthType.Password,
basePath: args["base-path"],
2019-07-13 03:21:00 +07:00
cert: args.cert,
certKey: args["cert-key"],
openUri: extra.length > 1 ? extra[extra.length - 1] : undefined,
2019-07-20 05:43:54 +07:00
host: args.host,
2019-07-13 03:21:00 +07:00
password: process.env.PASSWORD,
2019-07-12 05:12:52 +07:00
};
if (enumToArray(AuthType).filter((t) => t === options.auth).length === 0) {
throw new Error(`'${options.auth}' is not a valid authentication type.`);
} else if (options.auth === "password" && !options.password) {
options.password = await generatePassword();
2019-07-13 03:21:00 +07:00
}
if (!options.certKey && typeof options.certKey !== "undefined") {
throw new Error(`--cert-key cannot be blank`);
} else if (options.certKey && !options.cert) {
throw new Error(`--cert-key was provided but --cert was not`);
} if (!options.cert && typeof options.cert !== "undefined") {
2019-07-12 05:12:52 +07:00
const { cert, certKey } = await generateCertificate();
options.cert = cert;
options.certKey = certKey;
}
2019-08-10 06:50:05 +07:00
enableCustomMarketplace();
2019-08-08 04:18:17 +07:00
2019-07-12 05:12:52 +07:00
const server = new MainServer({
...options,
2019-09-18 23:39:16 +07:00
port: typeof args.port !== "undefined" ? parseInt(args.port, 10) : 8080,
2019-07-12 05:12:52 +07:00
socket: args.socket,
2019-07-24 07:06:40 +07:00
}, args);
2019-07-12 05:12:52 +07:00
2019-07-24 07:06:40 +07:00
const [serverAddress, /* ignore */] = await Promise.all([
2019-07-17 07:26:05 +07:00
server.listen(),
unpackExecutables(),
2019-07-05 22:54:44 +07:00
]);
logger.info(`Server listening on ${serverAddress}`);
2019-07-13 03:21:00 +07:00
if (options.auth === "password" && !process.env.PASSWORD) {
logger.info(` - Password is ${options.password}`);
logger.info(" - To use your own password, set the PASSWORD environment variable");
if (!args.auth) {
logger.info(" - To disable use `--auth none`");
}
} else if (options.auth === "password") {
logger.info(" - Using custom password for authentication");
2019-07-13 03:21:00 +07:00
} else {
logger.info(" - No authentication");
2019-07-13 03:21:00 +07:00
}
if (server.protocol === "https") {
logger.info(
args.cert
? ` - Using provided certificate${args["cert-key"] ? " and key" : ""} for HTTPS`
: ` - Using generated certificate and key for HTTPS`,
2019-07-13 03:21:00 +07:00
);
} else {
logger.info(" - Not serving HTTPS");
2019-07-13 03:21:00 +07:00
}
2019-07-16 01:31:05 +07:00
if (!server.options.socket && args.open) {
2019-08-08 04:18:17 +07:00
// The web socket doesn't seem to work if browsing with 0.0.0.0.
2019-09-18 23:39:16 +07:00
const openAddress = serverAddress.replace(/:\/\/0.0.0.0/, "://localhost");
2019-07-17 07:23:58 +07:00
await open(openAddress).catch(console.error);
logger.info(` - Opened ${openAddress}`);
2019-07-16 01:31:05 +07:00
}
2019-07-03 04:55:54 +07:00
};
2019-08-08 04:18:17 +07:00
const startCli = (): boolean | Promise<void> => {
const args = getArgs();
if (args.help) {
const executable = `${product.applicationName}${os.platform() === "win32" ? ".exe" : ""}`;
console.log(buildHelpMessage(product.nameLong, executable, product.codeServerVersion, OPTIONS, false));
2019-08-08 04:18:17 +07:00
return true;
}
if (args.version) {
2019-09-05 04:57:23 +07:00
if (args.format === "json") {
console.log(JSON.stringify({
codeServerVersion: product.codeServerVersion,
2019-09-05 04:57:23 +07:00
commit: product.commit,
vscodeVersion: product.version,
2019-09-05 04:57:23 +07:00
}));
} else {
buildVersionMessage(product.codeServerVersion, product.commit).split("\n").map((line) => logger.info(line));
2019-09-05 04:57:23 +07:00
}
2019-08-08 04:18:17 +07:00
return true;
}
const shouldSpawnCliProcess = (): boolean => {
return !!args["install-source"]
|| !!args["list-extensions"]
|| !!args["install-extension"]
|| !!args["uninstall-extension"]
|| !!args["locate-extension"]
|| !!args["telemetry"];
};
if (shouldSpawnCliProcess()) {
2019-08-10 06:50:05 +07:00
enableCustomMarketplace();
2019-08-08 04:18:17 +07:00
return vsCli(args);
}
return false;
};
export class WrapperProcess {
private process?: cp.ChildProcess;
private started?: Promise<void>;
public constructor() {
ipcMain.onMessage(async (message) => {
switch (message) {
case "relaunch":
logger.info("Relaunching...");
this.started = undefined;
if (this.process) {
this.process.removeAllListeners();
2019-08-08 04:18:17 +07:00
this.process.kill();
}
try {
await this.start();
} catch (error) {
logger.error(error.message);
process.exit(typeof error.code === "number" ? error.code : 1);
}
break;
default:
logger.error(`Unrecognized message ${message}`);
break;
}
});
}
public start(): Promise<void> {
if (!this.started) {
const child = this.spawn();
this.started = ipcMain.handshake(child).then(() => {
child.once("exit", (code) => exit(code!));
});
2019-08-08 04:18:17 +07:00
this.process = child;
}
return this.started;
}
private spawn(): cp.ChildProcess {
return cp.spawn(process.argv[0], process.argv.slice(1), {
env: {
...process.env,
LAUNCH_VSCODE: "true",
},
stdio: ["inherit", "inherit", "inherit", "ipc"],
});
}
}
const main = async(): Promise<boolean | void | void[]> => {
if (process.env.LAUNCH_VSCODE) {
await ipcMain.handshake();
return startVscode();
}
return startCli() || new WrapperProcess().start();
};
2019-10-12 05:00:17 +07:00
const exit = process.exit;
process.exit = function (code?: number) {
const err = new Error(`process.exit() was prevented: ${code || "unknown code"}.`);
console.warn(err.stack);
} as (code?: number) => never;
// It's possible that the pipe has closed (for example if you run code-server
// --version | head -1). Assume that means we're done.
if (!process.stdout.isTTY) {
2019-10-12 05:00:17 +07:00
process.stdout.on("error", () => exit());
}
2019-07-03 04:55:54 +07:00
main().catch((error) => {
2019-08-08 04:18:17 +07:00
logger.error(error.message);
2019-10-12 05:00:17 +07:00
exit(typeof error.code === "number" ? error.code : 1);
2019-07-03 04:55:54 +07:00
});