1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/openstack/requests/storage/copy_object.rb
Sergio Rubio 9ace35ce5f [openstack|storage] intial import
Porting Fog Rackspace Storage service to OpenStack.
Mostly replaced names, removed CDN stuff (perhaps Rackspace specific)
and used authenticate_v2 (keystone).
2013-01-23 20:26:17 +01:00

27 lines
969 B
Ruby

module Fog
module Storage
class OpenStack
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::OpenStack.escape(target_container_name)}/#{Fog::OpenStack.escape(target_object_name)}"
})
end
end
end
end
end