Skip to content

Commit ca82862

Browse files
committed
refact: move gzip to seperate file
1 parent 5b0ba90 commit ca82862

File tree

2 files changed

+30
-25
lines changed

2 files changed

+30
-25
lines changed

server/gzip_handler.go

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
package server
2+
3+
import (
4+
"compress/gzip"
5+
"io"
6+
"net/http"
7+
"strings"
8+
)
9+
10+
type gzipResponseWriter struct {
11+
io.Writer
12+
http.ResponseWriter
13+
}
14+
15+
func (w gzipResponseWriter) Write(b []byte) (int, error) {
16+
return w.Writer.Write(b)
17+
}
18+
func gzipHandler(fn http.HandlerFunc) http.HandlerFunc {
19+
return func(w http.ResponseWriter, r *http.Request) {
20+
if !strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
21+
fn(w, r)
22+
return
23+
}
24+
w.Header().Set("Content-Encoding", "gzip")
25+
gz := gzip.NewWriter(w)
26+
defer gz.Close()
27+
gzr := gzipResponseWriter{Writer: gz, ResponseWriter: w}
28+
fn(gzr, r)
29+
}
30+
}

server/server.go

-25
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
package server
22

33
import (
4-
"compress/gzip"
54
"fmt"
6-
"io"
75
"net/http"
86
"net/http/httputil"
97
"os"
108
"path/filepath"
11-
"strings"
129
"time"
1310

1411
"github.com/taybart/log"
@@ -18,28 +15,6 @@ const (
1815
httpTimeout = 15 * time.Second
1916
)
2017

21-
type gzipResponseWriter struct {
22-
io.Writer
23-
http.ResponseWriter
24-
}
25-
26-
func (w gzipResponseWriter) Write(b []byte) (int, error) {
27-
return w.Writer.Write(b)
28-
}
29-
func gzipHandler(fn http.HandlerFunc) http.HandlerFunc {
30-
return func(w http.ResponseWriter, r *http.Request) {
31-
if !strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
32-
fn(w, r)
33-
return
34-
}
35-
w.Header().Set("Content-Encoding", "gzip")
36-
gz := gzip.NewWriter(w)
37-
defer gz.Close()
38-
gzr := gzipResponseWriter{Writer: gz, ResponseWriter: w}
39-
fn(gzr, r)
40-
}
41-
}
42-
4318
type Server struct {
4419
router *http.ServeMux
4520
c Config

0 commit comments

Comments
 (0)