code-server-2/src/node/coder-cloud.ts

73 lines
1.7 KiB
TypeScript
Raw Normal View History

2020-09-08 23:39:17 +00:00
import { logger } from "@coder/logger"
2020-09-09 04:06:28 +00:00
import { spawn } from "child_process"
import path from "path"
import split2 from "split2"
2020-09-09 04:03:01 +00:00
const coderCloudAgent = path.resolve(__dirname, "../../lib/coder-cloud-agent")
2020-09-08 23:39:17 +00:00
2020-10-07 01:05:32 +00:00
export async function coderCloudBind(serverName: string): Promise<void> {
2020-09-08 23:39:17 +00:00
const agent = spawn(coderCloudAgent, ["link", serverName], {
stdio: ["inherit", "inherit", "pipe"],
})
2020-09-09 04:06:28 +00:00
agent.stderr.pipe(split2()).on("data", (line) => {
2020-09-08 23:39:17 +00:00
line = line.replace(/^[0-9-]+ [0-9:]+ [^ ]+\t/, "")
logger.info(line)
})
return new Promise((res, rej) => {
agent.on("error", rej)
2020-09-09 04:06:28 +00:00
agent.on("close", (code) => {
2020-09-08 23:39:17 +00:00
if (code !== 0) {
rej({
message: `coder cloud agent exited with ${code}`,
})
return
}
res()
})
})
}
2020-09-09 04:03:01 +00:00
export function coderCloudProxy(addr: string) {
// addr needs to be in host:port format.
// So we trim the protocol.
addr = addr.replace(/^https?:\/\//, "")
const _proxy = async () => {
const agent = spawn(coderCloudAgent, ["proxy", "--code-server-addr", addr], {
stdio: ["inherit", "inherit", "pipe"],
})
2020-09-09 04:06:28 +00:00
agent.stderr.pipe(split2()).on("data", (line) => {
2020-09-09 04:03:01 +00:00
line = line.replace(/^[0-9-]+ [0-9:]+ [^ ]+\t/, "")
logger.info(line)
})
return new Promise((res, rej) => {
agent.on("error", rej)
2020-09-09 04:06:28 +00:00
agent.on("close", (code) => {
2020-09-09 04:03:01 +00:00
if (code !== 0) {
rej({
message: `coder cloud agent exited with ${code}`,
})
return
}
res()
})
})
}
const proxy = async () => {
try {
await _proxy()
2020-09-09 04:06:28 +00:00
} catch (err) {
2020-09-09 04:03:01 +00:00
logger.error(err.message)
}
setTimeout(proxy, 3000)
}
proxy()
}