* Drop the iso_checksum_type & iso_checksum_url fields In favor of simply using iso_checksum that will know what to do. * fix after master merge * Update builder_test.go * Update builder_test.go * Update builder_test.go * Update builder_test.go * Update builder_test.go * remove checksum lowercasing tests * Update builder_test.go * Update builder_test.go * better docs * Update builder_test.go * even better docs * Update config.go * Update builder_test.go * Update step_create_vmx_test.go * make generate * better docs * fix imports * up tests * Update _ISOConfig-required.html.md * Update builder_test.go * don't use sha1.Sum("none") as a caching path * Update builder_test.go * better docs * Update iso_config_test.go remove ISOChecksumType/ISOChecksumURL references * Update step_download_test.go * add iso_checksum_url and iso_checksum_type fixers + tests * add concrete examples of checksum values * add examples of checksumming from local file * update go-getter dep * up deps * use new go-getter version * up ESX5Driver.VerifyChecksum: use go-getter's checksumming * ISOConfig.Prepare: get checksum there in case we need it as a string in ESX5Driver.VerifyChecksum * Update iso_config.go * get go-getter from v2 branch * Update driver_esx5.go add more comments * Update driver_esx5.go * show better error message when the checksum is invalid * Update builder_test.go put in a valid checksum to fix tests, checksum is md5("packer") * Update builder_test.go test invalid and valid checksum * more test updating * fix default md5 string to be a valid md5 * TestChecksumFileNameMixedCaseBug: use 'file:' prefix for file checksumming * Update iso_config_test.go * Update iso_config_test.go * Update builder_test.go * Update builder_test.go * Update builder_test.go * Update CHANGELOG.md * Update CHANGELOG.md * Update go.mod * Update go.mod * Update CHANGELOG.md
82 lines
2.7 KiB
Go
82 lines
2.7 KiB
Go
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"
|
|
"github.com/aws/aws-sdk-go/service/s3/internal/arn"
|
|
)
|
|
|
|
func init() {
|
|
initClient = defaultInitClientFn
|
|
initRequest = defaultInitRequestFn
|
|
}
|
|
|
|
func defaultInitClientFn(c *client.Client) {
|
|
// Support building custom endpoints based on config
|
|
c.Handlers.Build.PushFront(endpointHandler)
|
|
|
|
// Require SSL when using SSE keys
|
|
c.Handlers.Validate.PushBack(validateSSERequiresSSL)
|
|
c.Handlers.Build.PushBack(computeSSEKeyMD5)
|
|
c.Handlers.Build.PushBack(computeCopySourceSSEKeyMD5)
|
|
|
|
// S3 uses custom error unmarshaling logic
|
|
c.Handlers.UnmarshalError.Clear()
|
|
c.Handlers.UnmarshalError.PushBack(unmarshalError)
|
|
c.Handlers.UnmarshalError.PushBackNamed(s3err.RequestFailureWrapperHandler())
|
|
}
|
|
|
|
func defaultInitRequestFn(r *request.Request) {
|
|
// Add request handlers for specific platforms.
|
|
// e.g. 100-continue support for PUT requests using Go 1.6
|
|
platformRequestHandlers(r)
|
|
|
|
switch r.Operation.Name {
|
|
case opPutBucketCors, opPutBucketLifecycle, opPutBucketPolicy,
|
|
opPutBucketTagging, opDeleteObjects, opPutBucketLifecycleConfiguration,
|
|
opPutObjectLegalHold, opPutObjectRetention, opPutObjectLockConfiguration,
|
|
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())
|
|
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)
|
|
}
|
|
}
|
|
|
|
// 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
|
|
}
|
|
|
|
type endpointARNGetter interface {
|
|
getEndpointARN() (arn.Resource, error)
|
|
hasEndpointARN() bool
|
|
}
|