# typed: true module Datadog module AppSec module Contrib module Rails # Normalized extration of data from ActionDispatch::Request module Request def self.parsed_body(request) # usually Hash but can be a more complex # Hash when e.g coming from JSON or # with Rails advanced param square bracket parsing body = request.env['action_dispatch.request.request_parameters'] return if body.nil? body.reject do |k, _v| request.env['action_dispatch.request.path_parameters'].key?(k) end end def self.route_params(request) excluded = [:controller, :action] request.env['action_dispatch.request.path_parameters'].reject do |k, _v| excluded.include?(k) end end end end end end end