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

156 lines
3.5 KiB
Go
Raw Normal View History

2017-06-20 15:58:55 +02:00
package main
import (
"bytes"
2018-10-05 17:17:36 +02:00
"context"
"crypto/tls"
2017-06-20 15:58:55 +02:00
"errors"
2017-07-05 14:28:22 +02:00
"fmt"
2017-06-20 15:58:55 +02:00
"image"
2017-07-01 22:26:32 +02:00
"io"
2017-07-05 14:28:22 +02:00
"io/ioutil"
2017-06-20 15:58:55 +02:00
"net/http"
2018-10-05 17:17:36 +02:00
"sync"
2017-07-05 14:28:22 +02:00
"time"
2017-06-20 15:58:55 +02:00
_ "image/gif"
_ "image/jpeg"
_ "image/png"
2017-07-05 23:01:35 +02:00
_ "golang.org/x/image/webp"
2017-06-20 15:58:55 +02:00
)
2018-10-05 17:17:36 +02:00
var (
downloadClient *http.Client
imageTypeCtxKey = ctxKey("imageType")
imageDataCtxKey = ctxKey("imageData")
2018-10-05 22:29:55 +02:00
errSourceDimensionsTooBig = errors.New("Source image dimensions are too big")
errSourceResolutionTooBig = errors.New("Source image resolution are too big")
errSourceImageTypeNotSupported = errors.New("Source image type not supported")
2018-10-05 17:17:36 +02:00
)
var downloadBufPool = sync.Pool{
New: func() interface{} {
return new(bytes.Buffer)
},
}
2017-07-05 14:28:22 +02:00
2017-11-13 22:28:04 +02:00
func initDownloading() {
2018-02-02 14:46:30 +02:00
transport := &http.Transport{
Proxy: http.ProxyFromEnvironment,
}
if conf.IgnoreSslVerification {
transport.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
}
if conf.LocalFileSystemRoot != "" {
transport.RegisterProtocol("local", http.NewFileTransport(http.Dir(conf.LocalFileSystemRoot)))
}
2018-05-26 16:22:41 +02:00
if conf.S3Enabled {
transport.RegisterProtocol("s3", newS3Transport())
2018-05-26 16:22:41 +02:00
}
2018-10-30 14:12:56 +02:00
if len(conf.GCSKey) > 0 {
transport.RegisterProtocol("gs", newGCSTransport())
}
2017-11-13 22:28:04 +02:00
downloadClient = &http.Client{
2018-02-02 14:46:30 +02:00
Timeout: time.Duration(conf.DownloadTimeout) * time.Second,
Transport: transport,
2017-11-13 22:28:04 +02:00
}
}
2018-11-08 12:34:21 +02:00
func checkDimensions(width, height int) error {
2018-11-15 15:25:53 +02:00
if conf.MaxSrcDimension > 0 && (width > conf.MaxSrcDimension || height > conf.MaxSrcDimension) {
2018-11-08 12:34:21 +02:00
return errSourceDimensionsTooBig
}
if width*height > conf.MaxSrcResolution {
return errSourceResolutionTooBig
}
return nil
}
2017-09-27 10:42:49 +02:00
func checkTypeAndDimensions(r io.Reader) (imageType, error) {
imgconf, imgtypeStr, err := image.DecodeConfig(r)
2017-06-20 15:58:55 +02:00
if err != nil {
return imageTypeUnknown, err
2017-06-20 15:58:55 +02:00
}
2018-11-08 12:34:21 +02:00
imgtype, imgtypeOk := imageTypes[imgtypeStr]
2017-10-06 22:54:24 +02:00
if !imgtypeOk || !vipsTypeSupportLoad[imgtype] {
2018-10-05 22:29:55 +02:00
return imageTypeUnknown, errSourceImageTypeNotSupported
2017-06-20 15:58:55 +02:00
}
2017-09-27 10:42:49 +02:00
2018-11-08 12:34:21 +02:00
if err = checkDimensions(imgconf.Width, imgconf.Height); err != nil {
return imageTypeUnknown, err
}
2017-09-27 10:42:49 +02:00
return imgtype, nil
2017-06-20 15:58:55 +02:00
}
2018-10-05 17:17:36 +02:00
func readAndCheckImage(ctx context.Context, res *http.Response) (context.Context, context.CancelFunc, error) {
buf := downloadBufPool.Get().(*bytes.Buffer)
cancel := func() {
buf.Reset()
downloadBufPool.Put(buf)
}
2018-11-08 12:31:55 +02:00
imgtype, err := checkTypeAndDimensions(io.TeeReader(res.Body, buf))
2017-09-27 10:42:49 +02:00
if err != nil {
2018-10-05 17:17:36 +02:00
return ctx, cancel, err
2017-06-20 15:58:55 +02:00
}
2018-11-08 12:31:55 +02:00
if _, err = buf.ReadFrom(res.Body); err == nil {
2018-10-05 17:17:36 +02:00
ctx = context.WithValue(ctx, imageTypeCtxKey, imgtype)
2018-11-08 12:31:55 +02:00
ctx = context.WithValue(ctx, imageDataCtxKey, buf)
2017-06-20 15:58:55 +02:00
}
2018-10-05 17:17:36 +02:00
return ctx, cancel, err
2017-06-20 15:58:55 +02:00
}
2018-10-05 17:17:36 +02:00
func downloadImage(ctx context.Context) (context.Context, context.CancelFunc, error) {
2018-11-02 17:35:21 +02:00
url := getImageURL(ctx)
2018-04-26 13:38:40 +02:00
2018-10-25 15:24:34 +02:00
if newRelicEnabled {
newRelicCancel := startNewRelicSegment(ctx, "Downloading image")
defer newRelicCancel()
}
2018-10-29 14:04:47 +02:00
if prometheusEnabled {
defer startPrometheusDuration(prometheusDownloadDuration)()
}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
return ctx, func() {}, err
}
req.Header.Set("User-Agent", conf.UserAgent)
res, err := downloadClient.Do(req)
2017-06-20 15:58:55 +02:00
if err != nil {
2018-10-05 17:17:36 +02:00
return ctx, func() {}, err
2017-06-20 15:58:55 +02:00
}
defer res.Body.Close()
2017-07-05 14:28:22 +02:00
if res.StatusCode != 200 {
body, _ := ioutil.ReadAll(res.Body)
2018-10-05 17:17:36 +02:00
return ctx, func() {}, fmt.Errorf("Can't download image; Status: %d; %s", res.StatusCode, string(body))
2017-07-05 14:28:22 +02:00
}
2018-10-05 17:17:36 +02:00
return readAndCheckImage(ctx, res)
}
func getImageType(ctx context.Context) imageType {
return ctx.Value(imageTypeCtxKey).(imageType)
}
func getImageData(ctx context.Context) *bytes.Buffer {
return ctx.Value(imageDataCtxKey).(*bytes.Buffer)
2017-06-20 15:58:55 +02:00
}