Type:
Module
Constants:
ENV_MATCH : [/RAW_POST_DATA/, "rack.request.form_vars"]
NULL_PARAM_FILTER : ParameterFilter.new
NULL_ENV_FILTER : ParameterFilter.new ENV_MATCH
KV_RE : '[^&;=]+'
PAIR_RE : %r{(#{KV_RE})=(#{KV_RE})}

Allows you to specify sensitive parameters which will be replaced from the request log by looking in the query string of the request and all subhashes of the params hash to filter. If a block is given, each key and value of the params hash and all subhashes is passed to it, the value or key can be replaced using String#replace or similar method.

env["action_dispatch.parameter_filter"] = [:password]
=> replaces the value to all keys matching /password/i with "[FILTERED]"

env["action_dispatch.parameter_filter"] = [:foo, "bar"]
=> replaces the value to all keys matching /foo|bar/i with "[FILTERED]"

env["action_dispatch.parameter_filter"] = lambda do |k,v|
  v.reverse! if k =~ /secret/i
end
=> reverses the value to all keys matching /secret/i
filtered_path

filtered_path() Instance Public methods Reconstructed a path with all sensitive

2015-06-20 00:00:00
filtered_parameters

filtered_parameters() Instance Public methods Return a hash of parameters with

2015-06-20 00:00:00
env_filter

env_filter() Instance Protected methods

2015-06-20 00:00:00
filtered_query_string

filtered_query_string() Instance Protected methods

2015-06-20 00:00:00
parameter_filter_for

parameter_filter_for(filters) Instance Protected methods

2015-06-20 00:00:00
filtered_env

filtered_env() Instance Public methods Return a hash of request.env with all

2015-06-20 00:00:00
new

new(env) Class Public methods

2015-06-20 00:00:00
parameter_filter

parameter_filter() Instance Protected methods

2015-06-20 00:00:00