This file is indexed.

/usr/lib/ruby/vendor_ruby/fog/core/utils.rb is in ruby-fog-core 1.22.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module Fog::Core::Utils
  # This helper prepares a Hash of settings for passing into {Fog::Service.new}.
  #
  # The only special consideration is if +:header+ key is passed in the contents are unchanged. This
  # allows the headers to be passed through to requests to customise HTTP headers without them being
  # broken by the +#to_sym+ calls.
  #
  # @param [Hash] settings The String based Hash to prepare
  # @option settings [Hash] :headers Passed to the underlying {Fog::Core::Connection} unchanged
  # @return [Hash]
  #
  def self.prepare_service_settings(settings)
    if settings.is_a? Hash
      copy = Array.new
      settings.each do |key, value|
        obj = ![:headers].include?(key) ? self.prepare_service_settings(value) : value
        copy.push(key.to_sym, obj)
      end
      Hash[*copy]
    else
      settings
    end
  end
end