Class: RestClient::Payload::Multipart
- Inherits:
-
Base
- Object
- Base
- RestClient::Payload::Multipart
show all
- Defined in:
- lib/restclient/payload.rb
Constant Summary
collapse
- EOL =
"\r\n"
Instance Method Summary
collapse
Methods inherited from Base
#escape, #flatten_params, #initialize, #inspect, #read, #short_inspect, #size
Instance Method Details
#boundary ⇒ Object
165
166
167
|
# File 'lib/restclient/payload.rb', line 165
def boundary
@boundary ||= rand(1_000_000).to_s
end
|
#build_stream(params) ⇒ Object
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# File 'lib/restclient/payload.rb', line 112
def build_stream(params)
b = "--#{boundary}"
@stream = Tempfile.new("RESTClient.Stream.#{rand(1000)}")
@stream.write(b + EOL)
if params.is_a? Hash
x = flatten_params(params).to_a
else
x = params.to_a
end
last_index = x.length - 1
x.each_with_index do |a, index|
k, v = *a
if v.respond_to?(:read) && v.respond_to?(:path)
create_file_field(@stream, k, v)
else
create_regular_field(@stream, k, v)
end
@stream.write(EOL + b)
@stream.write(EOL) unless last_index == index
end
@stream.write('--')
@stream.write(EOL)
@stream.seek(0)
end
|
#close ⇒ Object
173
174
175
|
# File 'lib/restclient/payload.rb', line 173
def close
@stream.close
end
|
#create_file_field(s, k, v) ⇒ Object
147
148
149
150
151
152
153
154
155
156
157
158
|
# File 'lib/restclient/payload.rb', line 147
def create_file_field(s, k, v)
begin
s.write("Content-Disposition: form-data; name=\"#{k}\"; filename=\"#{v.respond_to?(:original_filename) ? v.original_filename : File.basename(v.path)}\"#{EOL}")
s.write("Content-Type: #{v.respond_to?(:content_type) ? v.content_type : mime_for(v.path)}#{EOL}")
s.write(EOL)
while data = v.read(8124)
s.write(data)
end
ensure
v.close
end
end
|
#create_regular_field(s, k, v) ⇒ Object
140
141
142
143
144
145
|
# File 'lib/restclient/payload.rb', line 140
def create_regular_field(s, k, v)
s.write("Content-Disposition: form-data; name=\"#{k}\"")
s.write(EOL)
s.write(EOL)
s.write(v)
end
|
169
170
171
|
# File 'lib/restclient/payload.rb', line 169
def
super.merge({'Content-Type' => %Q{multipart/form-data; boundary="#{boundary}"}})
end
|
#mime_for(path) ⇒ Object
160
161
162
163
|
# File 'lib/restclient/payload.rb', line 160
def mime_for(path)
mime = MIME::Types.type_for path
mime.empty? ? 'text/plain' : mime[0].content_type
end
|