instance method normalize_encode_params

Ruby on Rails 4.0.13

Since v4.0.13 Last seen in v4.2.9 Private

Available in: v4.0.13 v4.1.16 v4.2.9

Signature

normalize_encode_params(params)

Convert nested Hash to HashWithIndifferentAccess and UTF-8 encode both keys and values in nested Hash.

TODO: Validate that the characters are UTF-8. If they aren’t, you’ll get a weird error down the road, but our form handling should really prevent that from happening

Parameters

params req
Source
# File actionpack/lib/action_dispatch/http/parameters.rb, line 59
      def normalize_encode_params(params)
        if params.is_a?(String)
          return params.force_encoding(Encoding::UTF_8).encode!
        elsif !params.is_a?(Hash)
          return params
        end

        new_hash = {}
        params.each do |k, v|
          new_key = k.is_a?(String) ? k.dup.force_encoding(Encoding::UTF_8).encode! : k
          new_hash[new_key] =
            case v
            when Hash
              normalize_encode_params(v)
            when Array
              v.map! {|el| normalize_encode_params(el) }
            else
              normalize_encode_params(v)
            end
        end
        new_hash.with_indifferent_access
      end

Defined in actionpack/lib/action_dispatch/http/parameters.rb line 59 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActionDispatch::Http::Parameters

Type at least 2 characters to search.

↑↓ navigate · open · esc close