mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
d48d376e9c
* take the liberty of correcting Aws naming
60 lines
2.4 KiB
Ruby
60 lines
2.4 KiB
Ruby
module Fog
|
|
module AWS
|
|
class SimpleDB
|
|
class Real
|
|
# Put items attributes into a 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 '.'.
|
|
# * items<~Hash> - Keys are the items names and 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. Values are the
|
|
# attributes to add to the given item and may use 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
|
|
# * response<~Excon::Response>:
|
|
# * body<~Hash>:
|
|
# * 'BoxUsage'
|
|
# * 'RequestId'
|
|
def batch_put_attributes(domain_name, items, replace_attributes = Hash.new([]))
|
|
request({
|
|
'Action' => 'BatchPutAttributes',
|
|
'DomainName' => domain_name,
|
|
:parser => Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string)
|
|
}.merge!(encode_batch_attributes(items, replace_attributes)))
|
|
end
|
|
end
|
|
|
|
class Mock
|
|
def batch_put_attributes(domain_name, items, replace_attributes = Hash.new([]))
|
|
response = Excon::Response.new
|
|
if self.data[:domains][domain_name]
|
|
for item_name, attributes in items do
|
|
for key, value in attributes do
|
|
self.data[:domains][domain_name][item_name] ||= {}
|
|
if replace_attributes[item_name] && replace_attributes[item_name].include?(key)
|
|
self.data[:domains][domain_name][item_name][key.to_s] = []
|
|
else
|
|
self.data[:domains][domain_name][item_name][key.to_s] ||= []
|
|
end
|
|
self.data[:domains][domain_name][item_name][key.to_s] << value.to_s
|
|
end
|
|
end
|
|
response.status = 200
|
|
response.body = {
|
|
'BoxUsage' => Fog::AWS::Mock.box_usage,
|
|
'RequestId' => Fog::AWS::Mock.request_id
|
|
}
|
|
else
|
|
response.status = 400
|
|
raise(Excon::Errors.status_error({:expects => 200}, response))
|
|
end
|
|
response
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|