2009-08-02 19:37:54 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class S3
|
|
|
|
|
|
|
|
class Objects < Fog::Collection
|
|
|
|
|
2009-08-30 17:43:01 -04:00
|
|
|
attribute :is_truncated, 'IsTruncated'
|
|
|
|
attribute :marker, 'Marker'
|
|
|
|
attribute :max_keys, 'MaxKeys'
|
|
|
|
attribute :prefix, 'Prefix'
|
2009-08-04 13:51:54 -04:00
|
|
|
|
|
|
|
def initialize(attributes = {})
|
|
|
|
super
|
|
|
|
end
|
2009-08-02 19:37:54 -04:00
|
|
|
|
2009-08-29 14:20:54 -04:00
|
|
|
def all(options = {})
|
2009-08-30 17:43:01 -04:00
|
|
|
merge_attributes(options)
|
2009-09-02 00:41:52 -04:00
|
|
|
self.delete_if {true}
|
|
|
|
objects = bucket.buckets.get(bucket.name, attributes).objects
|
|
|
|
objects.keys.each do |key|
|
|
|
|
self[key] = objects[key]
|
|
|
|
end
|
|
|
|
self
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-08-27 23:47:01 -04:00
|
|
|
def bucket
|
|
|
|
@bucket
|
|
|
|
end
|
|
|
|
|
2009-08-06 01:55:09 -04:00
|
|
|
def create(attributes = {})
|
|
|
|
object = new(attributes)
|
|
|
|
object.save
|
|
|
|
object
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-08-29 14:20:54 -04:00
|
|
|
def get(key, options = {})
|
2009-09-02 00:41:52 -04:00
|
|
|
data = connection.get_object(bucket.name, key, options)
|
|
|
|
object_data = { :body => data.body}
|
|
|
|
for key, value in data.headers
|
|
|
|
if ['Content-Length', 'Content-Type', 'ETag', 'Last-Modified'].include?(key)
|
|
|
|
object_data[key] = value
|
2009-08-19 00:26:13 -04:00
|
|
|
end
|
|
|
|
end
|
2009-09-02 00:41:52 -04:00
|
|
|
self[object_data['key']] = Fog::AWS::S3::Object.new({
|
|
|
|
:bucket => bucket,
|
|
|
|
:connection => connection,
|
|
|
|
:objects => self
|
|
|
|
}.merge!(object_data))
|
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
nil
|
2009-08-19 00:26:13 -04:00
|
|
|
end
|
|
|
|
|
2009-08-29 14:20:54 -04:00
|
|
|
def head(key, options = {})
|
2009-09-01 01:40:07 -04:00
|
|
|
self[key] ||= begin
|
|
|
|
data = connection.head_object(bucket.name, key, options)
|
|
|
|
object_data = {}
|
|
|
|
for key, value in data.headers
|
|
|
|
if ['Content-Length', 'Content-Type', 'ETag', 'Last-Modified'].include?(key)
|
|
|
|
object_data[key] = value
|
|
|
|
end
|
2009-08-19 00:26:13 -04:00
|
|
|
end
|
2009-09-01 01:40:07 -04:00
|
|
|
self[object_data['key']] = Fog::AWS::S3::Object.new({
|
|
|
|
:bucket => bucket,
|
|
|
|
:connection => connection,
|
|
|
|
:objects => self
|
|
|
|
}.merge!(object_data))
|
|
|
|
rescue Fog::Errors::NotFound
|
|
|
|
nil
|
2009-08-19 00:26:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-04 23:09:08 -04:00
|
|
|
def new(attributes = {})
|
2009-08-17 20:06:25 -04:00
|
|
|
Fog::AWS::S3::Object.new({
|
|
|
|
:bucket => bucket,
|
2009-08-28 12:03:19 -04:00
|
|
|
:connection => connection,
|
|
|
|
:objects => self
|
2009-08-17 20:06:25 -04:00
|
|
|
}.merge!(attributes))
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-09-02 00:41:52 -04:00
|
|
|
def reload
|
|
|
|
all
|
|
|
|
end
|
|
|
|
|
2009-08-04 23:09:08 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def bucket=(new_bucket)
|
|
|
|
@bucket = new_bucket
|
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|