all repos — website @ 135319739943f4f036f77a70db2a96d4249bbd43

My website

Override content-type for /feed-styles/
Alan Pearce alan@alanpearce.eu
Sat, 16 Sep 2023 08:08:43 +0200
commit

135319739943f4f036f77a70db2a96d4249bbd43

parent

89d211a3cc537aaba08667ebd0c16cd2a54ec960

1 files changed, 7 insertions(+), 4 deletions(-)

jump to
M src/index.tssrc/index.ts
@@ -24,6 +24,7 @@ filename: string;   handle: BunFile;
   relPath: string;
   headers?: Record<string, string>;
+  type: string;
   size: number;
   mtime: Date;
 };
@@ -67,10 +68,12 @@   if (files.get(pathname) !== undefined) {
     console.warn("File already registered:", pathname);
   }
+  const handle = Bun.file(filename);
   files.set(pathname, {
     filename,
     relPath: "/" + path,
-    handle: Bun.file(filename),
+    handle: handle,
+    type: pathname.startsWith("/feed-styles") ? "text/xsl" : handle.type,
     headers:
       pathname === "/404.html"
         ? Object.assign({}, defaultHeaders, { "cache-control": "no-cache" })
@@ -185,7 +188,7 @@ span.setTag("http.encoding", "br");           span.setTag("http.status_code", 200);
           return serveFile(files.get(file.relPath + ".br"), 200, {
             "content-encoding": "br",
-            "content-type": file.handle.type,
+            "content-type": file.type,
           });
         } else if (
           encodings.includes("zstd") &&
@@ -195,7 +198,7 @@ span.setTag("http.encoding", "zstd");           span.setTag("http.status_code", 200);
           return serveFile(files.get(file.relPath + ".zst"), 200, {
             "content-encoding": "zstd",
-            "content-type": file.handle.type,
+            "content-type": file.type,
           });
         } else if (
           encodings.includes("gzip") &&
@@ -205,7 +208,7 @@ span.setTag("http.encoding", "gzip");           span.setTag("http.status_code", 200);
           return serveFile(files.get(file.relPath + ".gz"), 200, {
             "content-encoding": "gzip",
-            "content-type": file.handle.type,
+            "content-type": file.type,
           });
         }
         span.setTag("http.encoding", "identity");