Sha256: 81e3a312b0a3e84e628060adab00b1312a9ab282efc72022c0ae74822a41cb40

Contents?: true

Size: 1.84 KB

Versions: 10

Compression:

Stored size: 1.84 KB

Contents

require 'active_support/core_ext/object/blank'
require 'active_support/core_ext/hash/keys'
require 'active_support/core_ext/object/duplicable'

module ActionDispatch
  module Http
    # Allows you to specify sensitive parameters which will be replaced from
    # the request log by looking in all subhashes of the param hash for keys
    # to filter. If a block is given, each key and value of the parameter
    # hash and all subhashes is passed to it, the value or key can be replaced
    # using String#replace or similar method.
    #
    # Examples:
    #
    #   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
    #
    module FilterParameters
      extend ActiveSupport::Concern

      @@parameter_filter_for  = {}

      # Return a hash of parameters with all sensitive data replaced.
      def filtered_parameters
        @filtered_parameters ||= parameter_filter.filter(parameters)
      end

      # Return a hash of request.env with all sensitive data replaced.
      def filtered_env
        @filtered_env ||= env_filter.filter(@env)
      end

    protected

      def parameter_filter
        parameter_filter_for(@env["action_dispatch.parameter_filter"])
      end

      def env_filter
        parameter_filter_for(Array.wrap(@env["action_dispatch.parameter_filter"]) << /RAW_POST_DATA/)
      end

      def parameter_filter_for(filters)
        @@parameter_filter_for[filters] ||= ParameterFilter.new(filters)
      end

    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
actionpack-3.0.5 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.5.rc1 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.4 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.4.rc1 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.3 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.2 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.1 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.0 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.0.rc2 lib/action_dispatch/http/filter_parameters.rb
actionpack-3.0.0.rc lib/action_dispatch/http/filter_parameters.rb