File tree 2 files changed +30
-25
lines changed
2 files changed +30
-25
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 1
1
package server
2
2
3
3
import (
4
- "compress/gzip"
5
4
"fmt"
6
- "io"
7
5
"net/http"
8
6
"net/http/httputil"
9
7
"os"
10
8
"path/filepath"
11
- "strings"
12
9
"time"
13
10
14
11
"github.com/taybart/log"
@@ -18,28 +15,6 @@ const (
18
15
httpTimeout = 15 * time .Second
19
16
)
20
17
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
-
43
18
type Server struct {
44
19
router * http.ServeMux
45
20
c Config
You can’t perform that action at this time.
0 commit comments