Sha256: aa3cb97db1a86b898bacd386854d0dca4550b5905ead77faefd1fe28ee27ec11

Contents?: true

Size: 1.63 KB

Versions: 35

Compression:

Stored size: 1.63 KB

Contents

module Fog
  module Compute
    class HPV2
      class Real

        # Retrieves the encrypted administrator password for a server running Windows.
        #
        # ==== Parameters
        # * 'server_id'<~String> - UUId of the server
        #
        # ==== Returns
        # * 'password_data'<~string>: Encrypted password for a server running Windows
        #
        def get_windows_password(server_id)
          # get console output assuming that the server is already in active state
          log_output = get_console_output(server_id, 400).body['output']
          # decrypt the log output to extract the encrypted, base64-encoded password
          encrypted_password = extract_password_from_log(log_output)
        end

      end

      class Mock

        def get_windows_password(server_id)
          # need to mock out the private key as well
          private_key = OpenSSL::PKey::RSA.generate(1024)
          public_key = private_key.public_key
          ### The original password is Passw0rd
          encoded_password = encrypt_using_public_key("Passw0rd", public_key)

          if list_servers_detail.body['servers'].detect {|_| _['id'] == server_id}
            # mock output for this call get_console_output(server_id, 400).body['output']
            log_output = "start junk [cloud-init] Encrypt random password\n-----BEGIN BASE64-ENCODED ENCRYPTED PASSWORD-----\n#{encoded_password}-----END BASE64-ENCODED ENCRYPTED PASSWORD-----\nend junk [cloud-init] Done\n"
            encrypted_password = extract_password_from_log(log_output)
          else
            raise Fog::Compute::HPV2::NotFound
          end
        end
      end
    end
  end
end

Version data entries

35 entries across 35 versions & 2 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-1.20.0 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-1.19.0 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/hp/requests/compute_v2/get_windows_password.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/hp/requests/compute_v2/get_windows_password.rb