about summary refs log tree commit diff stats
path: root/src/app.ts
blob: 6e714f9873350efe6bea2eee0648779ffbcd9311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
import path from "node:path";
import fs from "node:fs/promises";
import type { Stats } from "node:fs";
import type { BunFile, Serve } from "bun";
import * as Sentry from "@sentry/node";
import prom from "bun-prometheus-client";
import log from "loglevel";
import { keepAwake } from "./sleep.ts";

import config from "./config";

log.setLevel((import.meta.env["LOG_LEVEL"] || "info") as log.LogLevelDesc);

Sentry.init({
  release: `homestead@${import.meta.env["FLY_MACHINE_VERSION"]}`,
  tracesSampleRate: 1.0,
});

const expectedHostURL = new URL(
  import.meta.env.NODE_ENV === "production"
    ? config.base_url
    : "http://localhost:3000",
);
const defaultHeaders = {
  ...config.extra.headers,
  vary: "Accept-Encoding",
};

const autoSleep =
  import.meta.env.NODE_ENV === "production" &&
  import.meta.env["FLY_REGION"] !== import.meta.env["PRIMARY_REGION"];

type File = {
  filename: string;
  handle: BunFile;
  relPath: string;
  type: string;
  size: number;
  mtime: Date;
  etag: string;
};

const metrics = {
  requests: new prom.Counter({
    name: "homestead_requests",
    help: "Number of requests by path, status code, and method",
    labelNames: ["status_code", "content_encoding", "cache_basis"] as const,
  }),
  requestDuration: new prom.Histogram({
    name: "homestead_request_duration_seconds",
    help: "Request duration in seconds",
    labelNames: ["path"] as const,
  }),
};

let files = new Map<string, File>();

async function hashFile(file: BunFile): Promise<string> {
  return new Bun.CryptoHasher("sha256")
    .update(await file.arrayBuffer())
    .digest("base64");
}

async function registerFile(
  path: string,
  pathname: string,
  filename: string,
  stat: Stats,
): Promise<void> {
  pathname = "/" + (pathname === "." || pathname === "./" ? "" : pathname);

  if (files.get(pathname) !== undefined) {
    log.warn("File already registered:", pathname);
  }
  const handle = Bun.file(filename);

  files.set(pathname, {
    filename,
    relPath: "/" + path,
    handle: handle,
    type: pathname.startsWith("/feed-styles.xsl") ? "text/xsl" : handle.type,
    size: stat.size,
    mtime: stat.mtime,
    etag: `W/"${await hashFile(handle)}"`,
  });
}

async function walkDirectory(root: string) {
  for (let relPath of await fs.readdir(root, { recursive: true })) {
    const absPath = path.join(root, relPath);
    const stat = await fs.stat(absPath);
    if (stat.isFile()) {
      if (relPath.includes("index.html")) {
        const dir = relPath.replace("index.html", "");
        await registerFile(relPath, dir, absPath, stat);
      } else {
        await registerFile(relPath, relPath, absPath, stat);
      }
    }
  }
}

await walkDirectory("public/");

async function serveFile(
  file: File,
  statusCode: number = 200,
  extraHeaders: Record<string, string> = {},
): Promise<Response> {
  return new Response(await file.handle.arrayBuffer(), {
    headers: {
      "last-modified": file.mtime.toUTCString(),
      ...extraHeaders,
      ...defaultHeaders,
    },
    status: statusCode,
  });
}

function parseIfModifiedSinceHeader(header: string | null): number {
  return header ? new Date(header).getTime() + 999 : 0;
}

export const metricsServer = {
  port: 9091,
  fetch: async function (request) {
    const pathname = new URL(request.url).pathname;
    switch (pathname) {
      case "/metrics":
        return new Response(await prom.register.metrics());
      default:
        return new Response("", { status: 404 });
    }
  },
} satisfies Serve;

