1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
imgproxy/s3transport.go

51 lines
1.0 KiB
Go
Raw Normal View History

2018-05-26 16:22:41 +02:00
package main
import (
"fmt"
http "net/http"
2018-05-26 16:22:41 +02:00
"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session"
2018-05-26 16:22:41 +02:00
"github.com/aws/aws-sdk-go/service/s3"
)
// s3Transport implements RoundTripper for the 's3' protocol.
type s3Transport struct {
svc *s3.S3
}
func newS3Transport() http.RoundTripper {
2018-11-13 15:23:59 +02:00
s3Conf := aws.NewConfig()
if len(conf.S3Region) != 0 {
s3Conf.Region = aws.String(conf.S3Region)
2018-11-13 15:23:59 +02:00
}
if len(conf.S3Endpoint) != 0 {
s3Conf.Endpoint = aws.String(conf.S3Endpoint)
s3Conf.S3ForcePathStyle = aws.Bool(true)
2018-11-13 15:23:59 +02:00
}
return s3Transport{s3.New(session.New(), s3Conf)}
2018-05-26 16:22:41 +02:00
}
func (t s3Transport) RoundTrip(req *http.Request) (resp *http.Response, err error) {
input := &s3.GetObjectInput{
Bucket: aws.String(req.URL.Host),
Key: aws.String(req.URL.Path),
}
if len(req.URL.RawQuery) > 0 {
input.VersionId = aws.String(req.URL.RawQuery)
}
2018-05-26 16:22:41 +02:00
s3req, _ := t.svc.GetObjectRequest(input)
s3err := s3req.Send()
if s3err == nil { // resp is now filled
return s3req.HTTPResponse, nil
}
fmt.Println("s3 error", s3err)
return nil, s3err
}