mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
155 lines
5.2 KiB
TypeScript
155 lines
5.2 KiB
TypeScript
import net from "net";
|
|
import http from "http";
|
|
import spdy from "spdy";
|
|
import httpProxy from "http-proxy";
|
|
import url from "url";
|
|
import * as WebSocket from "ws"
|
|
import { openShell } from "./node-shell-session";
|
|
import { Router } from "./router"
|
|
import { ClusterManager } from "./cluster-manager"
|
|
import { ContextHandler } from "./context-handler";
|
|
import { apiKubePrefix } from "../common/vars";
|
|
import logger from "./logger"
|
|
|
|
export class LensProxy {
|
|
protected origin: string
|
|
protected proxyServer: http.Server
|
|
protected router: Router
|
|
protected closed = false
|
|
protected retryCounters = new Map<string, number>()
|
|
|
|
static create(port: number, clusterManager: ClusterManager) {
|
|
return new LensProxy(port, clusterManager).listen();
|
|
}
|
|
|
|
private constructor(protected port: number, protected clusterManager: ClusterManager) {
|
|
this.origin = `http://localhost:${port}`
|
|
this.router = new Router();
|
|
}
|
|
|
|
listen(port = this.port): this {
|
|
this.proxyServer = this.buildCustomProxy().listen(port);
|
|
logger.info(`LensProxy server has started at ${this.origin}`);
|
|
return this;
|
|
}
|
|
|
|
close() {
|
|
logger.info("Closing proxy server");
|
|
this.proxyServer.close()
|
|
this.closed = true
|
|
}
|
|
|
|
protected buildCustomProxy(): http.Server {
|
|
const proxy = this.createProxy();
|
|
const spdyProxy = spdy.createServer({
|
|
spdy: {
|
|
plain: true,
|
|
connection: {
|
|
autoSpdy31: true
|
|
}
|
|
}
|
|
}, (req: http.IncomingMessage, res: http.ServerResponse) => {
|
|
this.handleRequest(proxy, req, res)
|
|
})
|
|
spdyProxy.on("upgrade", (req: http.IncomingMessage, socket: net.Socket, head: Buffer) => {
|
|
if (req.url.startsWith("/api?")) {
|
|
this.handleWsUpgrade(req, socket, head)
|
|
} else {
|
|
if (req.headers.upgrade?.startsWith("SPDY")) {
|
|
this.handleSpdyProxy(proxy, req, socket, head)
|
|
} else {
|
|
socket.end()
|
|
}
|
|
}
|
|
})
|
|
spdyProxy.on("error", (err) => {
|
|
logger.error("proxy error", err)
|
|
})
|
|
return spdyProxy
|
|
}
|
|
|
|
protected async handleSpdyProxy(proxy: httpProxy, req: http.IncomingMessage, socket: net.Socket, head: Buffer) {
|
|
const cluster = this.clusterManager.getClusterForRequest(req)
|
|
if (cluster) {
|
|
const proxyUrl = await cluster.contextHandler.resolveAuthProxyUrl() + req.url.replace("/api-kube", "")
|
|
const apiUrl = url.parse(cluster.apiUrl)
|
|
const res = new http.ServerResponse(req)
|
|
res.assignSocket(socket)
|
|
res.setHeader("Location", proxyUrl)
|
|
res.setHeader("Host", apiUrl.hostname)
|
|
res.statusCode = 302
|
|
res.end()
|
|
}
|
|
}
|
|
|
|
protected createProxy(): httpProxy {
|
|
const proxy = httpProxy.createProxyServer();
|
|
proxy.on("error", (error, req, res, target) => {
|
|
if (this.closed) {
|
|
return;
|
|
}
|
|
if (target) {
|
|
logger.debug("Failed proxy to target: " + JSON.stringify(target, null, 2));
|
|
if (req.method === "GET" && (!res.statusCode || res.statusCode >= 500)) {
|
|
const reqId = this.getRequestId(req);
|
|
const retryCount = this.retryCounters.get(reqId) || 0
|
|
const timeoutMs = retryCount * 250
|
|
if (retryCount < 20) {
|
|
logger.debug(`Retrying proxy request to url: ${reqId}`)
|
|
setTimeout(() => {
|
|
this.retryCounters.set(reqId, retryCount + 1)
|
|
this.handleRequest(proxy, req, res)
|
|
}, timeoutMs)
|
|
}
|
|
}
|
|
}
|
|
res.writeHead(500).end("Oops, something went wrong.")
|
|
})
|
|
|
|
return proxy;
|
|
}
|
|
|
|
protected createWsListener(): WebSocket.Server {
|
|
const ws = new WebSocket.Server({ noServer: true })
|
|
return ws.on("connection", ((socket: WebSocket, req: http.IncomingMessage) => {
|
|
const cluster = this.clusterManager.getClusterForRequest(req);
|
|
const nodeParam = url.parse(req.url, true).query["node"]?.toString();
|
|
openShell(socket, cluster, nodeParam);
|
|
}));
|
|
}
|
|
|
|
protected async getProxyTarget(req: http.IncomingMessage, contextHandler: ContextHandler): Promise<httpProxy.ServerOptions> {
|
|
if (req.url.startsWith(apiKubePrefix)) {
|
|
delete req.headers.authorization
|
|
req.url = req.url.replace(apiKubePrefix, "")
|
|
const isWatchRequest = req.url.includes("watch=")
|
|
return await contextHandler.getApiTarget(isWatchRequest)
|
|
}
|
|
}
|
|
|
|
protected getRequestId(req: http.IncomingMessage) {
|
|
return req.headers.host + req.url;
|
|
}
|
|
|
|
protected async handleRequest(proxy: httpProxy, req: http.IncomingMessage, res: http.ServerResponse) {
|
|
const cluster = this.clusterManager.getClusterForRequest(req)
|
|
if (cluster) {
|
|
await cluster.contextHandler.ensureServer();
|
|
const proxyTarget = await this.getProxyTarget(req, cluster.contextHandler)
|
|
if (proxyTarget) {
|
|
// allow to fetch apis in "clusterId.localhost:port" from "localhost:port"
|
|
res.setHeader("Access-Control-Allow-Origin", this.origin);
|
|
return proxy.web(req, res, proxyTarget);
|
|
}
|
|
}
|
|
this.router.route(cluster, req, res);
|
|
}
|
|
|
|
protected async handleWsUpgrade(req: http.IncomingMessage, socket: net.Socket, head: Buffer) {
|
|
const wsServer = this.createWsListener();
|
|
wsServer.handleUpgrade(req, socket, head, (con) => {
|
|
wsServer.emit("connection", con, req);
|
|
});
|
|
}
|
|
}
|