blob: 2ba95158f07a6be231eaaff180bc40d26dfe1c71 (
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
33
34
35
36
37
38
|
package gzip
import (
"errors"
"net/http"
"github.com/NYTimes/gziphandler"
rrhttp "github.com/spiral/roadrunner/service/http"
)
// ID contains default service name.
const ID = "gzip"
var httpNotInitialized = errors.New("http service should be defined properly in config to use 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
}
if r == nil {
return false, httpNotInitialized
}
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)
}
}
|