summaryrefslogtreecommitdiff
path: root/vendor/github.com/minio/minio-go/v7/api-get-options.go
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-02-13 07:46:15 +0000
committerLibravatar GitHub <noreply@github.com>2023-02-13 07:46:15 +0000
commitefbc5dab6a041e81fbf4c4eccbae43a7a9997566 (patch)
tree06f6dcbbf36065147a7984fd6c5b39ccec3c3f65 /vendor/github.com/minio/minio-go/v7/api-get-options.go
parent[chore]: Bump golang.org/x/image from 0.3.0 to 0.4.0 (#1485) (diff)
downloadgotosocial-efbc5dab6a041e81fbf4c4eccbae43a7a9997566.tar.xz
[chore]: Bump github.com/minio/minio-go/v7 from 7.0.47 to 7.0.48 (#1486)
Bumps [github.com/minio/minio-go/v7](https://github.com/minio/minio-go) from 7.0.47 to 7.0.48. - [Release notes](https://github.com/minio/minio-go/releases) - [Commits](https://github.com/minio/minio-go/compare/v7.0.47...v7.0.48) --- updated-dependencies: - dependency-name: github.com/minio/minio-go/v7 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/minio/minio-go/v7/api-get-options.go')
-rw-r--r--vendor/github.com/minio/minio-go/v7/api-get-options.go52
1 files changed, 52 insertions, 0 deletions
diff --git a/vendor/github.com/minio/minio-go/v7/api-get-options.go b/vendor/github.com/minio/minio-go/v7/api-get-options.go
index 0082c1fa7..bb86a5994 100644
--- a/vendor/github.com/minio/minio-go/v7/api-get-options.go
+++ b/vendor/github.com/minio/minio-go/v7/api-get-options.go
@@ -20,6 +20,8 @@ package minio
import (
"fmt"
"net/http"
+ "net/url"
+ "strconv"
"time"
"github.com/minio/minio-go/v7/pkg/encrypt"
@@ -36,6 +38,7 @@ type AdvancedGetOptions struct {
// during GET requests.
type GetObjectOptions struct {
headers map[string]string
+ reqParams url.Values
ServerSideEncryption encrypt.ServerSide
VersionID string
PartNumber int
@@ -83,6 +86,34 @@ func (o *GetObjectOptions) Set(key, value string) {
o.headers[http.CanonicalHeaderKey(key)] = value
}
+// SetReqParam - set request query string parameter
+// supported key: see supportedQueryValues.
+// If an unsupported key is passed in, it will be ignored and nothing will be done.
+func (o *GetObjectOptions) SetReqParam(key, value string) {
+ if !isStandardQueryValue(key) {
+ // do nothing
+ return
+ }
+ if o.reqParams == nil {
+ o.reqParams = make(url.Values)
+ }
+ o.reqParams.Set(key, value)
+}
+
+// AddReqParam - add request query string parameter
+// supported key: see supportedQueryValues.
+// If an unsupported key is passed in, it will be ignored and nothing will be done.
+func (o *GetObjectOptions) AddReqParam(key, value string) {
+ if !isStandardQueryValue(key) {
+ // do nothing
+ return
+ }
+ if o.reqParams == nil {
+ o.reqParams = make(url.Values)
+ }
+ o.reqParams.Add(key, value)
+}
+
// SetMatchETag - set match etag.
func (o *GetObjectOptions) SetMatchETag(etag string) error {
if etag == "" {
@@ -149,3 +180,24 @@ func (o *GetObjectOptions) SetRange(start, end int64) error {
}
return nil
}
+
+// toQueryValues - Convert the versionId, partNumber, and reqParams in Options to query string parameters.
+func (o *GetObjectOptions) toQueryValues() url.Values {
+ urlValues := make(url.Values)
+ if o.VersionID != "" {
+ urlValues.Set("versionId", o.VersionID)
+ }
+ if o.PartNumber > 0 {
+ urlValues.Set("partNumber", strconv.Itoa(o.PartNumber))
+ }
+
+ if o.reqParams != nil {
+ for key, values := range o.reqParams {
+ for _, value := range values {
+ urlValues.Add(key, value)
+ }
+ }
+ }
+
+ return urlValues
+}