Class: ActionDispatch::Request::Utils

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

Overview

:nodoc:

Defined Under Namespace

Classes: NoNilParamEncoder, ParamEncoder

Class Method Summary collapse

Class Method Details

.check_param_encoding(params) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/action_dispatch/request/utils.rb', line 26

def self.check_param_encoding(params)
  case params
  when Array
    params.each { |element| check_param_encoding(element) }
  when Hash
    params.each_value { |value| check_param_encoding(value) }
  when String
    unless params.valid_encoding?
      # Raise Rack::Utils::InvalidParameterError for consistency with Rack.
      # ActionDispatch::Request#GET will re-raise as a BadRequest error.
      raise Rack::Utils::InvalidParameterError, "Non UTF-8 value: #{params}"
    end
  end
end

.each_param_value(params, &block) ⇒ Object



7
8
9
10
11
12
13
14
15
16
# File 'lib/action_dispatch/request/utils.rb', line 7

def self.each_param_value(params, &block)
  case params
  when Array
    params.each { |element| each_param_value(element, &block) }
  when Hash
    params.each_value { |value| each_param_value(value, &block) }
  when String
    block.call params
  end
end

.normalize_encode_params(params) ⇒ Object



18
19
20
21
22
23
24
# File 'lib/action_dispatch/request/utils.rb', line 18

def self.normalize_encode_params(params)
  if perform_deep_munge
    NoNilParamEncoder.normalize_encode_params params
  else
    ParamEncoder.normalize_encode_params params
  end
end