2010-09-18 13:40:48 -04:00
module Fog
module Google
class Storage
class Real
2011-01-07 18:34:20 -05:00
require 'fog/storage/parsers/google/copy_object'
2010-09-18 13:40:48 -04:00
2010-09-24 09:43:34 -04:00
# Copy an object from one Google Storage bucket to another
2010-09-18 13:40:48 -04:00
#
# ==== Parameters
# * source_bucket_name<~String> - Name of source bucket
# * source_object_name<~String> - Name of source object
# * target_bucket_name<~String> - Name of bucket to create copy in
# * target_object_name<~String> - Name for new copy of object
# * options<~Hash>:
2010-09-18 15:26:48 -04:00
# * 'x-goog-metadata-directive'<~String> - Specifies whether to copy metadata from source or replace with data in request. Must be in ['COPY', 'REPLACE']
# * 'x-goog-copy_source-if-match'<~String> - Copies object if its etag matches this value
# * 'x-goog-copy_source-if-modified_since'<~Time> - Copies object it it has been modified since this time
# * 'x-goog-copy_source-if-none-match'<~String> - Copies object if its etag does not match this value
# * 'x-goog-copy_source-if-unmodified-since'<~Time> - Copies object it it has not been modified since this time
2010-09-18 13:40:48 -04:00
#
# ==== Returns
# * response<~Excon::Response>:
# * body<~Hash>:
# * 'ETag'<~String> - etag of new object
# * 'LastModified'<~Time> - date object was last modified
#
def copy_object ( source_bucket_name , source_object_name , target_bucket_name , target_object_name , options = { } )
2010-09-18 15:26:48 -04:00
headers = { 'x-goog-copy-source' = > " / #{ source_bucket_name } / #{ source_object_name } " } . merge! ( options )
2010-09-18 13:40:48 -04:00
request ( {
:expects = > 200 ,
:headers = > headers ,
:host = > " #{ target_bucket_name } . #{ @host } " ,
:method = > 'PUT' ,
:parser = > Fog :: Parsers :: Google :: Storage :: CopyObject . new ,
:path = > CGI . escape ( target_object_name )
} )
end
end
class Mock
def copy_object ( source_bucket_name , source_object_name , target_bucket_name , target_object_name , options = { } )
response = Excon :: Response . new
source_bucket = @data [ :buckets ] [ source_bucket_name ]
source_object = source_bucket && source_bucket [ :objects ] [ source_object_name ]
target_bucket = @data [ :buckets ] [ target_bucket_name ]
if source_object && target_bucket
response . status = 200
target_object = source_object . dup
target_object . merge! ( {
'Name' = > target_object_name
} )
target_bucket [ :objects ] [ target_object_name ] = target_object
response . body = {
'ETag' = > target_object [ 'ETag' ] ,
2011-02-02 19:27:22 -05:00
'LastModified' = > Time . parse ( target_object [ 'Last-Modified' ] )
2010-09-18 13:40:48 -04:00
}
else
response . status = 404
raise ( Excon :: Errors . status_error ( { :expects = > 200 } , response ) )
end
response
end
end
end
end
end