Skip to content

Commit

Permalink
feat: support tags for postPolicy Upload (#1967)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiuker authored May 29, 2024
1 parent 95db455 commit 7d712b5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions post-policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ package minio

import (
"encoding/base64"
"errors"
"fmt"
"net/http"
"strings"
"time"

"github.com/minio/minio-go/v7/pkg/encrypt"
"github.com/minio/minio-go/v7/pkg/tags"
)

// expirationDateFormat date format for expiration key in json policy.
Expand Down Expand Up @@ -152,6 +154,27 @@ func (p *PostPolicy) SetCondition(matchType, condition, value string) error {
return errInvalidArgument("Invalid condition in policy")
}

// SetTagging - Sets tagging for the object for this policy based upload.
func (p *PostPolicy) SetTagging(tagging string) error {
if strings.TrimSpace(tagging) == "" || tagging == "" {
return errInvalidArgument("No tagging specified.")
}
_, err := tags.ParseObjectXML(strings.NewReader(tagging))
if err != nil {
return errors.New("The XML you provided was not well-formed or did not validate against our published schema.") //nolint
}
policyCond := policyCondition{
matchType: "eq",
condition: "$tagging",
value: tagging,
}
if err := p.addNewPolicy(policyCond); err != nil {
return err
}
p.formData["tagging"] = tagging
return nil
}

// SetContentType - Sets content-type of the object for this policy
// based upload.
func (p *PostPolicy) SetContentType(contentType string) error {
Expand Down

0 comments on commit 7d712b5

Please sign in to comment.