summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/encode/brotli/brotli.go
blob: dc4559e8db1a6505a232cb9b15ae473f0b099f21 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package caddybrotli

import (
	"fmt"

	"github.com/andybalholm/brotli"
	"github.com/caddyserver/caddy"
	"github.com/caddyserver/caddy/modules/caddyhttp/encode"
)

func init() {
	caddy.RegisterModule(caddy.Module{
		Name: "http.encoders.brotli",
		New:  func() interface{} { return new(Brotli) },
	})
}

// Brotli can create brotli encoders. Note that brotli
// is not known for great encoding performance.
type Brotli struct {
	Quality *int `json:"quality,omitempty"`
}

// Validate validates b's configuration.
func (b Brotli) Validate() error {
	if b.Quality != nil {
		quality := *b.Quality
		if quality < brotli.BestSpeed {
			return fmt.Errorf("quality too low; must be >= %d", brotli.BestSpeed)
		}
		if quality > brotli.BestCompression {
			return fmt.Errorf("quality too high; must be <= %d", brotli.BestCompression)
		}
	}
	return nil
}

// AcceptEncoding returns the name of the encoding as
// used in the Accept-Encoding request headers.
func (Brotli) AcceptEncoding() string { return "br" }

// NewEncoder returns a new brotli writer.
func (b Brotli) NewEncoder() encode.Encoder {
	quality := brotli.DefaultCompression
	if b.Quality != nil {
		quality = *b.Quality
	}
	return brotli.NewWriterLevel(nil, quality)
}

// Interface guards
var (
	_ encode.Encoding = (*Brotli)(nil)
	_ caddy.Validator = (*Brotli)(nil)
)