GoBlog/httpMiddlewares.go

100 lines
2.9 KiB
Go
Raw Permalink Normal View History

package main
import (
"net/http"
"net/url"
2022-11-27 14:06:43 +00:00
"github.com/samber/lo"
"github.com/tiptophelmet/cspolicy"
"github.com/tiptophelmet/cspolicy/directives"
"github.com/tiptophelmet/cspolicy/directives/constraint"
"github.com/tiptophelmet/cspolicy/src"
)
func noIndexHeader(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("X-Robots-Tag", "noindex")
next.ServeHTTP(w, r)
})
}
func fixHTTPHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
r.URL.RawPath = ""
next.ServeHTTP(w, r)
})
}
func headAsGetHandler(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.Method == http.MethodHead {
2022-01-31 10:31:16 +00:00
// Clone request and change method
newReq := new(http.Request)
*newReq = *r
newReq.Method = http.MethodGet
// Serve new request
next.ServeHTTP(w, newReq)
return
}
next.ServeHTTP(w, r)
})
}
func (a *goBlog) securityHeaders(next http.Handler) http.Handler {
// Build CSP domains list
allowedDomains := []string{}
if mp := a.cfg.Micropub.MediaStorage; mp != nil && mp.MediaURL != "" {
if u, err := url.Parse(mp.MediaURL); err == nil {
allowedDomains = append(allowedDomains, u.Hostname())
}
}
allowedDomains = append(allowedDomains, a.cfg.Server.CSPDomains...)
defaultSrcList := []src.SourceVal{src.Self(), src.Scheme("blob:")}
for _, d := range allowedDomains {
defaultSrcList = append(defaultSrcList, src.Host(d))
}
imgSrcList := []src.SourceVal{src.Self(), src.Scheme("data:")}
for _, d := range allowedDomains {
imgSrcList = append(imgSrcList, src.Host(d))
}
fac := &constraint.FrameAncestorsConstraint{}
fac.Sources(src.None())
csp := cspolicy.Build(
directives.DefaultSrc(defaultSrcList...),
directives.ImgSrc(imgSrcList...),
directives.FrameAncestors(fac),
)
// Return handler
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Strict-Transport-Security", "max-age=31536000;")
w.Header().Set("Referrer-Policy", "no-referrer")
w.Header().Set("X-Content-Type-Options", "nosniff")
2023-04-05 06:22:44 +00:00
w.Header().Set("Content-Security-Policy", csp)
2021-08-02 19:10:38 +00:00
next.ServeHTTP(w, r)
})
}
func (a *goBlog) addOnionLocation(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if a.torAddress != "" {
2022-11-27 14:06:43 +00:00
w.Header().Set("Onion-Location", a.torAddress+r.URL.RequestURI())
}
next.ServeHTTP(w, r)
})
}
2022-11-27 14:06:43 +00:00
func keepSelectedQueryParams(paramsToKeep ...string) func(http.Handler) http.Handler {
return func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
query := r.URL.Query()
for param := range query {
if !lo.Contains(paramsToKeep, param) {
query.Del(param)
}
}
r.URL.RawQuery = query.Encode()
next.ServeHTTP(w, r)
})
}
}