Class: ActionDispatch::Request::Utils::ParamEncoder

Inherits:
Object
  • Object
show all
Defined in:
lib/action_dispatch/request/utils.rb

Overview

:nodoc:

Direct Known Subclasses

NoNilParamEncoder

Class Method Summary collapse

Class Method Details

.handle_array(params) ⇒ Object



51
52
53
# File 'lib/action_dispatch/request/utils.rb', line 51

def self.handle_array(params)
  params.map! { |el| normalize_encode_params(el) }
end

.normalize_encode_params(params) ⇒ Object

Convert nested Hash to HashWithIndifferentAccess.



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# File 'lib/action_dispatch/request/utils.rb', line 34

def self.normalize_encode_params(params)
  case params
  when Array
    handle_array params
  when Hash
    if params.has_key?(:tempfile)
      ActionDispatch::Http::UploadedFile.new(params)
    else
      params.each_with_object({}) do |(key, val), new_hash|
        new_hash[key] = normalize_encode_params(val)
      end.with_indifferent_access
    end
  else
    params
  end
end