2020-02-19 01:24:12 +07:00
|
|
|
import { field, logger } from "@coder/logger"
|
|
|
|
import * as cp from "child_process"
|
|
|
|
import * as path from "path"
|
|
|
|
import { CliMessage } from "../../lib/vscode/src/vs/server/ipc"
|
2020-02-14 05:38:05 +07:00
|
|
|
import { ApiHttpProvider } from "./app/api"
|
2020-03-03 01:43:02 +07:00
|
|
|
import { DashboardHttpProvider } from "./app/dashboard"
|
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-02-19 01:24:12 +07:00
|
|
|
import { Args, optionDescriptions, parse } from "./cli"
|
2020-03-24 00:07:23 +07:00
|
|
|
import { AuthType, HttpServer, HttpServerOptions } from "./http"
|
2020-04-27 20:27:45 +07:00
|
|
|
import { generateCertificate, generatePassword, hash, 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-02-07 01:29:19 +07:00
|
|
|
const main = async (args: Args): Promise<void> => {
|
2020-02-05 05:55:27 +07:00
|
|
|
const auth = args.auth || AuthType.Password
|
|
|
|
const originalPassword = auth === AuthType.Password && (process.env.PASSWORD || (await generatePassword()))
|
|
|
|
|
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-02-05 07:16:45 +07:00
|
|
|
auth,
|
2020-03-31 03:28:57 +07:00
|
|
|
commit,
|
2020-02-05 02:27:46 +07:00
|
|
|
host: args.host || (args.auth === AuthType.Password && typeof args.cert !== "undefined" ? "0.0.0.0" : "localhost"),
|
2020-02-05 07:16:45 +07:00
|
|
|
password: originalPassword ? hash(originalPassword) : undefined,
|
2020-02-25 05:49:10 +07:00
|
|
|
port: typeof args.port !== "undefined" ? args.port : process.env.PORT ? parseInt(process.env.PORT, 10) : 8080,
|
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-03-03 01:43:02 +07:00
|
|
|
const vscode = httpServer.registerHttpProvider("/", VscodeHttpProvider, args)
|
2020-02-28 01:04:23 +07:00
|
|
|
const api = httpServer.registerHttpProvider("/api", ApiHttpProvider, httpServer, vscode, args["user-data-dir"])
|
2020-02-15 04:57:51 +07:00
|
|
|
const update = httpServer.registerHttpProvider("/update", UpdateHttpProvider, !args["disable-updates"])
|
2020-04-03 01:09:09 +07:00
|
|
|
httpServer.registerHttpProvider("/proxy", ProxyHttpProvider)
|
2020-02-14 05:38:05 +07:00
|
|
|
httpServer.registerHttpProvider("/login", LoginHttpProvider)
|
2020-03-03 01:43:02 +07:00
|
|
|
httpServer.registerHttpProvider("/static", StaticHttpProvider)
|
|
|
|
httpServer.registerHttpProvider("/dashboard", DashboardHttpProvider, api, update)
|
2020-02-05 02:27:46 +07:00
|
|
|
|
2020-02-05 04:00:44 +07:00
|
|
|
ipcMain().onDispose(() => httpServer.dispose())
|
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
|
|
|
|
|
|
|
if (auth === AuthType.Password && !process.env.PASSWORD) {
|
|
|
|
logger.info(` - Password is ${originalPassword}`)
|
2020-03-24 00:07:23 +07:00
|
|
|
logger.info(" - To use your own password set the PASSWORD environment variable")
|
2020-02-05 02:27:46 +07:00
|
|
|
if (!args.auth) {
|
|
|
|
logger.info(" - To disable use `--auth none`")
|
|
|
|
}
|
|
|
|
} else if (auth === AuthType.Password) {
|
|
|
|
logger.info(" - Using custom password for authentication")
|
|
|
|
} else {
|
|
|
|
logger.info(" - No authentication")
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
logger.info(` - Proxying the following domain${httpServer.proxyDomains.size === 1 ? "" : "s"}:`)
|
|
|
|
httpServer.proxyDomains.forEach((domain) => logger.info(` - *.${domain}`))
|
2020-03-24 00:08:50 +07:00
|
|
|
}
|
|
|
|
|
2020-03-31 03:52:11 +07:00
|
|
|
logger.info(`Automatic updates are ${update.enabled ? "enabled" : "disabled"}`)
|
2020-02-15 04:57:51 +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-02-20 00:14:50 +07:00
|
|
|
const tryParse = (): Args => {
|
|
|
|
try {
|
|
|
|
return parse(process.argv.slice(2))
|
|
|
|
} catch (error) {
|
|
|
|
console.error(error.message)
|
|
|
|
process.exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const args = tryParse()
|
2020-02-07 07:26:07 +07:00
|
|
|
if (args.help) {
|
2020-03-31 03:28:57 +07:00
|
|
|
console.log("code-server", version, commit)
|
2020-02-07 07:26:07 +07:00
|
|
|
console.log("")
|
|
|
|
console.log(`Usage: code-server [options] [path]`)
|
|
|
|
console.log("")
|
|
|
|
console.log("Options")
|
|
|
|
optionDescriptions().forEach((description) => {
|
|
|
|
console.log("", description)
|
|
|
|
})
|
|
|
|
} else if (args.version) {
|
2020-02-07 01:29:19 +07:00
|
|
|
if (args.json) {
|
2020-02-05 04:00:44 +07:00
|
|
|
console.log({
|
|
|
|
codeServer: version,
|
2020-03-31 03:28:57 +07:00
|
|
|
commit,
|
2020-02-05 04:00:44 +07:00
|
|
|
vscode: require("../../lib/vscode/package.json").version,
|
|
|
|
})
|
|
|
|
} else {
|
2020-03-31 03:28:57 +07:00
|
|
|
console.log(version, commit)
|
2020-02-05 04:00:44 +07:00
|
|
|
}
|
|
|
|
process.exit(0)
|
2020-02-19 01:24:12 +07:00
|
|
|
} else if (args["list-extensions"] || args["install-extension"] || args["uninstall-extension"]) {
|
2020-02-19 05:51:55 +07:00
|
|
|
logger.debug("forking vs code cli...")
|
2020-02-19 01:24:12 +07:00
|
|
|
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) => {
|
|
|
|
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-02-05 04:00:44 +07:00
|
|
|
} else {
|
2020-02-07 01:29:19 +07:00
|
|
|
wrap(() => main(args))
|
2020-02-05 04:00:44 +07:00
|
|
|
}
|