blob: bb6bcfcdde60973b4ee83f1a996b3648592988c0 (
plain)
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
|
package gzip
import (
"github.com/NYTimes/gziphandler"
rrhttp "github.com/spiral/roadrunner/service/http"
"net/http"
)
// ID contains default service name.
const ID = "gzip"
type Service struct {
cfg *Config
}
func (s *Service) Init(cfg *Config, r *rrhttp.Service) (bool, error) {
s.cfg = cfg
if !s.cfg.Enable {
return false, nil
}
r.AddMiddleware(s.middleware)
return true, nil
}
func (s *Service) middleware(f http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
gziphandler.GzipHandler(f).ServeHTTP(w, r)
}
}
|