Configure static browser cache

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-04-30 09:37:54 -07:00
parent 329d52f9c4
commit 06dd3439c0
2 changed files with 115 additions and 4 deletions

View File

@@ -15,8 +15,13 @@
package web
import (
"crypto/md5"
"encoding/hex"
"fmt"
"io/fs"
"net/http"
"strings"
"time"
"github.com/getprobo/probo/apps/console"
)
@@ -24,6 +29,7 @@ import (
type Server struct {
spaFS http.FileSystem
indexContent []byte
indexETag string
}
func NewServer() (*Server, error) {
@@ -49,9 +55,14 @@ func NewServer() (*Server, error) {
return nil, err
}
// Generate ETag for index.html
hash := md5.Sum(indexContent)
indexETag := hex.EncodeToString(hash[:])
return &Server{
spaFS: http.FS(subFS),
indexContent: indexContent,
indexETag: indexETag,
}, nil
}
@@ -61,14 +72,62 @@ func (s *Server) ServeSPA(w http.ResponseWriter, r *http.Request) {
f, err := s.spaFS.Open(path)
if err == nil {
defer f.Close()
info, err := f.Stat()
if err != nil {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
return
}
etag := fmt.Sprintf(`"%x-%x"`, info.Size(), info.ModTime().Unix())
lastModified := info.ModTime().Format(http.TimeFormat)
w.Header().Set("ETag", etag)
w.Header().Set("Last-Modified", lastModified)
if matchETag := r.Header.Get("If-None-Match"); matchETag != "" {
if matchETag == etag {
w.WriteHeader(http.StatusNotModified)
return
}
}
if modifiedSince := r.Header.Get("If-Modified-Since"); modifiedSince != "" {
if t, err := time.Parse(http.TimeFormat, modifiedSince); err == nil {
if info.ModTime().Unix() <= t.Unix() {
w.WriteHeader(http.StatusNotModified)
return
}
}
}
if strings.HasSuffix(path, ".js") || strings.HasSuffix(path, ".css") ||
strings.HasSuffix(path, ".png") || strings.HasSuffix(path, ".jpg") ||
strings.HasSuffix(path, ".svg") || strings.HasSuffix(path, ".woff2") {
w.Header().Set("Cache-Control", "public, max-age=31536000, immutable") // 1 year
} else {
w.Header().Set("Cache-Control", "public, max-age=3600") // 1 hour
}
w.Header().Set("Transfer-Encoding", "chunked")
// Serve the file
http.FileServer(s.spaFS).ServeHTTP(w, r)
return
}
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.Header().Set("ETag", `"`+s.indexETag+`"`)
w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
if r.Header.Get("If-None-Match") == `"`+s.indexETag+`"` {
w.WriteHeader(http.StatusNotModified)
return
}
w.Header().Set("Cache-Control", "no-cache")
w.Header().Set("Pragma", "no-cache")
w.Header().Set("Expires", "0")
w.Header().Set("Content-Type", "text/html; charset=utf-8")
w.WriteHeader(http.StatusOK)
w.Write(s.indexContent)
}