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 <patilsuraj767@gmail.com>
  • Loading branch information
patilsuraj767 committed Sep 9, 2024
1 parent 7adf08b commit ac076fd
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/efficientgo/core/logerrcapture"
"github.com/go-kit/log"
Expand Down Expand Up @@ -546,6 +547,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 ac076fd

Please sign in to comment.