This file is indexed.

/usr/lib/ruby/vendor_ruby/fog/compute/ecloud/requests/virtual_machine_attach_disk.rb is in ruby-fog-ecloud 0.1.1-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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
module Fog
  module Compute
    class Ecloud
      module Shared
        def build_request_body_attach_disk(options)
          xml = Builder::XmlMarkup.new
          xml.AttachDisks(:name => options[:name]) do
            xml.DetachedDisks do
              xml.DetachedDisk(:href => options[:href], :name => options[:name], :type => "application/vnd.tmrk.cloud.detachedDisk")
            end
          end
        end
      end

      class Real
        def virtual_machine_attach_disk(href, options)
          body = build_request_body_attach_disk(options)
          request(
            :expects => 202,
            :method => "POST",
            :headers => {},
            :body => body,
            :uri => href,
            :parse => true
          )
        end
      end

      class Mock
        def virtual_machine_attach_disk(href, options)
          server_id        = href.match(/(\d+)/)[1].to_i
          server           = self.data[:servers][server_id]
          compute_pool_id  = server[:compute_pool_id]
          compute_pool     = self.data[:compute_pools][compute_pool_id]
          detached_disk_id = options[:href].match(/(\d+)/)[1].to_i
          detached_disk    = self.data[:detached_disks][detached_disk_id]
          new_index        = (server[:HardwareConfiguration][:Disks][:Disk].map { |h| h[:Index].to_i }.sort.last + 1).to_s
          detached_disk[:Index] = new_index
          server[:HardwareConfiguration][:Disks][:Disk] << Fog::Ecloud.keep(detached_disk, :Index, :Size, :Name)

          self.data[:detached_disks].delete(detached_disk_id)

          task_id = Fog::Mock.random_numbers(10).to_i
          task = {
            :id            => task_id,
            :href          => "/cloudapi/ecloud/tasks/#{task_id}",
            :type          => "application/vnd.tmrk.cloud.task",
            :Operation     => "Attach Disk",
            :Status        => "Complete",
            :ImpactedItem  => Fog::Ecloud.keep(server, :href, :type),
            :StartTime     => Time.now.iso8601,
            :CompletedTime => Time.now.iso8601,
            :InitiatedBy   => {},
          }
          self.data[:tasks][task_id] = task
          response(:body => task)
        end
      end
    end
  end
end