1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
module Fog
module AWS
class Storage
class Real
require 'fog/aws/parsers/storage/initiate_multipart_upload'
# Initiate a multipart upload to an S3 bucket
#
# @param bucket_name [String] Name of bucket to create object in
# @param object_name [String] Name of object to create
# @param options [Hash]:
# @option options [String] Cache-Control Caching behaviour
# @option options [String] Content-Disposition Presentational information for the object
# @option options [String] Content-Encoding Encoding of object data
# @option options [String] Content-MD5 Base64 encoded 128-bit MD5 digest of message (defaults to Base64 encoded MD5 of object.read)
# @option options [String] Content-Type Standard MIME type describing contents (defaults to MIME::Types.of.first)
# @option options [String] x-amz-acl Permissions, must be in ['private', 'public-read', 'public-read-write', 'authenticated-read']
# @option options [String] x-amz-meta-#{name} Headers to be returned with object, note total size of request without body must be less than 8 KB.
#
# @return [Excon::Response] response:
# * body [Hash]:
# * Bucket [String] - Bucket where upload was initiated
# * Key [String] - Object key where the upload was initiated
# * UploadId [String] - Id for initiated multipart upload
#
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadInitiate.html
#
def initiate_multipart_upload(bucket_name, object_name, options = {})
request({
:expects => 200,
:headers => options,
:bucket_name => bucket_name,
:object_name => object_name,
:method => 'POST',
:parser => Fog::Parsers::AWS::Storage::InitiateMultipartUpload.new,
:query => {'uploads' => nil}
})
end
end # Real
class Mock # :nodoc:all
require 'fog/aws/requests/storage/shared_mock_methods'
include Fog::AWS::Storage::SharedMockMethods
def initiate_multipart_upload(bucket_name, object_name, options = {})
verify_mock_bucket_exists(bucket_name)
upload_id = UUID.uuid
self.data[:multipart_uploads][bucket_name] ||= {}
self.data[:multipart_uploads][bucket_name][upload_id] = {
:parts => {},
:options => options,
}
response = Excon::Response.new
response.status = 200
response.body = {
"Bucket" => bucket_name,
"Key" => object_name,
"UploadId" => upload_id,
}
response
end
end # Mock
end # Storage
end # AWS
end # Fog
|