Class: ActiveSupport::ParameterFilter
- Defined in:
- lib/active_support/parameter_filter.rb
Overview
ParameterFilter
replaces values in a Hash
-like object if their keys match one of the specified filters.
Matching based on nested keys is possible by using dot notation, e.g. "credit_card.number"
.
If a proc is given as a filter, each key and value of the Hash
-like and of any nested Hash
es will be passed to it. The value or key can then be mutated as desired using methods such as String#replace
.
# Replaces values with "[FILTERED]" for keys that match /password/i.
ActiveSupport::ParameterFilter.new([:password])
# Replaces values with "[FILTERED]" for keys that match /foo|bar/i.
ActiveSupport::ParameterFilter.new([:foo, "bar"])
# Replaces values for the exact key "pin" and for keys that begin with
# "pin_". Does not match keys that otherwise include "pin" as a
# substring, such as "shipping_id".
ActiveSupport::ParameterFilter.new([/\Apin\z/, /\Apin_/])
# Replaces the value for :code in `{ credit_card: { code: "xxxx" } }`.
# Does not change `{ file: { code: "xxxx" } }`.
ActiveSupport::ParameterFilter.new(["credit_card.code"])
# Reverses values for keys that match /secret/i.
ActiveSupport::ParameterFilter.new([-> (k, v) do
v.reverse! if /secret/i.match?(k)
end])
Defined Under Namespace
Classes: CompiledFilter
Constant Summary collapse
- FILTERED =
:nodoc:
"[FILTERED]"
Instance Method Summary collapse
-
#filter(params) ⇒ Object
Mask value of
params
if key matches one of filters. -
#filter_param(key, value) ⇒ Object
Returns filtered value for given key.
-
#initialize(filters = [], mask: FILTERED) ⇒ ParameterFilter
constructor
Create instance with given filters.
Constructor Details
#initialize(filters = [], mask: FILTERED) ⇒ ParameterFilter
Create instance with given filters. Supported type of filters are String
, Regexp
, and Proc
. Other types of filters are treated as String
using to_s
. For Proc
filters, key, value, and optional original hash is passed to block arguments.
Options
-
:mask
- A replaced object when filtered. Defaults to"[FILTERED]"
.
46 47 48 49 |
# File 'lib/active_support/parameter_filter.rb', line 46 def initialize(filters = [], mask: FILTERED) @filters = filters @mask = mask end |
Instance Method Details
#filter(params) ⇒ Object
Mask value of params
if key matches one of filters.
52 53 54 |
# File 'lib/active_support/parameter_filter.rb', line 52 def filter(params) compiled_filter.call(params) end |
#filter_param(key, value) ⇒ Object
Returns filtered value for given key. For Proc
filters, third block argument is not populated.
57 58 59 |
# File 'lib/active_support/parameter_filter.rb', line 57 def filter_param(key, value) @filters.empty? ? value : compiled_filter.value_for_key(key, value) end |