Class: Fog::AWS::S3::Directories

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

Instance Method Summary collapse

Methods inherited from Collection

#_dump, _load, aliases, attribute, attributes, #attributes, #connection, #connection=, #create, #initialize, #inspect, #merge_attributes, model, #model, #new, #reload

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#allObject



13
14
15
16
17
18
19
20
21
22
23
# File 'lib/fog/aws/models/s3/directories.rb', line 13

def all
  if @loaded
    clear
  end
  @loaded = true
  data = connection.get_service.body
  data['Buckets'].each do |directory|
    self << new(directory)
  end
  self
end

#get(name, options = {}) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/fog/aws/models/s3/directories.rb', line 25

def get(name, options = {})
  remap_attributes(options, {
    :delimiter  => 'delimiter',
    :marker     => 'marker',
    :max_keys   => 'max-keys',
    :prefix     => 'prefix'
  })
  data = connection.get_bucket(name, options).body
  directory = new(:name => data['Name'])
  options = {}
  for key, value in data
    if ['Delimiter', 'IsTruncated', 'Marker', 'MaxKeys', 'Prefix'].include?(key)
      options[key] = value
    end
  end
  directory.files.merge_attributes(options)
  directory.files.instance_variable_set(:@loaded, true)
  data['Contents'].each do |file|
    directory.files << directory.files.new(file)
  end
  directory
rescue Excon::Errors::NotFound
  nil
end