mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-02-07 06:19:02 -06:00
38 lines
857 B
Go
38 lines
857 B
Go
package widget
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
"log/slog"
|
|
"net/http"
|
|
|
|
"github.com/PrivateCaptcha/PrivateCaptcha/pkg/common"
|
|
)
|
|
|
|
//go:embed static
|
|
var staticFiles embed.FS
|
|
|
|
func Static(gitHash string) http.HandlerFunc {
|
|
sub, _ := fs.Sub(staticFiles, "static")
|
|
srv := http.FileServer(http.FS(sub))
|
|
|
|
etagHeaders := make(map[string][]string)
|
|
if len(gitHash) > 0 {
|
|
etagHeaders[common.HeaderETag] = []string{gitHash}
|
|
}
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
slog.DebugContext(r.Context(), "Static request", "path", r.URL.Path)
|
|
|
|
if etag := r.Header.Get(common.HeaderIfNoneMatch); len(etag) > 0 && (etag == gitHash) {
|
|
w.WriteHeader(http.StatusNotModified)
|
|
return
|
|
}
|
|
|
|
common.WriteHeaders(w, common.CachedHeaders)
|
|
common.WriteHeaders(w, common.CorsAllowAllHeaders)
|
|
common.WriteHeaders(w, etagHeaders)
|
|
srv.ServeHTTP(w, r)
|
|
}
|
|
}
|