Class: RestClient::Payload::Base
- Inherits:
-
Object
- Object
- RestClient::Payload::Base
show all
- Defined in:
- lib/restclient/payload.rb
Instance Method Summary
collapse
Constructor Details
#initialize(params) ⇒ Base
Returns a new instance of Base.
37
38
39
|
# File 'lib/restclient/payload.rb', line 37
def initialize(params)
build_stream(params)
end
|
Instance Method Details
#build_stream(params) ⇒ Object
41
42
43
44
|
# File 'lib/restclient/payload.rb', line 41
def build_stream(params)
@stream = StringIO.new(params)
@stream.seek(0)
end
|
#close ⇒ Object
93
94
95
|
# File 'lib/restclient/payload.rb', line 93
def close
@stream.close
end
|
#flatten_params(params, parent_key = nil) ⇒ Object
Flatten parameters by converting hashes of hashes to flat hashes => {keys2 => value} will be transformed into [keys1, value]
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# File 'lib/restclient/payload.rb', line 54
def flatten_params(params, parent_key = nil)
result = []
params.each do |key, value|
calculated_key = parent_key ? "#{parent_key}[#{handle_key(key)}]" : handle_key(key)
if value.is_a? Hash
result += flatten_params(value, calculated_key)
elsif value.is_a? Array
result += flatten_params_array(value, calculated_key)
else
result << [calculated_key, value]
end
end
result
end
|
#flatten_params_array(value, calculated_key) ⇒ Object
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# File 'lib/restclient/payload.rb', line 69
def flatten_params_array value, calculated_key
result = []
value.each do |elem|
if elem.is_a? Hash
result += flatten_params(elem, calculated_key)
elsif elem.is_a? Array
result += flatten_params_array(elem, calculated_key)
else
result << ["#{calculated_key}[]", elem]
end
end
result
end
|
83
84
85
|
# File 'lib/restclient/payload.rb', line 83
def
{'Content-Length' => size.to_s}
end
|
#inspect ⇒ Object
97
98
99
100
101
|
# File 'lib/restclient/payload.rb', line 97
def inspect
result = to_s.inspect
@stream.seek(0)
result
end
|
#read(bytes = nil) ⇒ Object
Also known as:
to_s
46
47
48
|
# File 'lib/restclient/payload.rb', line 46
def read(bytes=nil)
@stream.read(bytes)
end
|
#short_inspect ⇒ Object
103
104
105
|
# File 'lib/restclient/payload.rb', line 103
def short_inspect
(size > 500 ? "#{size} byte(s) length" : inspect)
end
|
#size ⇒ Object
Also known as:
length
87
88
89
|
# File 'lib/restclient/payload.rb', line 87
def size
@stream.size
end
|