Browse Source
Add s3 postpolicy support header (#5280)
* Add s3 postpolicy support header
* optimized code
pull/5292/head
sxlehua
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
13 additions and
0 deletions
-
weed/s3api/s3api_object_handlers_postpolicy.go
|
|
@ -15,6 +15,7 @@ import ( |
|
|
|
"github.com/gorilla/mux" |
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog" |
|
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/policy" |
|
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3_constants" |
|
|
|
"github.com/seaweedfs/seaweedfs/weed/s3api/s3err" |
|
|
|
) |
|
|
|
|
|
|
@ -123,6 +124,18 @@ func (s3a *S3ApiServer) PostPolicyBucketHandler(w http.ResponseWriter, r *http.R |
|
|
|
} |
|
|
|
r.Header.Set("Content-Type", contentType) |
|
|
|
|
|
|
|
// Add s3 postpolicy support header
|
|
|
|
for k, _ := range formValues { |
|
|
|
if k == "Cache-Control" || k == "Expires" || k == "Content-Disposition" { |
|
|
|
r.Header.Set(k, formValues.Get(k)) |
|
|
|
continue |
|
|
|
} |
|
|
|
|
|
|
|
if strings.HasPrefix(k, s3_constants.AmzUserMetaPrefix) { |
|
|
|
r.Header.Set(k, formValues.Get(k)) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
etag, errCode := s3a.putToFiler(r, uploadUrl, fileBody, "", bucket) |
|
|
|
|
|
|
|
if errCode != s3err.ErrNone { |
|
|
|