2020-02-19 01:24:12 +07:00
|
|
|
import { field, logger } from "@coder/logger"
|
|
|
|
import * as cp from "child_process"
|
2020-08-28 01:06:21 +07:00
|
|
|
import { promises as fs } from "fs"
|
|
|
|
import http from "http"
|
2020-02-19 01:24:12 +07:00
|
|
|
import * as path from "path"
|
2020-08-31 23:10:12 +07:00
|
|
|
import { CliMessage, OpenCommandPipeArgs } from "../../lib/vscode/src/vs/server/ipc"
|
2020-08-26 01:06:41 +07:00
|
|
|
import { plural } from "../common/util"
|
2020-08-31 22:29:12 +07:00
|
|
|
import { HealthHttpProvider } from "./app/health"
|
2020-02-14 05:38:05 +07:00
|
|
|
import { LoginHttpProvider } from "./app/login"
|
2020-03-24 01:47:01 +07:00
|
|
|
import { ProxyHttpProvider } from "./app/proxy"
|
2020-03-03 01:43:02 +07:00
|
|
|
import { StaticHttpProvider } from "./app/static"
|
2020-02-15 04:57:51 +07:00
|
|
|
import { UpdateHttpProvider } from "./app/update"
|
2020-02-14 05:38:05 +07:00
|
|
|
import { VscodeHttpProvider } from "./app/vscode"
|
2020-05-19 11:39:57 +07:00
|
|
|
import { Args, bindAddrFromAllSources, optionDescriptions, parse, readConfigFile, setDefaults } from "./cli"
|
2020-10-07 08:05:32 +07:00
|
|
|
import { coderCloudBind, coderCloudProxy } from "./coder-cloud"
|
2020-03-24 00:07:23 +07:00
|
|
|
import { AuthType, HttpServer, HttpServerOptions } from "./http"
|
2020-07-29 03:06:15 +07:00
|
|
|
import { loadPlugins } from "./plugin"
|
|
|
|
import { generateCertificate, hash, humanPath, open } from "./util"
|
2020-02-05 02:27:46 +07:00
|
|
|
import { ipcMain, wrap } from "./wrapper"
|
|
|
|
|
2020-03-31 03:52:11 +07:00
|
|
|
process.on("uncaughtException", (error) => {
|
|
|
|
logger.error(`Uncaught exception: ${error.message}`)
|
|
|
|
if (typeof error.stack !== "undefined") {
|
|
|
|
logger.error(error.stack)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-03-31 03:28:57 +07:00
|
|
|
let pkg: { version?: string; commit?: string } = {}
|
|
|
|
try {
|
|
|
|
pkg = require("../../package.json")
|
|
|
|
} catch (error) {
|
|
|
|
logger.warn(error.message)
|
|
|
|
}
|
|
|
|
|
|
|
|
const version = pkg.version || "development"
|
|
|
|
const commit = pkg.commit || "development"
|
|
|
|
|
2020-05-28 14:31:11 +07:00
|
|
|
const main = async (args: Args, cliArgs: Args, configArgs: Args): Promise<void> => {
|
2020-10-07 08:05:32 +07:00
|
|
|
if (args["coder-bind"]) {
|
|
|
|
// If we're being exposed to the cloud, we listen on a random address and disable auth.
|
2020-10-07 23:16:27 +07:00
|
|
|
cliArgs = {
|
|
|
|
...cliArgs,
|
2020-09-29 02:43:26 +07:00
|
|
|
host: "localhost",
|
|
|
|
port: 0,
|
2020-10-07 08:05:32 +07:00
|
|
|
auth: AuthType.None,
|
2020-10-07 23:16:27 +07:00
|
|
|
socket: undefined,
|
2020-09-29 02:43:26 +07:00
|
|
|
}
|
2020-10-07 08:05:32 +07:00
|
|
|
logger.info("coder-bind: disabling auth and listening on random localhost port")
|
2020-09-29 02:43:26 +07:00
|
|
|
}
|
|
|
|
|
2020-05-13 06:19:37 +07:00
|
|
|
if (!args.auth) {
|
|
|
|
args = {
|
|
|
|
...args,
|
|
|
|
auth: AuthType.Password,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-15 05:35:35 +07:00
|
|
|
logger.info(`Using user-data-dir ${humanPath(args["user-data-dir"])}`)
|
|
|
|
|
|
|
|
logger.trace(`Using extensions-dir ${humanPath(args["extensions-dir"])}`)
|
2020-02-05 05:55:27 +07:00
|
|
|
|
2020-05-13 06:19:37 +07:00
|
|
|
const envPassword = !!process.env.PASSWORD
|
2020-05-10 15:15:29 +07:00
|
|
|
const password = args.auth === AuthType.Password && (process.env.PASSWORD || args.password)
|
2020-05-13 06:19:37 +07:00
|
|
|
if (args.auth === AuthType.Password && !password) {
|
|
|
|
throw new Error("Please pass in a password via the config file or $PASSWORD")
|
|
|
|
}
|
2020-05-10 15:15:29 +07:00
|
|
|
const [host, port] = bindAddrFromAllSources(cliArgs, configArgs)
|
2020-04-27 20:22:52 +07:00
|
|
|
|
2020-02-05 02:27:46 +07:00
|
|
|
// Spawn the main HTTP server.
|
2020-03-24 00:07:23 +07:00
|
|
|
const options: HttpServerOptions = {
|
2020-05-10 15:15:29 +07:00
|
|
|
auth: args.auth,
|
2020-03-31 03:28:57 +07:00
|
|
|
commit,
|
2020-05-10 15:15:29 +07:00
|
|
|
host: host,
|
2020-05-12 08:23:50 +07:00
|
|
|
// The hash does not add any actual security but we do it for obfuscation purposes.
|
2020-05-10 13:35:15 +07:00
|
|
|
password: password ? hash(password) : undefined,
|
2020-05-10 15:15:29 +07:00
|
|
|
port: port,
|
2020-04-03 01:09:09 +07:00
|
|
|
proxyDomains: args["proxy-domain"],
|
2020-02-05 02:27:46 +07:00
|
|
|
socket: args.socket,
|
2020-03-24 00:07:23 +07:00
|
|
|
...(args.cert && !args.cert.value
|
|
|
|
? await generateCertificate()
|
|
|
|
: {
|
|
|
|
cert: args.cert && args.cert.value,
|
|
|
|
certKey: args["cert-key"],
|
|
|
|
}),
|
2020-02-05 02:27:46 +07:00
|
|
|
}
|
2020-02-25 03:55:17 +07:00
|
|
|
|
2020-03-24 00:07:23 +07:00
|
|
|
if (options.cert && !options.certKey) {
|
2020-02-25 03:55:17 +07:00
|
|
|
throw new Error("--cert-key is missing")
|
2020-02-05 02:27:46 +07:00
|
|
|
}
|
2020-03-17 01:08:17 +07:00
|
|
|
|
2020-02-05 07:16:45 +07:00
|
|
|
const httpServer = new HttpServer(options)
|
2020-07-23 02:53:15 +07:00
|
|
|
httpServer.registerHttpProvider(["/", "/vscode"], VscodeHttpProvider, args)
|
2020-07-23 03:28:33 +07:00
|
|
|
httpServer.registerHttpProvider("/update", UpdateHttpProvider, false)
|
2020-04-03 01:09:09 +07:00
|
|
|
httpServer.registerHttpProvider("/proxy", ProxyHttpProvider)
|
2020-05-13 06:19:37 +07:00
|
|
|
httpServer.registerHttpProvider("/login", LoginHttpProvider, args.config!, envPassword)
|
2020-03-03 01:43:02 +07:00
|
|
|
httpServer.registerHttpProvider("/static", StaticHttpProvider)
|
2020-08-31 22:29:12 +07:00
|
|
|
httpServer.registerHttpProvider("/healthz", HealthHttpProvider, httpServer.heart)
|
2020-02-05 02:27:46 +07:00
|
|
|
|
2020-07-29 03:06:15 +07:00
|
|
|
await loadPlugins(httpServer, args)
|
|
|
|
|
2020-07-24 00:22:38 +07:00
|
|
|
ipcMain().onDispose(() => {
|
|
|
|
httpServer.dispose().then((errors) => {
|
|
|
|
errors.forEach((error) => logger.error(error.message))
|
|
|
|
})
|
|
|
|
})
|
2020-02-05 02:27:46 +07:00
|
|
|
|
2020-03-31 03:28:57 +07:00
|
|
|
logger.info(`code-server ${version} ${commit}`)
|
2020-02-05 02:27:46 +07:00
|
|
|
const serverAddress = await httpServer.listen()
|
2020-03-31 03:52:11 +07:00
|
|
|
logger.info(`HTTP server listening on ${serverAddress}`)
|
2020-02-05 02:27:46 +07:00
|
|
|
|
2020-05-10 15:15:29 +07:00
|
|
|
if (args.auth === AuthType.Password) {
|
2020-05-13 06:19:37 +07:00
|
|
|
if (envPassword) {
|
2020-05-10 15:15:29 +07:00
|
|
|
logger.info(" - Using password from $PASSWORD")
|
|
|
|
} else {
|
|
|
|
logger.info(` - Using password from ${humanPath(args.config)}`)
|
|
|
|
}
|
|
|
|
logger.info(" - To disable use `--auth none`")
|
2020-02-05 02:27:46 +07:00
|
|
|
} else {
|
|
|
|
logger.info(" - No authentication")
|
|
|
|
}
|
2020-05-04 13:40:34 +07:00
|
|
|
delete process.env.PASSWORD
|
2020-02-05 02:27:46 +07:00
|
|
|
|
|
|
|
if (httpServer.protocol === "https") {
|
|
|
|
logger.info(
|
2020-03-24 00:07:23 +07:00
|
|
|
args.cert && args.cert.value
|
2020-02-25 03:55:17 +07:00
|
|
|
? ` - Using provided certificate and key for HTTPS`
|
2020-02-15 07:46:00 +07:00
|
|
|
: ` - Using generated certificate and key for HTTPS`,
|
2020-02-05 02:27:46 +07:00
|
|
|
)
|
|
|
|
} else {
|
|
|
|
logger.info(" - Not serving HTTPS")
|
|
|
|
}
|
|
|
|
|
2020-04-03 01:09:09 +07:00
|
|
|
if (httpServer.proxyDomains.size > 0) {
|
2020-08-09 12:06:18 +07:00
|
|
|
logger.info(` - ${plural(httpServer.proxyDomains.size, "Proxying the following domain")}:`)
|
2020-04-03 01:09:09 +07:00
|
|
|
httpServer.proxyDomains.forEach((domain) => logger.info(` - *.${domain}`))
|
2020-03-24 00:08:50 +07:00
|
|
|
}
|
|
|
|
|
2020-02-05 02:27:46 +07:00
|
|
|
if (serverAddress && !options.socket && args.open) {
|
|
|
|
// The web socket doesn't seem to work if browsing with 0.0.0.0.
|
|
|
|
const openAddress = serverAddress.replace(/:\/\/0.0.0.0/, "://localhost")
|
|
|
|
await open(openAddress).catch(console.error)
|
2020-03-31 03:52:11 +07:00
|
|
|
logger.info(`Opened ${openAddress}`)
|
2020-02-05 02:27:46 +07:00
|
|
|
}
|
2020-09-29 02:43:26 +07:00
|
|
|
|
2020-10-07 08:05:32 +07:00
|
|
|
if (args["coder-bind"]) {
|
2020-09-29 02:43:26 +07:00
|
|
|
|
|
|
|
try {
|
2020-10-07 13:03:27 +07:00
|
|
|
logger.info(`binding code-server to the cloud with name ${args["coder-bind"]}`)
|
2020-10-07 08:05:32 +07:00
|
|
|
await coderCloudBind(args["coder-bind"])
|
|
|
|
coderCloudProxy(serverAddress!)
|
2020-09-29 02:43:26 +07:00
|
|
|
} catch (err) {
|
|
|
|
logger.error(err.message)
|
2020-10-07 13:03:27 +07:00
|
|
|
ipcMain().exit(1)
|
2020-09-29 02:43:26 +07:00
|
|
|
}
|
|
|
|
}
|
2020-02-05 02:27:46 +07:00
|
|
|
}
|
|
|
|
|
2020-05-14 17:08:37 +07:00
|
|
|
async function entry(): Promise<void> {
|
2020-05-28 14:31:11 +07:00
|
|
|
const tryParse = async (): Promise<[Args, Args, Args]> => {
|
2020-05-14 17:08:37 +07:00
|
|
|
try {
|
2020-05-28 14:31:11 +07:00
|
|
|
const cliArgs = parse(process.argv.slice(2))
|
|
|
|
const configArgs = await readConfigFile(cliArgs.config)
|
|
|
|
// This prioritizes the flags set in args over the ones in the config file.
|
|
|
|
let args = Object.assign(configArgs, cliArgs)
|
2020-05-27 10:20:12 +07:00
|
|
|
args = await setDefaults(args)
|
2020-05-28 14:31:11 +07:00
|
|
|
return [args, cliArgs, configArgs]
|
2020-05-14 17:08:37 +07:00
|
|
|
} catch (error) {
|
|
|
|
console.error(error.message)
|
|
|
|
process.exit(1)
|
|
|
|
}
|
2020-02-20 00:14:50 +07:00
|
|
|
}
|
|
|
|
|
2020-05-28 14:31:11 +07:00
|
|
|
const [args, cliArgs, configArgs] = await tryParse()
|
2020-05-14 17:08:37 +07:00
|
|
|
if (args.help) {
|
|
|
|
console.log("code-server", version, commit)
|
|
|
|
console.log("")
|
|
|
|
console.log(`Usage: code-server [options] [path]`)
|
|
|
|
console.log("")
|
|
|
|
console.log("Options")
|
|
|
|
optionDescriptions().forEach((description) => {
|
|
|
|
console.log("", description)
|
|
|
|
})
|
|
|
|
} else if (args.version) {
|
|
|
|
if (args.json) {
|
|
|
|
console.log({
|
|
|
|
codeServer: version,
|
|
|
|
commit,
|
|
|
|
vscode: require("../../lib/vscode/package.json").version,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
console.log(version, commit)
|
|
|
|
}
|
|
|
|
process.exit(0)
|
2020-09-09 01:54:23 +07:00
|
|
|
} else if (args["list-extensions"] || args["install-extension"] || args["uninstall-extension"]) {
|
|
|
|
logger.debug("forking vs code cli...")
|
|
|
|
const vscode = cp.fork(path.resolve(__dirname, "../../lib/vscode/out/vs/server/fork"), [], {
|
|
|
|
env: {
|
|
|
|
...process.env,
|
|
|
|
CODE_SERVER_PARENT_PID: process.pid.toString(),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
vscode.once("message", (message: any) => {
|
|
|
|
logger.debug("Got message from VS Code", field("message", message))
|
|
|
|
if (message.type !== "ready") {
|
|
|
|
logger.error("Unexpected response waiting for ready response")
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
const send: CliMessage = { type: "cli", args }
|
|
|
|
vscode.send(send)
|
|
|
|
})
|
|
|
|
vscode.once("error", (error) => {
|
|
|
|
logger.error(error.message)
|
|
|
|
process.exit(1)
|
|
|
|
})
|
|
|
|
vscode.on("exit", (code) => process.exit(code || 0))
|
2020-08-28 03:04:37 +07:00
|
|
|
} else if (process.env.VSCODE_IPC_HOOK_CLI) {
|
|
|
|
const pipeArgs: OpenCommandPipeArgs = {
|
|
|
|
type: "open",
|
|
|
|
folderURIs: [],
|
|
|
|
forceReuseWindow: args["reuse-window"],
|
|
|
|
forceNewWindow: args["new-window"],
|
2020-08-28 01:06:21 +07:00
|
|
|
}
|
|
|
|
const isDir = async (path: string): Promise<boolean> => {
|
|
|
|
try {
|
|
|
|
const st = await fs.stat(path)
|
|
|
|
return st.isDirectory()
|
|
|
|
} catch (error) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (let i = 0; i < args._.length; i++) {
|
|
|
|
const fp = path.resolve(args._[i])
|
|
|
|
if (await isDir(fp)) {
|
|
|
|
pipeArgs.folderURIs.push(fp)
|
|
|
|
} else {
|
|
|
|
if (!pipeArgs.fileURIs) {
|
|
|
|
pipeArgs.fileURIs = []
|
|
|
|
}
|
|
|
|
pipeArgs.fileURIs.push(fp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pipeArgs.forceNewWindow && pipeArgs.fileURIs && pipeArgs.fileURIs.length > 0) {
|
|
|
|
logger.error("new-window can only be used with folder paths")
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
if (pipeArgs.folderURIs.length === 0 && (!pipeArgs.fileURIs || pipeArgs.fileURIs.length === 0)) {
|
2020-08-28 03:04:37 +07:00
|
|
|
logger.error("Please specify at least one file or folder argument")
|
2020-08-28 01:06:21 +07:00
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
const vscode = http.request(
|
|
|
|
{
|
|
|
|
path: "/",
|
|
|
|
method: "POST",
|
|
|
|
socketPath: process.env["VSCODE_IPC_HOOK_CLI"],
|
|
|
|
},
|
|
|
|
(res) => {
|
|
|
|
res.on("data", (message) => {
|
|
|
|
logger.debug("Got message from VS Code", field("message", message.toString()))
|
|
|
|
})
|
|
|
|
},
|
|
|
|
)
|
|
|
|
vscode.on("error", (err) => {
|
|
|
|
logger.debug("Got error from VS Code", field("error", err))
|
|
|
|
})
|
|
|
|
vscode.write(JSON.stringify(pipeArgs))
|
|
|
|
vscode.end()
|
2020-02-05 04:00:44 +07:00
|
|
|
} else {
|
2020-05-28 14:31:11 +07:00
|
|
|
wrap(() => main(args, cliArgs, configArgs))
|
2020-02-05 04:00:44 +07:00
|
|
|
}
|
|
|
|
}
|
2020-05-14 17:08:37 +07:00
|
|
|
|
|
|
|
entry()
|