rclone/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go

82 lines
2.7 KiB
Go
Raw Normal View History

package s3
import (
"github.com/aws/aws-sdk-go/aws/client"
"github.com/aws/aws-sdk-go/aws/request"
"github.com/aws/aws-sdk-go/internal/s3err"
2020-02-25 15:20:57 +01:00
"github.com/aws/aws-sdk-go/service/s3/internal/arn"
)
func init() {
2016-11-19 11:03:41 +01:00
initClient = defaultInitClientFn
initRequest = defaultInitRequestFn
}
2016-11-19 11:03:41 +01:00
func defaultInitClientFn(c *client.Client) {
// Support building custom endpoints based on config
2020-02-25 15:20:57 +01:00
c.Handlers.Build.PushFront(endpointHandler)
2016-11-19 11:03:41 +01:00
// Require SSL when using SSE keys
c.Handlers.Validate.PushBack(validateSSERequiresSSL)
2019-06-27 13:30:45 +02:00
c.Handlers.Build.PushBack(computeSSEKeyMD5)
c.Handlers.Build.PushBack(computeCopySourceSSEKeyMD5)
2016-11-19 11:03:41 +01:00
// S3 uses custom error unmarshaling logic
c.Handlers.UnmarshalError.Clear()
c.Handlers.UnmarshalError.PushBack(unmarshalError)
c.Handlers.UnmarshalError.PushBackNamed(s3err.RequestFailureWrapperHandler())
2016-11-19 11:03:41 +01:00
}
func defaultInitRequestFn(r *request.Request) {
2020-02-25 15:20:57 +01:00
// Add request handlers for specific platforms.
2016-11-19 11:03:41 +01:00
// e.g. 100-continue support for PUT requests using Go 1.6
platformRequestHandlers(r)
2016-11-19 11:03:41 +01:00
switch r.Operation.Name {
case opPutBucketCors, opPutBucketLifecycle, opPutBucketPolicy,
opPutBucketTagging, opDeleteObjects, opPutBucketLifecycleConfiguration,
2019-02-09 13:50:35 +01:00
opPutObjectLegalHold, opPutObjectRetention, opPutObjectLockConfiguration,
2016-11-19 11:03:41 +01:00
opPutBucketReplication:
// These S3 operations require Content-MD5 to be set
r.Handlers.Build.PushBack(contentMD5)
case opGetBucketLocation:
// GetBucketLocation has custom parsing logic
r.Handlers.Unmarshal.PushFront(buildGetBucketLocation)
case opCreateBucket:
// Auto-populate LocationConstraint with current region
r.Handlers.Validate.PushFront(populateLocationConstraint)
case opCopyObject, opUploadPartCopy, opCompleteMultipartUpload:
r.Handlers.Unmarshal.PushFront(copyMultipartStatusOKUnmarhsalError)
r.Handlers.Unmarshal.PushBackNamed(s3err.RequestFailureWrapperHandler())
2018-03-19 16:51:38 +01:00
case opPutObject, opUploadPart:
r.Handlers.Build.PushBack(computeBodyHashes)
// Disabled until #1837 root issue is resolved.
// case opGetObject:
// r.Handlers.Build.PushBack(askForTxEncodingAppendMD5)
// r.Handlers.Unmarshal.PushBack(useMD5ValidationReader)
}
}
2017-07-23 09:51:42 +02:00
// bucketGetter is an accessor interface to grab the "Bucket" field from
// an S3 type.
type bucketGetter interface {
getBucket() string
}
// sseCustomerKeyGetter is an accessor interface to grab the "SSECustomerKey"
// field from an S3 type.
type sseCustomerKeyGetter interface {
getSSECustomerKey() string
}
// copySourceSSECustomerKeyGetter is an accessor interface to grab the
// "CopySourceSSECustomerKey" field from an S3 type.
type copySourceSSECustomerKeyGetter interface {
getCopySourceSSECustomerKey() string
}
2020-02-25 15:20:57 +01:00
type endpointARNGetter interface {
getEndpointARN() (arn.Resource, error)
hasEndpointARN() bool
}