Class: VagrantPlugins::Cloudcenter::Action::ReadSSHInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-cloudcenter/action/read_ssh_info.rb

Overview

This action reads the SSH info for the machine and puts it into the ‘:machine_ssh_info` key in the environment.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ ReadSSHInfo

Returns a new instance of ReadSSHInfo.



10
11
12
# File 'lib/vagrant-cloudcenter/action/read_ssh_info.rb', line 10

def initialize(app, env)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/vagrant-cloudcenter/action/read_ssh_info.rb', line 14

def call(env)
      
      if !File.exists?(env[:machine].provider_config.deployment_config)
        puts "Missing deployment_config file"
        exit
      end

  if !env[:machine_public_ip]
    
    begin
      
      if !env[:machine_name]
        deployment_config = JSON.parse(File.read(env[:machine].provider_config.deployment_config))
        env[:machine_name] = deployment_config["name"]
      end

      access_key = env[:machine].provider_config.access_key
      host = env[:machine].provider_config.host
      username = env[:machine].provider_config.username

      use_https = env[:machine].provider_config.use_https
      ssl_ca_file = env[:machine].provider_config.ssl_ca_file

      encoded = URI.encode("https://#{username}:#{access_key}@#{host}/v2/jobs?search=[deploymentEntity.name,fle,#{env[:machine_name]}]");           
    
      if !use_https
          response = JSON.parse(RestClient::Request.execute(
                :method => :get,
                :url => encoded,
                :verify_ssl => false,
                :accept => "json",
                :headers => {"Content-Type" => "application/json"}
              ));
        else
          if ssl_ca_file.to_s.empty?
            response = JSON.parse(RestClient::Request.execute(
                :method => :get,
                :url => encoded,
                :accept => "json",
                :headers => {"Content-Type" => "application/json"}
              ));
          else
            response = JSON.parse(RestClient::Request.execute(
                :method => :get,
                :url => encoded,
                :ssl_ca_file => ssl_ca_file.to_s,
                :accept => "json",
                :headers => {"Content-Type" => "application/json"}
              ));
          end
          
        end
      
      jobID = response["jobs"][0]["id"]

      rescue => e
        if e.to_s == "SSL_connect returned=1 errno=0 state=error: certificate verify failed"
          puts "\n ERROR: Failed to verify certificate\n\n"
          exit
        elsif e.to_s == "401 Unauthorized"
          puts "\n ERROR: Incorrect credentials\n\n"
          exit
        elsif e.to_s == "hostname \"#{host}\" does not match the server certificate"
          puts "\n ERROR: Hostname \"#{host}\" does not match the server certificate\n\n"
          exit
        elsif e.to_s.include? "No route to host"
          puts "\n ERROR: No route to host. Check connectivity and try again\n\n"
          exit
        elsif e.to_s.== "Timed out connecting to server"
          puts "\n ERROR: Timed out connecting to server. Check connectivity and try again\n\n"
          exit
        elsif e.to_s.== "getaddrinfo: nodename nor servname provided, or not known"
          puts "\n ERROR: Unable to connect to \"#{host}\" \n\n"
          exit
        else
          error = JSON.parse(e.response) 
          code = error["errors"][0]["code"] 

          puts "\n Error code: #{error['errors'][0]['code']}\n"
          puts "\n #{error['errors'][0]['message']}\n\n"

          exit
        end
      end 

      begin
        encoded = URI.encode("https://#{username}:#{access_key}@#{host}/v2/jobs/#{jobID}");           
    
        if !use_https
            response = JSON.parse(RestClient::Request.execute(
              :method => :get,
              :url => encoded,
              :verify_ssl => false,
              :accept => "json"
            ));
          else
            if ssl_ca_file.to_s.empty?
              response = JSON.parse(RestClient::Request.execute(
                :method => :get,
                :url => encoded,
                :accept => "json"
              ));
            else
              response = JSON.parse(RestClient::Request.execute(
                :method => :get,
                :url => encoded,
                :ssl_ca_file => ssl_ca_file.to_s,
                :accept => "json"
              ));
            end
          end

      rescue => e
        if e.to_s == "SSL_connect returned=1 errno=0 state=error: certificate verify failed"
          puts "\n ERROR: Failed to verify certificate\n\n"
          exit
        elsif e.to_s == "hostname \"#{host}\" does not match the server certificate"
          puts "\n ERROR: Hostname \"#{host}\" does not match the server certificate\n\n"
          exit
        elsif e.to_s == "401 Unauthorized"
          puts "\n ERROR: Incorrect credentials\n\n"
          exit
        elsif e.to_s.include? "No route to host"
          puts "\n ERROR: No route to host. Check connectivity and try again\n\n"
          exit
        elsif e.to_s.== "Timed out connecting to server"
          puts "\n ERROR: Timed out connecting to server. Check connectivity and try again\n\n"
          exit
        elsif e.to_s.== "getaddrinfo: nodename nor servname provided, or not known"
          puts "\n ERROR: Unable to connect to \"#{host}\" \n\n"
          exit
        else
          error = JSON.parse(e.response) 
          code = error["errors"][0]["code"] 

          puts "\n Error code: #{error['errors'][0]['code']}\n"
          puts "\n #{error['errors'][0]['message']}\n\n"

          exit
        end
      end 

      env[:machine_public_ip] = response["accessLink"][7,response.length]

  end 


  env[:machine_ssh_info] = { :host =>  env[:machine_public_ip], :port => 22, :username => "vagrant",:private_key_path => env[:machine].config.ssh.private_key_path}

  env[:ssh_info]  = { :host =>  env[:machine_public_ip], :port => 22, :username => "vagrant",:private_key_path => env[:machine].config.ssh.private_key_path}

  @app.call(env)
end