123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- package main
- import (
- "bytes"
- "context"
- "crypto/tls"
- "fmt"
- "image"
- "io"
- "io/ioutil"
- "net/http"
- "sync"
- "time"
- _ "image/gif"
- _ "image/jpeg"
- _ "image/png"
- _ "github.com/mat/besticon/ico"
- )
- var (
- downloadClient *http.Client
- imageTypeCtxKey = ctxKey("imageType")
- imageDataCtxKey = ctxKey("imageData")
- errSourceDimensionsTooBig = newError(422, "Source image dimensions are too big", "Invalid source image")
- errSourceResolutionTooBig = newError(422, "Source image resolution are too big", "Invalid source image")
- errSourceImageTypeNotSupported = newError(422, "Source image type not supported", "Invalid source image")
- )
- const msgSourceImageIsUnreachable = "Source image is unreachable"
- var downloadBufPool = sync.Pool{
- New: func() interface{} {
- return new(bytes.Buffer)
- },
- }
- func initDownloading() {
- 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)))
- }
- if conf.S3Enabled {
- transport.RegisterProtocol("s3", newS3Transport())
- }
- if len(conf.GCSKey) > 0 {
- transport.RegisterProtocol("gs", newGCSTransport())
- }
- downloadClient = &http.Client{
- Timeout: time.Duration(conf.DownloadTimeout) * time.Second,
- Transport: transport,
- }
- }
- func checkDimensions(width, height int) error {
- if conf.MaxSrcDimension > 0 && (width > conf.MaxSrcDimension || height > conf.MaxSrcDimension) {
- return errSourceDimensionsTooBig
- }
- if width*height > conf.MaxSrcResolution {
- return errSourceResolutionTooBig
- }
- return nil
- }
- func checkTypeAndDimensions(r io.Reader) (imageType, error) {
- imgconf, imgtypeStr, err := image.DecodeConfig(r)
- if err != nil {
- return imageTypeUnknown, errSourceImageTypeNotSupported
- }
- imgtype, imgtypeOk := imageTypes[imgtypeStr]
- if !imgtypeOk || !vipsTypeSupportLoad[imgtype] {
- return imageTypeUnknown, errSourceImageTypeNotSupported
- }
- if err = checkDimensions(imgconf.Width, imgconf.Height); err != nil {
- return imageTypeUnknown, err
- }
- return imgtype, nil
- }
- 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)
- }
- imgtype, err := checkTypeAndDimensions(io.TeeReader(res.Body, buf))
- if err != nil {
- return ctx, cancel, err
- }
- if _, err = buf.ReadFrom(res.Body); err != nil {
- return ctx, cancel, newError(404, err.Error(), msgSourceImageIsUnreachable)
- }
- ctx = context.WithValue(ctx, imageTypeCtxKey, imgtype)
- ctx = context.WithValue(ctx, imageDataCtxKey, buf)
- return ctx, cancel, nil
- }
- func downloadImage(ctx context.Context) (context.Context, context.CancelFunc, error) {
- url := getImageURL(ctx)
- if newRelicEnabled {
- newRelicCancel := startNewRelicSegment(ctx, "Downloading image")
- defer newRelicCancel()
- }
- if prometheusEnabled {
- defer startPrometheusDuration(prometheusDownloadDuration)()
- }
- req, err := http.NewRequest("GET", url, nil)
- if err != nil {
- return ctx, func() {}, newError(404, err.Error(), msgSourceImageIsUnreachable)
- }
- req.Header.Set("User-Agent", conf.UserAgent)
- res, err := downloadClient.Do(req)
- if err != nil {
- return ctx, func() {}, newError(404, err.Error(), msgSourceImageIsUnreachable)
- }
- defer res.Body.Close()
- if res.StatusCode != 200 {
- body, _ := ioutil.ReadAll(res.Body)
- msg := fmt.Sprintf("Can't download image; Status: %d; %s", res.StatusCode, string(body))
- return ctx, func() {}, newError(404, msg, msgSourceImageIsUnreachable)
- }
- 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)
- }
|