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, #initialize, #inspect, #merge_attributes

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#bucketObject



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

def bucket
  @bucket
end

#copy(target_bucket_name, target_object_key) ⇒ Object



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

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



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

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

#objectsObject



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

def objects
  @objects
end

#reloadObject



44
45
46
47
# File 'lib/fog/aws/models/s3/object.rb', line 44

def reload
  new_attributes = objects.get(@key).attributes
  merge_attributes(new_attributes)
end

#save(options = {}) ⇒ Object



49
50
51
52
53
# File 'lib/fog/aws/models/s3/object.rb', line 49

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