2010-03-19 21:29:42 -04:00
|
|
|
module Fog
|
2011-06-15 17:26:43 -04:00
|
|
|
module Storage
|
|
|
|
class Rackspace
|
2010-03-19 21:29:42 -04:00
|
|
|
class Real
|
2009-10-26 20:56:08 -04:00
|
|
|
|
2010-02-27 16:39:33 -05:00
|
|
|
# Get details for container and total bytes stored
|
2009-10-26 20:56:08 -04:00
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * container<~String> - Name of container to retrieve info for
|
|
|
|
# * options<~String>:
|
|
|
|
# * 'limit'<~String> - Maximum number of objects to return
|
|
|
|
# * 'marker'<~String> - Only return objects whose name is greater than marker
|
|
|
|
# * 'prefix'<~String> - Limits results to those starting with prefix
|
|
|
|
# * 'path'<~String> - Return objects nested in the pseudo path
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-10-26 20:56:08 -04:00
|
|
|
# * headers<~Hash>:
|
|
|
|
# * 'X-Account-Container-Count'<~String> - Count of containers
|
|
|
|
# * 'X-Account-Bytes-Used'<~String> - Bytes used
|
2009-11-05 12:24:58 -05:00
|
|
|
# * body<~Array>:
|
2010-02-27 16:39:33 -05:00
|
|
|
# * 'bytes'<~Integer> - Number of bytes used by container
|
|
|
|
# * 'count'<~Integer> - Number of items in container
|
|
|
|
# * 'name'<~String> - Name of container
|
2009-11-05 12:24:58 -05:00
|
|
|
# * item<~Hash>:
|
|
|
|
# * 'bytes'<~String> - Size of object
|
|
|
|
# * 'content_type'<~String> Content-Type of object
|
|
|
|
# * 'hash'<~String> - Hash of object (etag?)
|
|
|
|
# * 'last_modified'<~String> - Last modified timestamp
|
|
|
|
# * 'name'<~String> - Name of object
|
2009-10-26 20:56:08 -04:00
|
|
|
def get_container(container, options = {})
|
2011-01-26 14:15:34 -05:00
|
|
|
options = options.reject {|key, value| value.nil?}
|
2011-06-15 17:26:43 -04:00
|
|
|
request(
|
2009-10-26 20:56:08 -04:00
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
2011-03-23 20:54:37 -04:00
|
|
|
:path => URI.escape(container),
|
2010-06-05 17:19:39 -04:00
|
|
|
:query => {'format' => 'json'}.merge!(options)
|
2009-10-26 20:56:08 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|