2020-03-24 01:47:01 +07:00
|
|
|
import * as http from "http"
|
2020-03-24 06:02:31 +07:00
|
|
|
import proxy from "http-proxy"
|
|
|
|
import * as net from "net"
|
2020-03-24 01:47:01 +07:00
|
|
|
import { HttpCode, HttpError } from "../../common/http"
|
2020-03-24 02:26:47 +07:00
|
|
|
import { HttpProvider, HttpProviderOptions, HttpProxyProvider, HttpResponse, Route } from "../http"
|
2020-03-24 01:47:01 +07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Proxy HTTP provider.
|
|
|
|
*/
|
2020-03-24 02:26:47 +07:00
|
|
|
export class ProxyHttpProvider extends HttpProvider implements HttpProxyProvider {
|
2020-03-24 02:51:58 +07:00
|
|
|
/**
|
|
|
|
* Proxy domains are stored here without the leading `*.`
|
|
|
|
*/
|
2020-03-24 02:26:47 +07:00
|
|
|
public readonly proxyDomains: string[]
|
2020-03-24 06:02:31 +07:00
|
|
|
private readonly proxy = proxy.createProxyServer({})
|
2020-03-24 02:26:47 +07:00
|
|
|
|
2020-03-24 02:51:58 +07:00
|
|
|
/**
|
|
|
|
* Domains can be provided in the form `coder.com` or `*.coder.com`. Either
|
|
|
|
* way, `<number>.coder.com` will be proxied to `number`.
|
|
|
|
*/
|
2020-03-24 02:26:47 +07:00
|
|
|
public constructor(options: HttpProviderOptions, proxyDomains: string[] = []) {
|
2020-03-24 01:47:01 +07:00
|
|
|
super(options)
|
2020-03-24 02:26:47 +07:00
|
|
|
this.proxyDomains = proxyDomains.map((d) => d.replace(/^\*\./, "")).filter((d, i, arr) => arr.indexOf(d) === i)
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
|
|
|
|
2020-03-24 06:02:31 +07:00
|
|
|
public async handleRequest(
|
|
|
|
route: Route,
|
|
|
|
request: http.IncomingMessage,
|
|
|
|
response: http.ServerResponse,
|
|
|
|
): Promise<HttpResponse> {
|
2020-03-24 02:26:47 +07:00
|
|
|
if (!this.authenticated(request)) {
|
2020-03-24 06:02:31 +07:00
|
|
|
// Only redirect from the root. Other requests get an unauthorized error.
|
|
|
|
if (route.requestPath && route.requestPath !== "/index.html") {
|
|
|
|
throw new HttpError("Unauthorized", HttpCode.Unauthorized)
|
2020-03-24 02:26:47 +07:00
|
|
|
}
|
2020-03-24 06:02:31 +07:00
|
|
|
return { redirect: "/login", query: { to: route.fullPath } }
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
2020-03-24 02:26:47 +07:00
|
|
|
|
2020-03-24 06:02:31 +07:00
|
|
|
const payload = this.doProxy(route.requestPath, request, response, route.base.replace(/^\//, ""))
|
2020-03-24 02:26:47 +07:00
|
|
|
if (payload) {
|
|
|
|
return payload
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
2020-03-24 02:26:47 +07:00
|
|
|
|
|
|
|
throw new HttpError("Not found", HttpCode.NotFound)
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
|
|
|
|
2020-03-24 06:02:31 +07:00
|
|
|
public async handleWebSocket(
|
|
|
|
route: Route,
|
|
|
|
request: http.IncomingMessage,
|
|
|
|
socket: net.Socket,
|
|
|
|
head: Buffer,
|
|
|
|
): Promise<void> {
|
|
|
|
this.ensureAuthenticated(request)
|
|
|
|
this.doProxy(route.requestPath, request, socket, head, route.base.replace(/^\//, ""))
|
|
|
|
}
|
|
|
|
|
2020-03-24 02:51:58 +07:00
|
|
|
public getCookieDomain(host: string): string {
|
|
|
|
let current: string | undefined
|
|
|
|
this.proxyDomains.forEach((domain) => {
|
|
|
|
if (host.endsWith(domain) && (!current || domain.length < current.length)) {
|
|
|
|
current = domain
|
|
|
|
}
|
|
|
|
})
|
2020-03-25 02:29:48 +07:00
|
|
|
// Setting the domain to localhost doesn't seem to work for subdomains (for
|
|
|
|
// example dev.localhost).
|
|
|
|
return current && current !== "localhost" ? current : host
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
|
|
|
|
2020-03-24 06:02:31 +07:00
|
|
|
public maybeProxyRequest(
|
|
|
|
route: Route,
|
|
|
|
request: http.IncomingMessage,
|
|
|
|
response: http.ServerResponse,
|
|
|
|
): HttpResponse | undefined {
|
|
|
|
const port = this.getPort(request)
|
|
|
|
return port ? this.doProxy(route.fullPath, request, response, port) : undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
public maybeProxyWebSocket(
|
|
|
|
route: Route,
|
|
|
|
request: http.IncomingMessage,
|
|
|
|
socket: net.Socket,
|
|
|
|
head: Buffer,
|
|
|
|
): HttpResponse | undefined {
|
|
|
|
const port = this.getPort(request)
|
|
|
|
return port ? this.doProxy(route.fullPath, request, socket, head, port) : undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
private getPort(request: http.IncomingMessage): string | undefined {
|
2020-03-24 02:26:47 +07:00
|
|
|
// No proxy until we're authenticated. This will cause the login page to
|
|
|
|
// show as well as let our assets keep loading normally.
|
|
|
|
if (!this.authenticated(request)) {
|
2020-03-24 01:47:01 +07:00
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
2020-03-25 02:29:48 +07:00
|
|
|
// Split into parts.
|
|
|
|
const host = request.headers.host || ""
|
|
|
|
const idx = host.indexOf(":")
|
|
|
|
const domain = idx !== -1 ? host.substring(0, idx) : host
|
|
|
|
const parts = domain.split(".")
|
2020-03-24 01:47:01 +07:00
|
|
|
|
2020-03-24 02:51:58 +07:00
|
|
|
// There must be an exact match.
|
|
|
|
const port = parts.shift()
|
|
|
|
const proxyDomain = parts.join(".")
|
|
|
|
if (!port || !this.proxyDomains.includes(proxyDomain)) {
|
2020-03-24 01:47:01 +07:00
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
2020-03-24 06:02:31 +07:00
|
|
|
return port
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
|
|
|
|
2020-03-24 06:02:31 +07:00
|
|
|
private doProxy(
|
|
|
|
path: string,
|
|
|
|
request: http.IncomingMessage,
|
|
|
|
response: http.ServerResponse,
|
|
|
|
portStr: string,
|
|
|
|
): HttpResponse
|
|
|
|
private doProxy(
|
|
|
|
path: string,
|
|
|
|
request: http.IncomingMessage,
|
|
|
|
socket: net.Socket,
|
|
|
|
head: Buffer,
|
|
|
|
portStr: string,
|
|
|
|
): HttpResponse
|
|
|
|
private doProxy(
|
|
|
|
path: string,
|
|
|
|
request: http.IncomingMessage,
|
|
|
|
responseOrSocket: http.ServerResponse | net.Socket,
|
|
|
|
headOrPortStr: Buffer | string,
|
|
|
|
portStr?: string,
|
|
|
|
): HttpResponse {
|
|
|
|
const _portStr = typeof headOrPortStr === "string" ? headOrPortStr : portStr
|
|
|
|
if (!_portStr) {
|
2020-03-24 01:47:01 +07:00
|
|
|
return {
|
|
|
|
code: HttpCode.BadRequest,
|
|
|
|
content: "Port must be provided",
|
|
|
|
}
|
|
|
|
}
|
2020-03-24 06:02:31 +07:00
|
|
|
|
|
|
|
const port = parseInt(_portStr, 10)
|
2020-03-24 01:47:01 +07:00
|
|
|
if (isNaN(port)) {
|
|
|
|
return {
|
|
|
|
code: HttpCode.BadRequest,
|
2020-03-24 06:02:31 +07:00
|
|
|
content: `"${_portStr}" is not a valid number`,
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
|
|
|
}
|
2020-03-24 06:02:31 +07:00
|
|
|
|
|
|
|
const options: proxy.ServerOptions = {
|
|
|
|
autoRewrite: true,
|
|
|
|
changeOrigin: true,
|
|
|
|
ignorePath: true,
|
|
|
|
target: `http://127.0.0.1:${port}${path}`,
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
2020-03-24 06:02:31 +07:00
|
|
|
|
|
|
|
if (responseOrSocket instanceof net.Socket) {
|
|
|
|
this.proxy.ws(request, responseOrSocket, headOrPortStr, options)
|
|
|
|
} else {
|
|
|
|
this.proxy.web(request, responseOrSocket, options)
|
|
|
|
}
|
|
|
|
|
|
|
|
return { handled: true }
|
2020-03-24 01:47:01 +07:00
|
|
|
}
|
|
|
|
}
|