Class: Train::Transports::VMware::Connection
- Inherits:
-
BaseConnection
- Object
- BaseConnection
- Train::Transports::VMware::Connection
- Defined in:
- lib/train/transports/vmware.rb
Overview
rubocop:disable Metrics/ClassLength
Constant Summary collapse
- POWERSHELL_PROMPT_REGEX =
/PS\s.*> $/.freeze
Instance Method Summary collapse
- #connect ⇒ Object
-
#initialize(options) ⇒ Connection
constructor
A new instance of Connection.
- #platform ⇒ Object
- #run_command_via_connection(cmd, &_data_handler) ⇒ Object
- #unique_identifier ⇒ Object
- #uri ⇒ Object
Constructor Details
#initialize(options) ⇒ Connection
Returns a new instance of Connection.
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 |
# File 'lib/train/transports/vmware.rb', line 22 def initialize() super() [:viserver] = [:viserver] || [:host] [:username] = [:username] || [:user] @username = [:username] @viserver = [:viserver] @session = nil @stdout_buffer = "" @stderr_buffer = "" @powershell_binary = detect_powershell_binary if @powershell_binary == :powershell require "train/transports/local" @powershell = Train::Transports::Local::Connection.new() end if [:insecure] == true run_command_via_connection("Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Scope Session -Confirm:$False") end @platform_details = { release: "vmware-powercli-#{powercli_version}", } connect end |
Instance Method Details
#connect ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/train/transports/vmware.rb', line 52 def connect login_command = "Connect-VIServer #{[:viserver]} -User #{[:username]} -Password #{[:password]} | Out-Null" result = run_command_via_connection(login_command) if result.exit_status != 0 = "Unable to connect to VIServer at #{[:viserver]}. " case result.stderr when /Invalid server certificate/ += "Certification verification failed. Please use `--insecure` or set `Set-PowerCLIConfiguration -InvalidCertificateAction Ignore` in PowerShell" when /incorrect user name or password/ += "Incorrect username or password" else += result.stderr.gsub(/-Password .*\s/, "-Password REDACTED") end raise end end |
#platform ⇒ Object
71 72 73 |
# File 'lib/train/transports/vmware.rb', line 71 def platform force_platform!("vmware", @platform_details) end |
#run_command_via_connection(cmd, &_data_handler) ⇒ Object
75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/train/transports/vmware.rb', line 75 def run_command_via_connection(cmd, &_data_handler) if @powershell_binary == :pwsh result = parse_pwsh_output(cmd) # Attach exit status to result exit_status = parse_pwsh_output("echo $?").stdout.chomp result.exit_status = exit_status == "True" ? 0 : 1 result else @powershell.run_command(cmd) end end |
#unique_identifier ⇒ Object
89 90 91 92 |
# File 'lib/train/transports/vmware.rb', line 89 def unique_identifier uuid_command = "(Get-VMHost | Get-View).hardware.systeminfo.uuid" run_command_via_connection(uuid_command).stdout.chomp end |
#uri ⇒ Object
94 95 96 |
# File 'lib/train/transports/vmware.rb', line 94 def uri "vmware://#{@username}@#{@viserver}" end |