| 123456789101112131415161718192021222324252627282930 |
- package middleware
- import (
- "strings"
- "github.com/go-macaron/gzip"
- "gopkg.in/macaron.v1"
- )
- func Gziper() macaron.Handler {
- macaronGziper := gzip.Gziper()
- return func(ctx *macaron.Context) {
- requestPath := ctx.Req.URL.RequestURI()
- // ignore datasource proxy requests
- if strings.HasPrefix(requestPath, "/api/datasources/proxy") {
- return
- }
- if strings.HasPrefix(requestPath, "/api/plugin-proxy/") {
- return
- }
- if strings.HasPrefix(requestPath, "/metrics") {
- return
- }
- ctx.Invoke(macaronGziper)
- }
- }
|