mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-01-08 10:45:04 +02:00
73 lines
1.7 KiB
Go
73 lines
1.7 KiB
Go
package azure
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/Azure/azure-storage-blob-go/azblob"
|
|
"github.com/imgproxy/imgproxy/v3/config"
|
|
)
|
|
|
|
type transport struct {
|
|
serviceURL *azblob.ServiceURL
|
|
}
|
|
|
|
func New() (http.RoundTripper, error) {
|
|
credential, err := azblob.NewSharedKeyCredential(config.ABSName, config.ABSKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
pipeline := azblob.NewPipeline(credential, azblob.PipelineOptions{})
|
|
|
|
endpoint := config.ABSEndpoint
|
|
if len(endpoint) == 0 {
|
|
endpoint = fmt.Sprintf("https://%s.blob.core.windows.net", config.ABSName)
|
|
}
|
|
endpointURL, err := url.Parse(endpoint)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
serviceURL := azblob.NewServiceURL(*endpointURL, pipeline)
|
|
|
|
return transport{&serviceURL}, nil
|
|
}
|
|
|
|
func (t transport) RoundTrip(req *http.Request) (resp *http.Response, err error) {
|
|
containerURL := t.serviceURL.NewContainerURL(strings.ToLower(req.URL.Host))
|
|
blobURL := containerURL.NewBlockBlobURL(strings.TrimPrefix(req.URL.Path, "/"))
|
|
|
|
get, err := blobURL.Download(context.Background(), 0, azblob.CountToEnd, azblob.BlobAccessConditions{}, false, azblob.ClientProvidedKeyOptions{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if config.ETagEnabled {
|
|
etag := string(get.ETag())
|
|
|
|
if etag == req.Header.Get("If-None-Match") {
|
|
if body := get.Response().Body; body != nil {
|
|
get.Response().Body.Close()
|
|
}
|
|
|
|
return &http.Response{
|
|
StatusCode: http.StatusNotModified,
|
|
Proto: "HTTP/1.0",
|
|
ProtoMajor: 1,
|
|
ProtoMinor: 0,
|
|
Header: make(http.Header),
|
|
ContentLength: 0,
|
|
Body: nil,
|
|
Close: false,
|
|
Request: req,
|
|
}, nil
|
|
}
|
|
}
|
|
|
|
return get.Response(), nil
|
|
}
|