aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/parameters.rb
blob: 68ba3637bf944a1ba1e709de46795e8000caa1c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
require 'active_support/core_ext/hash/keys'

module ActionDispatch
  module Http
    module Parameters
      # Returns both GET and POST \parameters in a single hash.
      def parameters
        @env["action_dispatch.request.parameters"] ||= request_parameters.merge(query_parameters).update(path_parameters).with_indifferent_access
      end
      alias :params :parameters

      def path_parameters=(parameters) #:nodoc:
        @env.delete("action_dispatch.request.symbolized_path_parameters")
        @env.delete("action_dispatch.request.parameters")
        @env["action_dispatch.request.path_parameters"] = parameters
      end

      # The same as <tt>path_parameters</tt> with explicitly symbolized keys.
      def symbolized_path_parameters
        @env["action_dispatch.request.symbolized_path_parameters"] ||= path_parameters.symbolize_keys
      end

      # Returns a hash with the \parameters used to form the \path of the request.
      # Returned hash keys are strings:
      #
      #   {'action' => 'my_action', 'controller' => 'my_controller'}
      #
      # See <tt>symbolized_path_parameters</tt> for symbolized keys.
      def path_parameters
        @env["action_dispatch.request.path_parameters"] ||= {}
      end

      def filter_parameters
        # TODO: Remove dependency on controller
        if controller = @env['action_controller.instance']
          controller.send(:filter_parameters, params)
        else
          params
        end
      end

      def filter_env
        if controller = @env['action_controller.instance']
          @env.map do |key, value|
            if (key =~ /RAW_POST_DATA/i)
              '[FILTERED]'
            else
              controller.send(:filter_parameters, {key => value}).values[0]
            end
          end
        else
          env
        end
      end

    private
      # Convert nested Hashs to HashWithIndifferentAccess
      def normalize_parameters(value)
        case value
        when Hash
          h = {}
          value.each { |k, v| h[k] = normalize_parameters(v) }
          h.with_indifferent_access
        when Array
          value.map { |e| normalize_parameters(e) }
        else
          value
        end
      end
    end
  end
end