Class: Fog::AWS::S3::Objects

Inherits:
Collection show all
Defined in:
lib/fog/aws/models/s3/objects.rb

Instance Method Summary collapse

Methods inherited from Collection

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

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#all(options = {}) ⇒ Object



15
16
17
18
19
20
# File 'lib/fog/aws/models/s3/objects.rb', line 15

def all(options = {})
  bucket.collection.get(
    bucket.name,
    options.reject {|key, value| !['delimiter', 'marker', 'max-keys', 'prefix'].include?(key)}
  ).objects
end

#bucketObject



22
23
24
# File 'lib/fog/aws/models/s3/objects.rb', line 22

def bucket
  @bucket
end

#get(key, options = {}, &block) ⇒ Object



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

def get(key, options = {}, &block)
  options = {
    'delimiter'   => @delimiter,
    'marker'      => @marker,
    'max-keys'    => @max_keys,
    'prefix'      => @prefix
  }.merge!(options)
  data = connection.get_object(bucket.name, key, options, &block)
  object_data = {
    :body => data.body,
    :key  => key
  }
  for key, value in data.headers
    if ['Content-Length', 'Content-Type', 'ETag', 'Last-Modified'].include?(key)
      object_data[key] = value
    end
  end
  object = Fog::AWS::S3::Object.new({
    :bucket     => bucket,
    :collection => self,
    :connection => connection
  }.merge!(object_data))
  object
rescue Excon::Errors::NotFound
  nil
end

#get_url(key, expires) ⇒ Object



53
54
55
# File 'lib/fog/aws/models/s3/objects.rb', line 53

def get_url(key, expires)
  connection.get_object_url(bucket.name, key, expires)
end

#head(key, options = {}) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/fog/aws/models/s3/objects.rb', line 57

def head(key, options = {})
  data = connection.head_object(bucket.name, key, options)
  object_data = {
    :key => key
  }
  for key, value in data.headers
    if ['Content-Length', 'Content-Type', 'ETag', 'Last-Modified'].include?(key)
      object_data[key] = value
    end
  end
  object = Fog::AWS::S3::Object.new({
    :bucket     => bucket,
    :collection => self,
    :connection => connection
  }.merge!(object_data))
  object
rescue Excon::Errors::NotFound
  nil
end

#new(attributes = {}) ⇒ Object



77
78
79
# File 'lib/fog/aws/models/s3/objects.rb', line 77

def new(attributes = {})
  super({ :bucket => bucket }.merge!(attributes))
end