From 3c06c899c588825065e87450d79c82c037f11aee Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 3 May 2024 17:24:37 -0700 Subject: [PATCH] katex_server: Fix implicit use of any. Signed-off-by: Anders Kaseorg --- web/server/katex_server.ts | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/web/server/katex_server.ts b/web/server/katex_server.ts index 609c073a20..452125d8e7 100644 --- a/web/server/katex_server.ts +++ b/web/server/katex_server.ts @@ -73,36 +73,39 @@ app.use((ctx, _next) => { ctx.status = 404; return; } - if (ctx.request.body === undefined) { + const body: unknown = ctx.request.body; + if (typeof body !== "object" || body === null) { ctx.status = 400; ctx.type = "text/plain"; ctx.body = "Missing POST body"; return; } - const given_secret = ctx.request.body.shared_secret; - if (typeof given_secret !== "string" || !compare_secret(given_secret)) { + if ( + !("shared_secret" in body) || + typeof body.shared_secret !== "string" || + !compare_secret(body.shared_secret) + ) { ctx.status = 403; ctx.type = "text/plain"; ctx.body = "Invalid 'shared_secret' argument"; return; } - const content = ctx.request.body.content; - const is_display = ctx.request.body.is_display === "true"; + const is_display = "is_display" in body && body.is_display === "true"; - if (typeof content !== "string") { + if (!("content" in body) || typeof body.content !== "string") { ctx.status = 400; ctx.type = "text/plain"; ctx.body = "Invalid 'content' argument"; return; } + const content = body.content; httpRequestSizeBytes.labels(String(is_display)).observe(Buffer.byteLength(content, "utf8")); try { - ctx.body = katex.renderToString(content, {displayMode: is_display}); - httpResponseSizeBytes - .labels(String(is_display)) - .observe(Buffer.byteLength(ctx.body, "utf8")); + const output = katex.renderToString(content, {displayMode: is_display}); + ctx.body = output; + httpResponseSizeBytes.labels(String(is_display)).observe(Buffer.byteLength(output, "utf8")); } catch (error) { if (error instanceof katex.ParseError) { ctx.status = 400;