1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-29 08:22:11 +02:00
imgproxy/etag.go

50 lines
833 B
Go
Raw Normal View History

package main
import (
2018-10-05 18:20:29 +02:00
"context"
"crypto/sha256"
2018-10-05 21:45:14 +02:00
"encoding/hex"
"encoding/json"
"hash"
"sync"
)
2018-10-05 22:29:55 +02:00
var errNotModified = newError(304, "Not modified", "Not modified")
2018-10-05 21:45:14 +02:00
type eTagCalc struct {
hash hash.Hash
enc *json.Encoder
}
var eTagCalcPool = sync.Pool{
New: func() interface{} {
h := sha256.New()
enc := json.NewEncoder(h)
enc.SetEscapeHTML(false)
enc.SetIndent("", "")
return &eTagCalc{h, enc}
},
}
2018-10-05 18:20:29 +02:00
func calcETag(ctx context.Context) []byte {
2018-10-05 21:45:14 +02:00
c := eTagCalcPool.Get().(*eTagCalc)
defer eTagCalcPool.Put(c)
c.hash.Reset()
c.hash.Write(getImageData(ctx).Bytes())
footprint := c.hash.Sum(nil)
c.hash.Reset()
c.hash.Write(footprint)
c.hash.Write([]byte(version))
c.enc.Encode(conf)
c.enc.Encode(getProcessingOptions(ctx))
2018-10-05 21:45:14 +02:00
etag := make([]byte, 64)
hex.Encode(etag, c.hash.Sum(nil))
2018-10-05 21:45:14 +02:00
return etag
}