2009-09-08 00:25:50 -04:00
|
|
|
unless Fog.mocking?
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class SimpleDB
|
|
|
|
|
|
|
|
# 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<~Fog::AWS::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'BoxUsage'
|
|
|
|
# * 'RequestId'
|
|
|
|
def batch_put_attributes(domain_name, items, replace_attributes = Hash.new([]))
|
|
|
|
request({
|
|
|
|
'Action' => 'BatchPutAttributes',
|
|
|
|
'DomainName' => domain_name
|
|
|
|
}.merge!(encode_batch_attributes(items, replace_attributes)), Fog::Parsers::AWS::SimpleDB::Basic.new(@nil_string))
|
|
|
|
end
|
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
2009-09-08 00:25:50 -04:00
|
|
|
end
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
|
2009-09-08 00:25:50 -04:00
|
|
|
else
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module AWS
|
|
|
|
class SimpleDB
|
|
|
|
|
|
|
|
def batch_put_attributes(domain_name, items, replace_attributes = Hash.new([]))
|
|
|
|
response = Fog::Response.new
|
|
|
|
if Fog::AWS::SimpleDB.data[:domains][domain_name]
|
|
|
|
for key, value in items do
|
|
|
|
for item in value do
|
|
|
|
if replace_attributes[key] && replace_attributes[key].include?(value)
|
|
|
|
Fog::AWS::SimpleDB.data[:domains][domain_name][key] = []
|
|
|
|
else
|
|
|
|
Fog::AWS::SimpleDB.data[:domains][domain_name][key] ||= []
|
|
|
|
end
|
|
|
|
Fog::AWS::SimpleDB.data[:domains][domain_name][key] << 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(Fog::Errors.status_error(200, 400, response))
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|
|
|
|
end
|
2009-09-08 00:25:50 -04:00
|
|
|
|
2009-07-13 22:14:59 -04:00
|
|
|
end
|