mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
100 lines
3.8 KiB
Ruby
100 lines
3.8 KiB
Ruby
unless Fog.mocking?
|
|
|
|
module Fog
|
|
module AWS
|
|
class S3
|
|
|
|
# List information about objects in an S3 bucket
|
|
#
|
|
# ==== Parameters
|
|
# * bucket_name<~String> - name of bucket to list object keys from
|
|
# * options<~Hash> - config arguments for list. Defaults to {}.
|
|
# * 'prefix'<~String> - limits object keys to those beginning with its value.
|
|
# * 'marker'<~String> - limits object keys to only those that appear
|
|
# lexicographically after its value.
|
|
# * 'max-keys'<~Integer> - limits number of object keys returned
|
|
# * 'delimiter'<~String> - causes keys with the same string between the prefix
|
|
# value and the first occurence of delimiter to be rolled up
|
|
#
|
|
# ==== Returns
|
|
# * response<~Fog::AWS::Response>:
|
|
# * body<~Hash>:
|
|
# * 'Delimeter'<~String> - Delimiter specified for query
|
|
# * 'Marker'<~String> - Marker specified for query
|
|
# * 'MaxKeys'<~Integer> - Maximum number of keys specified for query
|
|
# * 'Name'<~String> - Name of the bucket
|
|
# * 'Prefix'<~String> - Prefix specified for query
|
|
# * 'Contents'<~Array>:
|
|
# * 'ETag'<~String>: Etag of object
|
|
# * 'Key'<~String>: Name of object
|
|
# * 'LastModified'<~String>: Timestamp of last modification of object
|
|
# * 'Owner'<~Hash>:
|
|
# * 'DisplayName'<~String> - Display name of object owner
|
|
# * 'ID'<~String> - Id of object owner
|
|
# * 'Size'<~Integer> - Size of object
|
|
# * 'StorageClass'<~String> - Storage class of object
|
|
def get_bucket(bucket_name, options = {})
|
|
query = ''
|
|
for key, value in options
|
|
query << "#{key}=#{value};"
|
|
end
|
|
query.chop!
|
|
request({
|
|
:expects => 200,
|
|
:headers => {},
|
|
:host => "#{bucket_name}.#{@host}",
|
|
:method => 'GET',
|
|
:parser => Fog::Parsers::AWS::S3::GetBucket.new,
|
|
:query => query
|
|
})
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
else
|
|
|
|
module Fog
|
|
module AWS
|
|
class S3
|
|
|
|
# FIXME: implement delimiter
|
|
def get_bucket(bucket_name, options = {})
|
|
response = Fog::Response.new
|
|
if bucket = Fog::AWS::S3.data[:buckets][bucket_name]
|
|
response.status = 200
|
|
response.body = {
|
|
'Contents' => bucket[:objects].values.sort {|x,y| x['Key'] <=> y['Key']}.reject do |object|
|
|
(options['prefix'] && object['Key'][0...options['prefix'].length] != options['prefix']) ||
|
|
(options['marker'] && object['Key'] <= options['marker'])
|
|
end.map do |object|
|
|
data = object.reject {|key, value| !['ETag', 'Key', 'LastModified', 'Owner', 'Size', 'StorageClass'].include?(key)}
|
|
data.merge!({
|
|
'LastModified' => Time.parse(data['LastModified']),
|
|
'Size' => data['Size'].to_i
|
|
})
|
|
data
|
|
end,
|
|
'IsTruncated' => false,
|
|
'Marker' => options['marker'] || '',
|
|
'MaxKeys' => options['max-keys'] || 1000,
|
|
'Name' => bucket['Name'],
|
|
'Prefix' => options['prefix'] || ''
|
|
}
|
|
if options['max-keys'] && options['max-keys'] < response.body['Contents'].length
|
|
response.body['IsTruncated'] = true
|
|
response.body['Contents'] = response.body['Contents'][0...options['max-keys']]
|
|
end
|
|
else
|
|
response.status = 404
|
|
raise(Fog::Errors.status_error(200, 404, response))
|
|
end
|
|
response
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|