class ActiveSupport::ParameterFilter::CompiledFilter
Experimental RBS support (using type sampling data from the type_fusion
project).
# sig/active_support/parameter_filter.rbs class ActiveSupport::ParameterFilter::CompiledFilter def value_for_key: (String key, String value, ?Array[] parents, ?Hash original_params) -> String end
:nodoc:
def self.compile(filters, mask:)
def self.compile(filters, mask:) return lambda { |params| params.dup } if filters.empty? strings, regexps, blocks, deep_regexps, deep_strings = [], [], [], nil, nil filters.each do |item| case item when Proc blocks << item when Regexp if item.to_s.include?("\\.") (deep_regexps ||= []) << item else regexps << item end else s = Regexp.escape(item.to_s) if s.include?("\\.") (deep_strings ||= []) << s else strings << s end end end regexps << Regexp.new(strings.join("|"), true) unless strings.empty? (deep_regexps ||= []) << Regexp.new(deep_strings.join("|"), true) if deep_strings&.any? new regexps, deep_regexps, blocks, mask: mask end
def call(params, parents = [], original_params = params)
def call(params, parents = [], original_params = params) filtered_params = params.class.new params.each do |key, value| filtered_params[key] = value_for_key(key, value, parents, original_params) end filtered_params end
def initialize(regexps, deep_regexps, blocks, mask:)
def initialize(regexps, deep_regexps, blocks, mask:) @regexps = regexps @deep_regexps = deep_regexps&.any? ? deep_regexps : nil @blocks = blocks @mask = mask end
def value_for_key(key, value, parents = [], original_params = nil)
Experimental RBS support (using type sampling data from the type_fusion
project).
def value_for_key: (String key, String value, ? parents, ?(controller | String | action | String | _method | String | controller | String | action | String | id | String) original_params) -> String
This signature was generated using 2 samples from 1 application.
def value_for_key(key, value, parents = [], original_params = nil) parents.push(key) if deep_regexps if regexps.any? { |r| r.match?(key.to_s) } value = @mask elsif deep_regexps && (joined = parents.join(".")) && deep_regexps.any? { |r| r.match?(joined) } value = @mask elsif value.is_a?(Hash) value = call(value, parents, original_params) elsif value.is_a?(Array) # If we don't pop the current parent it will be duplicated as we # process each array value. parents.pop if deep_regexps value = value.map { |v| value_for_key(key, v, parents, original_params) } # Restore the parent stack after processing the array. parents.push(key) if deep_regexps elsif blocks.any? key = key.dup if key.duplicable? value = value.dup if value.duplicable? blocks.each { |b| b.arity == 2 ? b.call(key, value) : b.call(key, value, original_params) } end parents.pop if deep_regexps value end