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

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

Overview

:nodoc:

Class Method Summary collapse

Class Method Details

.action_encoding_template(request, controller, action) ⇒ Object

:nodoc:



99
100
101
102
103
# 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) ⇒ Object



84
85
86
87
88
89
90
91
92
93
94
95
96
97
# 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