summaryrefslogtreecommitdiff
path: root/plugins/gzip/plugin.go
blob: 05f1eb639dd0e529f793819d784d76b6df306e72 (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
package gzip

import (
	"net/http"

	"github.com/klauspost/compress/gzhttp"
)

const PluginName = "gzip"

type Plugin struct{}

func (g *Plugin) Init() error {
	return nil
}

func (g *Plugin) Middleware(next http.Handler) http.Handler {
	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		gzhttp.GzipHandler(next).ServeHTTP(w, r)
	})
}

// Available interface implementation
func (g *Plugin) Available() {}

func (g *Plugin) Name() string {
	return PluginName
}