-
Notifications
You must be signed in to change notification settings - Fork 26
/
httpMiddlewares.go
99 lines (91 loc) · 2.86 KB
/
httpMiddlewares.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package main
import (
"net/http"
"net/url"
"slices"
"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 {
// 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")
w.Header().Set("Content-Security-Policy", csp)
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 != "" {
w.Header().Set("Onion-Location", a.torAddress+r.URL.RequestURI())
}
next.ServeHTTP(w, r)
})
}
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 !slices.Contains(paramsToKeep, param) {
query.Del(param)
}
}
r.URL.RawQuery = query.Encode()
next.ServeHTTP(w, r)
})
}
}