export const server = {
  fetch: async function (request) {
    const url = new URL(request.url);
    const pathname = url.pathname.replace(/\/\/+/g, "/");
    const hostname = request.headers.get("host")?.toLowerCase() || "unknown";
    const endTimer = metrics.requestDuration.startTimer({ path: pathname });
    let status;
    let newpath;
    try {
      if (pathname === "/health") {
        return new Response("OK", { status: (status = 200) });
      } else if (
        config.redirect_other_hostnames &&
        hostname !== expectedHostURL.host
      ) {
        metrics.requests.inc({
          content_encoding: "identity",
          status_code: (status = 301),
        });
        return new Response("", {
          status,
          headers: {
            location: new URL(pathname, expectedHostURL).toString(),
          },
        });
      }
      const { base, ext } = path.parse(pathname);
      const file = files.get(pathname);
      let contentEncoding = "identity";
      let suffix = "";
      if (
        ![".br", ".zst", ".gz"].includes(ext || base) &&
        !pathname.startsWith("/404.html") &&
        file &&
        (await file.handle.exists())
      ) {
        let etagMatch = request.headers.get("if-none-match") === file.etag;
        let mtimeMatch =
          parseIfModifiedSinceHeader(
            request.headers.get("if-modified-since"),
          ) >= file?.mtime.getTime();
        if (etagMatch || mtimeMatch) {
          metrics.requests.inc({
            content_encoding: contentEncoding,
            status_code: (status = 304),
            cache_basis: etagMatch ? "etag" : "mtime",
          });
          return new Response("", { status: status, headers: defaultHeaders });
        }
        const encodings = (request.headers.get("accept-encoding") || "")
          .split(",")
          .map((x) => x.trim().toLowerCase());
        if (encodings.includes("br") && files.has(pathname + ".br")) {
          contentEncoding = "br";
          suffix = ".br";
        } else if (encodings.includes("zstd") && files.has(pathname + ".zst")) {
          contentEncoding = "zstd";
          suffix = ".zst";
        } else if (encodings.includes("gzip") && files.has(pathname + ".gz")) {
          contentEncoding = "gzip";
          suffix = ".gz";
        }

        status = 200;
        metrics.requests.inc({
          status_code: status,
          content_encoding: contentEncoding,
        });
        const endFile = files.get(pathname + suffix);
        if (!endFile) {
          throw new Error(`File ${pathname} not found`);
        }
        return serveFile(endFile, status, {
          "content-encoding": contentEncoding,
          "content-type": file.type,
          // weak etags can be used for multiple equivalent representations
          etag: file.etag,
        });
      } else {
        if (files.has(pathname + "/")) {
          newpath = pathname + "/";
          metrics.requests.inc({
            content_encoding: contentEncoding,
            status_code: (status = 302),
          });
          return new Response("", {
            status: status,
            headers: { location: newpath },
          });
        } else if (
          pathname.endsWith("index.html") &&
          files.has(pathname.replace(/index.html$/, ""))
        ) {
          newpath = pathname.replace(/index.html$/, "");
          metrics.requests.inc({
            content_encoding: contentEncoding,
            status_code: (status = 302),
          });
          return new Response("", {
            status: status,
            headers: { location: newpath },
          });
        }
        status = 404;
        const notfound = files.get("/404.html");
        if (!request.headers.get("accept")?.split(",").includes("text/html")) {
          return new Response("404 Not Found", {
            status,
            headers: defaultHeaders,
          });
        }
        if (notfound) {
          return serveFile(notfound, status, {
            "content-type": "text/html; charset=utf-8",
          });
        } else {
          log.warn("404.html not found");
          return new Response("404 Not Found", {
            status: status,
            headers: { "content-type": "text/plain", ...defaultHeaders },
          });
        }
      }
    } catch (error) {
      metrics.requests.inc({
        status_code: status,
        content_encoding: "identity",
      });
      Sentry.captureException(error);
      log.error("Error", error);
      return new Response("Something went wrong", { status: status });
    } finally {
      if (status === 200) {
        const seconds = endTimer();
        metrics.requestDuration.observe(seconds);
      }
      if (autoSleep && pathname !== "/health") {
        keepAwake();
      }
    }
  },
} satisfies Serve;

if (autoSleep) {
  keepAwake();
}

export default server;