Class: Fog::AWS::S3::Object

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/aws/models/s3/object.rb

Instance Method Summary collapse

Methods inherited from Model

aliases, attribute, #attributes, attributes, #collection, identity, #identity, #initialize, #inspect, #merge_attributes, #reload

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#bucketObject



18
19
20
# File 'lib/fog/aws/models/s3/object.rb', line 18

def bucket
  @bucket
end

#copy(target_bucket_name, target_object_key) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/fog/aws/models/s3/object.rb', line 22

def copy(target_bucket_name, target_object_key)
  data = connection.copy_object(bucket.name, @key, target_bucket_name, target_object_key).body
  target_bucket = connection.buckets.new(:name => target_bucket_name)
  target_object = target_bucket.objects.new(attributes.merge!(:key => target_object_key))
  copy_data = {}
  for key, value in data
    if ['ETag', 'LastModified'].include?(key)
      copy_data[key] = value
    end
  end
  target_object.merge_attributes(copy_data)
  target_object
end

#destroyObject



36
37
38
39
# File 'lib/fog/aws/models/s3/object.rb', line 36

def destroy
  connection.delete_object(bucket.name, @key)
  true
end

#save(options = {}) ⇒ Object



41
42
43
44
45
# File 'lib/fog/aws/models/s3/object.rb', line 41

def save(options = {})
  data = connection.put_object(bucket.name, @key, @body, options)
  @etag = data.headers['ETag']
  true
end