2009-08-02 19:37:54 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class S3
|
|
|
|
|
|
|
|
class Object < Fog::Model
|
|
|
|
|
2009-08-30 17:43:01 -04:00
|
|
|
attribute :body
|
|
|
|
attribute :content_length, 'Content-Length'
|
|
|
|
attribute :content_type, 'Content-Type'
|
|
|
|
attribute :etag, 'Etag'
|
|
|
|
attribute :key, 'Key'
|
|
|
|
attribute :last_modified, ['Last-Modified', 'LastModified']
|
|
|
|
attribute :size, 'Size'
|
|
|
|
attribute :storage_class, 'StorageClass'
|
2009-08-02 19:37:54 -04:00
|
|
|
|
2009-08-04 13:51:54 -04:00
|
|
|
def initialize(attributes = {})
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2009-08-27 23:47:01 -04:00
|
|
|
def bucket
|
|
|
|
@bucket
|
|
|
|
end
|
|
|
|
|
2009-08-04 23:09:08 -04:00
|
|
|
def copy(target_bucket_name, target_object_key)
|
2009-08-17 20:21:43 -04:00
|
|
|
data = connection.copy_object(bucket.name, key, target_bucket_name, target_object_key).body
|
2009-08-30 17:14:11 -04:00
|
|
|
target_bucket = connection.buckets.new(:name => target_bucket_name)
|
2009-08-30 17:43:01 -04:00
|
|
|
target_object = target_bucket.objects.new(attributes)
|
2009-08-04 23:09:08 -04:00
|
|
|
copy_data = {}
|
|
|
|
for key, value in data
|
|
|
|
if ['ETag', 'LastModified'].include?(key)
|
|
|
|
copy_data[key] = value
|
|
|
|
end
|
|
|
|
end
|
2009-08-30 17:14:11 -04:00
|
|
|
target_object.merge_attributes(copy_data)
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-08-30 17:14:11 -04:00
|
|
|
def destroy
|
2009-08-04 23:09:08 -04:00
|
|
|
connection.delete_object(bucket, key)
|
2009-08-30 17:14:11 -04:00
|
|
|
objects.delete(key)
|
2009-08-27 23:47:01 -04:00
|
|
|
true
|
2009-09-01 01:40:07 -04:00
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
false
|
2009-08-30 17:14:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
objects.get(key)
|
|
|
|
end
|
|
|
|
|
2009-08-04 23:09:08 -04:00
|
|
|
def save(options = {})
|
2009-08-17 20:21:43 -04:00
|
|
|
data = connection.put_object(bucket.name, key, body, options)
|
2009-08-04 23:09:08 -04:00
|
|
|
@etag = data.headers['ETag']
|
2009-08-29 14:20:54 -04:00
|
|
|
objects[key] = self
|
2009-08-27 23:47:01 -04:00
|
|
|
true
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def bucket=(new_bucket)
|
|
|
|
@bucket = new_bucket
|
|
|
|
end
|
|
|
|
|
2009-08-28 12:03:19 -04:00
|
|
|
def objects
|
|
|
|
@objects
|
|
|
|
end
|
|
|
|
|
|
|
|
def objects=(new_objects)
|
|
|
|
@objects = new_objects
|
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|