2010-03-14 23:11:43 -04:00
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
module SimpleDB
|
|
|
|
class Real
|
2009-09-08 22:57:53 -04:00
|
|
|
|
|
|
|
# List metadata for SimpleDB domain
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * domain_name<~String> - Name of domain. Must be between 3 and 255 of the
|
|
|
|
# following characters: a-z, A-Z, 0-9, '_', '-' and '.'.
|
|
|
|
# * item_name<~String> - Name of the item. May use any UTF-8 characters valid
|
|
|
|
# in xml. Control characters and sequences not allowed in xml are not
|
|
|
|
# valid. Can be up to 1024 bytes long.
|
|
|
|
# * attributes<~Array> - Attributes to return from the item. Defaults to
|
2010-03-14 23:11:43 -04:00
|
|
|
# {}, which will return all attributes. Attribute names and values may use
|
2009-09-08 22:57:53 -04:00
|
|
|
# any UTF-8 characters valid in xml. Control characters and sequences not
|
|
|
|
# allowed in xml are not valid. Each name and value can be up to 1024
|
|
|
|
# bytes long.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
2009-11-02 21:48:49 -05:00
|
|
|
# * response<~Excon::Response>:
|
2009-09-08 22:57:53 -04:00
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'Attributes' - list of attribute name/values for the item
|
|
|
|
# * 'BoxUsage'
|
|
|
|
# * 'RequestId'
|
2010-03-14 23:11:43 -04:00
|
|
|
def get_attributes(domain_name, item_name, attributes = {})
|
|
|
|
|
2009-09-08 22:57:53 -04:00
|
|
|
request({
|
2010-03-16 00:58:57 -04:00
|
|
|
'Action' => 'GetAttributes',
|
|
|
|
'DomainName' => domain_name,
|
|
|
|
'ItemName' => item_name,
|
|
|
|
:parser => Fog::Parsers::AWS::SimpleDB::GetAttributes.new(@nil_string)
|
|
|
|
}.merge!(encode_attribute_names(attributes)))
|
2009-09-08 22:57:53 -04:00
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
|
2010-03-14 23:11:43 -04:00
|
|
|
class Mock
|
2009-09-08 22:57:53 -04:00
|
|
|
|
|
|
|
def get_attributes(domain_name, item_name, attributes = nil)
|
2009-11-20 14:08:08 -05:00
|
|
|
response = Excon::Response.new
|
2010-03-14 23:11:43 -04:00
|
|
|
if @data[:domains][domain_name]
|
2009-09-08 22:57:53 -04:00
|
|
|
object = {}
|
|
|
|
if attributes
|
|
|
|
for attribute in attributes
|
2010-03-14 23:11:43 -04:00
|
|
|
if @data[:domains][domain_name][item_name] && @data[:domains][domain_name][item_name]
|
|
|
|
object[attribute] = @data[:domains][domain_name][item_name][attribute]
|
2009-09-08 22:57:53 -04:00
|
|
|
end
|
|
|
|
end
|
2010-03-14 23:11:43 -04:00
|
|
|
elsif @data[:domains][domain_name][item_name]
|
|
|
|
object = @data[:domains][domain_name][item_name]
|
2009-09-08 22:57:53 -04:00
|
|
|
end
|
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'Attributes' => object,
|
|
|
|
'BoxUsage' => Fog::AWS::Mock.box_usage,
|
|
|
|
'RequestId' => Fog::AWS::Mock.request_id
|
|
|
|
}
|
|
|
|
else
|
|
|
|
response.status = 400
|
2009-11-20 14:08:08 -05:00
|
|
|
raise(Excon::Errors.status_error({:expects => 200}, response))
|
2009-09-08 22:57:53 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|