File: batch_put_attributes.rb

package info (click to toggle)
ruby-fog-aws 3.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 7,816 kB
  • sloc: ruby: 68,587; makefile: 6
file content (60 lines) | stat: -rw-r--r-- 2,459 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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