This file is indexed.

/usr/lib/ruby/vendor_ruby/ethon/easy/mirror.rb is in ruby-ethon 0.7.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
module Ethon
  class Easy
    class Mirror
      attr_reader :options
      alias_method :to_hash, :options

      def self.informations_to_mirror
        Informations::AVAILABLE_INFORMATIONS.keys +
          [:return_code, :response_headers, :response_body, :debug_info]
      end

      def self.informations_to_log
        [:url, :response_code, :return_code, :total_time]
      end

      def self.from_easy(easy)
        options = {}
        informations_to_mirror.each do |info|
          options[info] = easy.send(info)
        end
        new(options)
      end

      def initialize(options = {})
        @options = options
      end

      def log_informations
        Hash[*self.class.informations_to_log.map do |info|
          [info, options[info]]
        end.flatten]
      end

      informations_to_mirror.each do |info|
        eval %Q|def #{info}; options[#{info}]; end|
      end
    end
  end
end