Skip to content

Commit

Permalink
feat: #135 Generate presigned URL
Browse files Browse the repository at this point in the history
Signed-off-by: Suraj Patil <[email protected]>
  • Loading branch information
patilsuraj767 committed Sep 30, 2024
1 parent fd10502 commit 91a0ed5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions providers/s3/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
"strconv"
"strings"
"testing"
"time"

"github.com/go-kit/log"
"github.com/go-kit/log/level"
Expand Down Expand Up @@ -536,6 +537,15 @@ func (b *Bucket) Delete(ctx context.Context, name string) error {
return b.client.RemoveObject(ctx, b.name, name, minio.RemoveObjectOptions{})
}

// Get Presigned URL for uploading tsdb blocks.
func (b *Bucket) GetPresignedUploadURL(ctx context.Context, name string, expiry time.Duration) (string, error) {
presignedUrl, err := b.client.PresignedPutObject(ctx, b.name, name, expiry)
if err != nil {
return "", err
}
return presignedUrl.String(), nil
}

// IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations.
func (b *Bucket) IsObjNotFoundErr(err error) bool {
return minio.ToErrorResponse(errors.Cause(err)).Code == "NoSuchKey"
Expand Down

0 comments on commit 91a0ed5

Please sign in to comment.