Module: HTTParty::HashConversions
- Defined in:
- lib/httparty/hash_conversions.rb
Class Method Summary collapse
- .normalize_keys(key, value) ⇒ Object
-
.normalize_param(key, value) ⇒ String
This key value pair as a param.
-
.to_params(hash) ⇒ String
This hash as a query string.
Class Method Details
.normalize_keys(key, value) ⇒ Object
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 61 62 63 64 65 66 67 68 69 |
# File 'lib/httparty/hash_conversions.rb', line 36 def self.normalize_keys(key, value) stack = [] normalized_keys = [] if value.respond_to?(:to_ary) if value.empty? normalized_keys << ["#{key}[]", ''] else normalized_keys = value.to_ary.flat_map do |element| normalize_keys("#{key}[]", element) end end elsif value.respond_to?(:to_hash) stack << [key, value.to_hash] else normalized_keys << [key.to_s, value] end stack.each do |parent, hash| hash.each do |child_key, child_value| if child_value.respond_to?(:to_hash) stack << ["#{parent}[#{child_key}]", child_value.to_hash] elsif child_value.respond_to?(:to_ary) child_value.to_ary.each do |v| normalized_keys << normalize_keys("#{parent}[#{child_key}][]", v).flatten end else normalized_keys << normalize_keys("#{parent}[#{child_key}]", child_value).flatten end end end normalized_keys end |
.normalize_param(key, value) ⇒ String
Returns This key value pair as a param.
28 29 30 31 32 33 34 |
# File 'lib/httparty/hash_conversions.rb', line 28 def self.normalize_param(key, value) normalized_keys = normalize_keys(key, value) normalized_keys.flatten.each_slice(2).inject(''.dup) do |string, (k, v)| string << "#{ERB::Util.url_encode(k)}=#{ERB::Util.url_encode(v.to_s)}&" end end |
.to_params(hash) ⇒ String
Returns This hash as a query string.
18 19 20 |
# File 'lib/httparty/hash_conversions.rb', line 18 def self.to_params(hash) hash.to_hash.map { |k, v| normalize_param(k, v) }.join.chop end |