mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
969 B
Ruby
27 lines
969 B
Ruby
module Fog
|
|
module Storage
|
|
class Rackspace
|
|
class Real
|
|
|
|
# Copy object
|
|
#
|
|
# ==== Parameters
|
|
# * source_container_name<~String> - Name of source bucket
|
|
# * source_object_name<~String> - Name of source object
|
|
# * target_container_name<~String> - Name of bucket to create copy in
|
|
# * target_object_name<~String> - Name for new copy of object
|
|
# * options<~Hash> - Additional headers
|
|
def copy_object(source_container_name, source_object_name, target_container_name, target_object_name, options={})
|
|
headers = { 'X-Copy-From' => "/#{source_container_name}/#{source_object_name}" }.merge(options)
|
|
request({
|
|
:expects => 201,
|
|
:headers => headers,
|
|
:method => 'PUT',
|
|
:path => "#{Fog::Rackspace.escape(target_container_name)}/#{Fog::Rackspace.escape(target_object_name)}"
|
|
})
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end
|