Class: Typhoeus::ParamProcessor
- Inherits:
-
Object
- Object
- Typhoeus::ParamProcessor
- Defined in:
- lib/typhoeus/param_processor.rb
Class Method Summary collapse
- .process_value(current_value, options) ⇒ Object
- .traverse_params_hash(hash, result = nil, current_key = nil) ⇒ Object
Class Method Details
.process_value(current_value, options) ⇒ Object
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/typhoeus/param_processor.rb', line 15 def process_value(current_value, ) result = [:result] new_key = [:new_key] case current_value when Hash traverse_params_hash(current_value, result, new_key) when Array current_value.each do |v| result[:params] << [new_key, v.to_s] end when File, Tempfile filename = File.basename(current_value.path) types = MIME::Types.type_for(filename) result[:files] << [ new_key, filename, types.empty? ? 'application/octet-stream' : types[0].to_s, File.(current_value.path) ] else result[:params] << [new_key, current_value.to_s] end end |
.traverse_params_hash(hash, result = nil, current_key = nil) ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/typhoeus/param_processor.rb', line 4 def traverse_params_hash(hash, result = nil, current_key = nil) result ||= { :files => [], :params => [] } hash.keys.sort { |a, b| a.to_s <=> b.to_s }.collect do |key| new_key = (current_key ? "#{current_key}[#{key}]" : key).to_s current_value = hash[key] process_value current_value, :result => result, :new_key => new_key end result end |