mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
9ace35ce5f
Porting Fog Rackspace Storage service to OpenStack. Mostly replaced names, removed CDN stuff (perhaps Rackspace specific) and used authenticate_v2 (keystone).
27 lines
969 B
Ruby
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
|