Archived
1
0
This repository has been archived on 2024-09-09. You can view files and clone it, but cannot push or open issues or pull requests.
code-server/src/node/routes/index.ts

198 lines
5.9 KiB
TypeScript
Raw Normal View History

2020-10-21 01:05:58 +02:00
import { logger } from "@coder/logger"
import bodyParser from "body-parser"
import cookieParser from "cookie-parser"
import * as express from "express"
2020-10-21 01:05:58 +02:00
import { promises as fs } from "fs"
import http from "http"
import * as path from "path"
import * as tls from "tls"
2021-01-20 21:11:08 +01:00
import * as pluginapi from "../../../typings/pluginapi"
2020-10-21 01:05:58 +02:00
import { HttpCode, HttpError } from "../../common/http"
import { plural } from "../../common/util"
import { AuthType, DefaultedArgs } from "../cli"
import { rootPath } from "../constants"
import { Heart } from "../heart"
2021-01-20 21:11:08 +01:00
import { redirect, replaceTemplates } from "../http"
import { PluginAPI } from "../plugin"
2020-10-21 01:05:58 +02:00
import { getMediaMime, paths } from "../util"
2021-01-20 22:48:35 +01:00
import { wrapper } from "../wrapper"
2020-11-04 03:53:16 +01:00
import * as apps from "./apps"
2020-11-06 20:46:49 +01:00
import * as domainProxy from "./domainProxy"
2020-10-21 01:05:58 +02:00
import * as health from "./health"
import * as login from "./login"
2021-01-20 21:11:08 +01:00
import * as pathProxy from "./pathProxy"
2020-10-21 01:05:58 +02:00
// static is a reserved keyword.
import * as _static from "./static"
import * as update from "./update"
import * as vscode from "./vscode"
declare global {
// eslint-disable-next-line @typescript-eslint/no-namespace
namespace Express {
export interface Request {
args: DefaultedArgs
heart: Heart
}
}
}
/**
* Register all routes and middleware.
*/
export const register = async (
app: express.Express,
wsApp: express.Express,
server: http.Server,
args: DefaultedArgs,
): Promise<void> => {
2020-10-21 01:05:58 +02:00
const heart = new Heart(path.join(paths.data, "heartbeat"), async () => {
return new Promise((resolve, reject) => {
server.getConnections((error, count) => {
if (error) {
return reject(error)
}
logger.trace(plural(count, `${count} active connection`))
resolve(count > 0)
})
})
})
server.on("close", () => {
heart.dispose()
})
2020-10-21 01:05:58 +02:00
app.disable("x-powered-by")
wsApp.disable("x-powered-by")
2020-10-21 01:05:58 +02:00
app.use(cookieParser())
wsApp.use(cookieParser())
const common: express.RequestHandler = (req, _, next) => {
// /healthz|/healthz/ needs to be excluded otherwise health checks will make
// it look like code-server is always in use.
if (!/^\/healthz\/?$/.test(req.url)) {
heart.beat()
}
2020-10-21 01:05:58 +02:00
// Add common variables routes can use.
req.args = args
req.heart = heart
next()
}
app.use(common)
wsApp.use(common)
app.use(async (req, res, next) => {
2020-10-21 01:05:58 +02:00
// If we're handling TLS ensure all requests are redirected to HTTPS.
// TODO: This does *NOT* work if you have a base path since to specify the
// protocol we need to specify the whole path.
if (args.cert && !(req.connection as tls.TLSSocket).encrypted) {
return res.redirect(`https://${req.headers.host}${req.originalUrl}`)
}
// Return robots.txt.
if (req.originalUrl === "/robots.txt") {
const resourcePath = path.resolve(rootPath, "src/browser/robots.txt")
res.set("Content-Type", getMediaMime(resourcePath))
return res.send(await fs.readFile(resourcePath))
}
next()
2020-10-21 01:05:58 +02:00
})
app.use("/", domainProxy.router)
wsApp.use("/", domainProxy.wsRouter.router)
app.all("/proxy/(:port)(/*)?", (req, res) => {
2021-01-20 21:11:08 +01:00
pathProxy.proxy(req, res)
})
2021-01-20 21:11:08 +01:00
wsApp.get("/proxy/(:port)(/*)?", (req) => {
pathProxy.wsProxy(req as pluginapi.WebsocketRequest)
})
// These two routes pass through the path directly.
// So the proxied app must be aware it is running
// under /absproxy/<someport>/
app.all("/absproxy/(:port)(/*)?", (req, res) => {
2021-01-20 21:11:08 +01:00
pathProxy.proxy(req, res, {
passthroughPath: true,
})
})
2021-01-20 21:11:08 +01:00
wsApp.get("/absproxy/(:port)(/*)?", (req) => {
pathProxy.wsProxy(req as pluginapi.WebsocketRequest, {
passthroughPath: true,
})
})
app.use(bodyParser.json())
app.use(bodyParser.urlencoded({ extended: true }))
2020-10-21 01:05:58 +02:00
app.use("/", vscode.router)
wsApp.use("/", vscode.wsRouter.router)
app.use("/vscode", vscode.router)
wsApp.use("/vscode", vscode.wsRouter.router)
2020-10-21 01:05:58 +02:00
app.use("/healthz", health.router)
2020-10-21 01:05:58 +02:00
if (args.auth === AuthType.Password) {
app.use("/login", login.router)
} else {
app.all("/login", (req, res) => {
redirect(req, res, "/", {})
})
2020-10-21 01:05:58 +02:00
}
2020-10-21 01:05:58 +02:00
app.use("/static", _static.router)
app.use("/update", update.router)
2021-01-21 20:49:45 +01:00
const workingDir = args._ && args._.length > 0 ? path.resolve(args._[args._.length - 1]) : undefined
const papi = new PluginAPI(logger, process.env.CS_PLUGIN, process.env.CS_PLUGIN_PATH, workingDir)
await papi.loadPlugins()
2021-01-20 21:11:08 +01:00
papi.mount(app, wsApp)
app.use("/api/applications", apps.router(papi))
2021-01-20 22:48:35 +01:00
wrapper.onDispose(() => papi.dispose())
2020-10-21 01:05:58 +02:00
app.use(() => {
throw new HttpError("Not Found", HttpCode.NotFound)
})
const errorHandler: express.ErrorRequestHandler = async (err, req, res, next) => {
if (err.code === "ENOENT" || err.code === "EISDIR") {
err.status = HttpCode.NotFound
}
const status = err.status ?? err.statusCode ?? 500
res.status(status)
// Assume anything that explicitly accepts text/html is a user browsing a
// page (as opposed to an xhr request). Don't use `req.accepts()` since
// *every* request that I've seen (in Firefox and Chromium at least)
// includes `*/*` making it always truthy. Even for css/javascript.
if (req.headers.accept && req.headers.accept.includes("text/html")) {
const resourcePath = path.resolve(rootPath, "src/browser/pages/error.html")
res.set("Content-Type", getMediaMime(resourcePath))
2020-10-21 01:05:58 +02:00
const content = await fs.readFile(resourcePath, "utf8")
res.send(
2020-10-21 01:05:58 +02:00
replaceTemplates(req, content)
2020-10-27 23:18:44 +01:00
.replace(/{{ERROR_TITLE}}/g, status)
.replace(/{{ERROR_HEADER}}/g, status)
2020-10-21 01:05:58 +02:00
.replace(/{{ERROR_BODY}}/g, err.message),
)
} else {
res.json({
error: err.message,
...(err.details || {}),
})
2020-10-21 01:05:58 +02:00
}
2020-10-27 23:18:44 +01:00
}
app.use(errorHandler)
const wsErrorHandler: express.ErrorRequestHandler = async (err, req, res, next) => {
logger.error(`${err.message} ${err.stack}`)
2021-01-20 21:11:08 +01:00
;(req as pluginapi.WebsocketRequest).ws.end()
}
wsApp.use(wsErrorHandler)
2020-10-21 01:05:58 +02:00
}