123456789_123456789_123456789_123456789_123456789_

Class: ActionDispatch::Request::Utils::CustomParamEncoder

Do not use. This class is for internal use only.
Relationships & Source Files
Inherits: Object
Defined in: actionpack/lib/action_dispatch/request/utils.rb

Class Method Summary

Class Method Details

.action_encoding_template(request, controller, action)

[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/request/utils.rb', line 99

def self.action_encoding_template(request, controller, action) # :nodoc:
  request.controller_class_for(controller).action_encoding_template(action)
rescue MissingController
  nil
end

.encode(request, params, controller, action)

[ GitHub ]

  
# File 'actionpack/lib/action_dispatch/request/utils.rb', line 84

def self.encode(request, params, controller, action)
  return params unless controller && controller.valid_encoding? && encoding_template = action_encoding_template(request, controller, action)
  params.except(:controller, :action).each do |key, value|
    ActionDispatch::Request::Utils.each_param_value(value) do |param|
      # If `param` is frozen, it comes from the router defaults
      next if param.frozen?

      if encoding_template[key.to_s]
        param.force_encoding(encoding_template[key.to_s])
      end
    end
  end
  params
end