-
Notifications
You must be signed in to change notification settings - Fork 489
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
implement ContentServerDataStore for azure blob storage too #1234
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -21,6 +21,7 @@ import ( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"errors" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"io" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"net/http" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"sort" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"strings" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -67,6 +68,8 @@ type AzBlob interface { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Upload(ctx context.Context, body io.ReadSeeker) error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Download returns a readcloser to download the contents of the blob | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Download(ctx context.Context) (io.ReadCloser, error) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Serves the contents of the blob directly handling special HTTP headers like Range, if set | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ServeContent(ctx context.Context, w http.ResponseWriter, r *http.Request) error | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Get the offset of the blob and its indexes | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
GetOffset(ctx context.Context) (int64, error) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Commit the uploaded blocks to the BlockBlob | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -187,6 +190,31 @@ func (blockBlob *BlockBlob) Download(ctx context.Context) (io.ReadCloser, error) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return resp.Body, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Serve content respecting range header | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (blockBlob *BlockBlob) ServeContent(ctx context.Context, w http.ResponseWriter, r *http.Request) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var downloadOptions, err = parseDownloadOptions(r) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resp, err := blockBlob.BlobClient.DownloadStream(ctx, downloadOptions) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
statusCode := http.StatusOK | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if resp.ContentRange != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Use 206 Partial Content for range requests | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
statusCode = http.StatusPartialContent | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else if resp.ContentLength != nil && *resp.ContentLength == 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
statusCode = http.StatusNoContent | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
w.WriteHeader(statusCode) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we forward response headers like Content-Type from Azure's response? Similar to how its done in the s3store: tusd/pkg/s3store/serve_content.go Lines 95 to 128 in a50bc42
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_, err = io.Copy(w, resp.Body) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resp.Body.Close() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (blockBlob *BlockBlob) GetOffset(ctx context.Context) (int64, error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Get the offset of the file from azure storage | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// For the blob, show each block (ID and size) that is a committed part of it. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -253,6 +281,11 @@ func (infoBlob *InfoBlob) Download(ctx context.Context) (io.ReadCloser, error) { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return resp.Body, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// ServeContent is not needed for infoBlob | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (infoBlob *InfoBlob) ServeContent(ctx context.Context, w http.ResponseWriter, r *http.Request) error { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Please return an error here so we notice it early if this method is accidentally called. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// infoBlob does not utilise offset, so just return 0, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func (infoBlob *InfoBlob) GetOffset(ctx context.Context) (int64, error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 0, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -309,3 +342,43 @@ func checkForNotFoundError(err error) error { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// parse the Range, If-Match, If-None-Match, If-Unmodified-Since, If-Modified-Since headers if present | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func parseDownloadOptions(r *http.Request) (*azblob.DownloadStreamOptions, error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
input := azblob.DownloadStreamOptions{AccessConditions: &azblob.AccessConditions{}} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if val := r.Header.Get("Range"); val != "" { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// zero value count indicates from the offset to the resource's end, suffix-length is not required | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
input.Range = azblob.HTTPRange{Offset: 0, Count: 0} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if _, err := fmt.Sscanf(val, "bytes=%d-%d", &input.Range.Offset, &input.Range.Count); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if _, err := fmt.Sscanf(val, "bytes=%d-", &input.Range.Offset); err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if val := r.Header.Get("If-Match"); val != "" { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
etagIfMatch := azcore.ETag(val) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
input.AccessConditions.ModifiedAccessConditions.IfMatch = &etagIfMatch | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if val := r.Header.Get("If-None-Match"); val != "" { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
etagIfNoneMatch := azcore.ETag(val) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
input.AccessConditions.ModifiedAccessConditions.IfNoneMatch = &etagIfNoneMatch | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if val := r.Header.Get("If-Modified-Since"); val != "" { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
t, err := http.ParseTime(val) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
input.AccessConditions.ModifiedAccessConditions.IfModifiedSince = &t | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if val := r.Header.Get("If-Unmodified-Since"); val != "" { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
t, err := http.ParseTime(val) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil, err | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
input.AccessConditions.ModifiedAccessConditions.IfUnmodifiedSince = &t | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return &input, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please run
go fmt
to address the formatting inconsistencies?