mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
94 lines
4.1 KiB
Ruby
94 lines
4.1 KiB
Ruby
module Fog
|
|
module Storage
|
|
class InternetArchive
|
|
class Real
|
|
# Create an object in an S3 bucket
|
|
#
|
|
# @param bucket_name [String] Name of bucket to create object in
|
|
# @param object_name [String] Name of object to create
|
|
# @param data [File||String] File or String to create object from
|
|
# @param options [Hash]
|
|
# @option options Cache-Control [String] Caching behaviour
|
|
# @option options Content-Disposition [String] Presentational information for the object
|
|
# @option options Content-Encoding [String] Encoding of object data
|
|
# @option options Content-Length [String] Size of object in bytes (defaults to object.read.length)
|
|
# @option options Content-MD5 [String] Base64 encoded 128-bit MD5 digest of message
|
|
# @option options Content-Type [String] Standard MIME type describing contents (defaults to MIME::Types.of.first)
|
|
# @option options Expires [String] Cache expiry
|
|
# @option options x-amz-acl [String] Permissions, must be in ['private', 'public-read', 'public-read-write', 'authenticated-read']
|
|
# @option options x-amz-storage-class [String] Default is 'STANDARD', set to 'REDUCED_REDUNDANCY' for non-critical, reproducable data
|
|
# @option options 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:
|
|
# * headers [Hash]:
|
|
# * ETag [String] etag of new object
|
|
#
|
|
# @see http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUT.html
|
|
|
|
def put_object(bucket_name, object_name, data, options = {})
|
|
data = Fog::Storage.parse_data(data)
|
|
headers = data[:headers].merge!(options)
|
|
request({
|
|
:body => data[:body],
|
|
:expects => 200,
|
|
:headers => headers,
|
|
:host => "#{bucket_name}.#{@host}",
|
|
:idempotent => true,
|
|
:method => 'PUT',
|
|
:path => CGI.escape(object_name)
|
|
})
|
|
end
|
|
end
|
|
|
|
class Mock # :nodoc:all
|
|
def put_object(bucket_name, object_name, data, options = {})
|
|
acl = options['x-amz-acl'] || 'private'
|
|
if !['private', 'public-read', 'public-read-write', 'authenticated-read'].include?(acl)
|
|
raise Excon::Errors::BadRequest.new('invalid x-amz-acl')
|
|
else
|
|
self.data[:acls][:object][bucket_name] ||= {}
|
|
self.data[:acls][:object][bucket_name][object_name] = self.class.acls(acl)
|
|
end
|
|
|
|
data = Fog::Storage.parse_data(data)
|
|
unless data[:body].is_a?(String)
|
|
data[:body] = data[:body].read
|
|
end
|
|
response = Excon::Response.new
|
|
if (bucket = self.data[:buckets][bucket_name])
|
|
response.status = 200
|
|
object = {
|
|
:body => data[:body],
|
|
'Content-Type' => options['Content-Type'] || data[:headers]['Content-Type'],
|
|
'ETag' => Digest::MD5.hexdigest(data[:body]),
|
|
'Key' => object_name,
|
|
'Last-Modified' => Fog::Time.now.to_date_header,
|
|
'Content-Length' => options['Content-Length'] || data[:headers]['Content-Length'],
|
|
}
|
|
|
|
for key, value in options
|
|
case key
|
|
when 'Cache-Control', 'Content-Disposition', 'Content-Encoding', 'Content-MD5', 'Expires', /^x-amz-meta-/, /^x-archive-/
|
|
object[key] = value
|
|
end
|
|
end
|
|
|
|
bucket[:objects][object_name] = [object]
|
|
|
|
response.headers = {
|
|
'Content-Length' => object['Content-Length'],
|
|
'Content-Type' => object['Content-Type'],
|
|
'ETag' => object['ETag'],
|
|
'Last-Modified' => object['Last-Modified'],
|
|
}
|
|
|
|
else
|
|
response.status = 404
|
|
raise(Excon::Errors.status_error({:expects => 200}, response))
|
|
end
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|