-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgzipper.go
83 lines (76 loc) · 1.79 KB
/
gzipper.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
package httputil
import (
"compress/gzip"
"log"
"net/http"
"strings"
"sync"
)
// Compresses the response.
func Gzipper(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if !strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
h.ServeHTTP(w, r)
return
}
g := pool.Get().(*gzipResponseWriter)
g.status = 0
g.wroteHeader = false
g.ResponseWriter = w
g.w.Reset(w)
defer func() {
// g.w.Close will write a footer even if no data has been written.
// StatusNotModified and StatusNoContent expect an empty body so don't close it.
if g.status != http.StatusNotModified && g.status != http.StatusNoContent {
if err := g.w.Close(); err != nil {
log.Printf("ERROR: %v", err)
}
}
pool.Put(g)
}()
h.ServeHTTP(g, r)
})
}
// Writes gzip compressed data (used by Gzipper).
type gzipResponseWriter struct {
http.ResponseWriter
status int
wroteHeader bool
w *gzip.Writer
}
var (
pool = sync.Pool{
New: func() interface{} {
w, _ := gzip.NewWriterLevel(nil, gzip.BestSpeed)
return &gzipResponseWriter{w: w}
},
}
)
func (g *gzipResponseWriter) Write(b []byte) (int, error) {
h := g.Header()
if _, ok := h["Content-Type"]; !ok {
h.Set("Content-Type", http.DetectContentType(b))
}
if !g.wroteHeader {
g.WriteHeader(http.StatusOK)
}
return g.w.Write(b)
}
func (g *gzipResponseWriter) WriteHeader(code int) {
g.wroteHeader = true
g.status = code
if g.status != http.StatusNotModified && g.status != http.StatusNoContent {
h := g.Header()
h.Del("Content-Length")
h.Set("Content-Encoding", "gzip")
}
g.ResponseWriter.WriteHeader(code)
}
func (g *gzipResponseWriter) Flush() {
if g.w != nil {
g.w.Flush()
}
if f, ok := g.ResponseWriter.(http.Flusher); ok {
f.Flush()
}
}