all repos — website @ 38fb02f470c32cf2a3f4cb9bef540840d85f9254

My website

fix and simplify content-encoding negotiation
Alan Pearce alan@alanpearce.eu
Sun, 23 Jun 2024 19:32:40 +0200
commit

38fb02f470c32cf2a3f4cb9bef540840d85f9254

parent

b6724988aa748c78db3954abf59712ede0a49063

2 files changed, 15 insertions(+), 9 deletions(-)

jump to
M internal/website/filemap.gointernal/website/filemap.go
@@ -16,10 +16,17 @@ "github.com/pkg/errors" )
 
 type File struct {
-	filename     string
 	contentType  string
 	etag         string
 	alternatives map[string]string
+}
+
+func (f *File) AvailableEncodings() []string {
+	encs := []string{}
+	for enc := range f.alternatives {
+		encs = append(encs, enc)
+	}
+	return encs
 }
 
 var files = map[string]*File{}
@@ -49,10 +56,11 @@ if err != nil { 		return err
 	}
 	f := File{
-		filename:     fp,
-		contentType:  mime.TypeByExtension(filepath.Ext(fp)),
-		etag:         hash,
-		alternatives: map[string]string{},
+		contentType: mime.TypeByExtension(filepath.Ext(fp)),
+		etag:        hash,
+		alternatives: map[string]string{
+			"identity": fp,
+		},
 	}
 	for enc, suffix := range encodings {
 		_, err := os.Stat(fp + suffix)
M internal/website/mux.gointernal/website/mux.go
@@ -80,15 +80,13 @@ w.Header().Add("Content-Security-Policy", cfg.CSP.String()) 		for k, v := range cfg.Extra.Headers {
 			w.Header().Add(k, v)
 		}
-		enc := nego.NegotiateContentEncoding(r, "br", "gzip")
+		enc := nego.NegotiateContentEncoding(r, file.AvailableEncodings()...)
 		switch enc {
-		case "", "identity":
-			http.ServeFile(w, r, files[urlPath].filename)
 		case "br", "gzip":
 			w.Header().Add("Content-Encoding", enc)
 			w.Header().Add("Content-Type", file.contentType)
-			http.ServeFile(w, r, files[urlPath].alternatives[enc])
 		}
+		http.ServeFile(w, r, files[urlPath].alternatives[enc])
 
 		return nil
 	}))