Class: Fog::AWS::S3::File

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

Instance Attribute Summary

Attributes inherited from Model

#connection

Instance Method Summary collapse

Methods inherited from Model

#_dump, _load, aliases, attribute, attributes, #attributes, #collection, identity, #identity, #initialize, #inspect, #merge_attributes, #new_record?, #reload, #requires, #wait_for

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#copy(target_directory_name, target_file_key) ⇒ Object



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

def copy(target_directory_name, target_file_key)
  requires :directory, :key
  data = connection.copy_object(directory.name, @key, target_directory_name, target_file_key).body
  target_directory = connection.directories.new(:name => target_directory_name)
  target_file = target_directory.files.new(attributes.merge!(:key => target_file_key))
  copy_data = {}
  for key, value in data
    if ['ETag', 'LastModified'].include?(key)
      copy_data[key] = value
    end
  end
  target_file.merge_attributes(copy_data)
  target_file
end

#destroyObject



37
38
39
40
41
# File 'lib/fog/aws/models/s3/file.rb', line 37

def destroy
  requires :directory, :key
  connection.delete_object(directory.name, @key)
  true
end

#directoryObject



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

def directory
  @directory
end

#owner=(new_owner) ⇒ Object



43
44
45
46
47
48
49
50
# File 'lib/fog/aws/models/s3/file.rb', line 43

def owner=(new_owner)
  if new_owner
    @owner = {
      :display_name => new_owner['DisplayName'],
      :id           => new_owner['ID']
    }
  end
end

#save(options = {}) ⇒ Object



52
53
54
55
56
57
# File 'lib/fog/aws/models/s3/file.rb', line 52

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