Class: VagrantPlugins::Cloudcenter::Action::Deploy

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

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ Deploy

Returns a new instance of Deploy.



16
17
18
19
# File 'lib/vagrant-cloudcenter/action/deploy.rb', line 16

def initialize(app, env)
  @app    = app
  @logger = Log4r::Logger.new("cloudcenter::action::connect")
end

Instance Method Details

#call(env) ⇒ Object



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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/vagrant-cloudcenter/action/deploy.rb', line 21

def call(env)
  
  # Get the rest API key for authentication
  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

  countdown = 24

  #@logger.info("Deploying VM to Cloudcenter...")

  begin

    if !File.exists?(env[:machine].provider_config.deployment_config)
      puts "\nMissing deployment_config file\n\n"
      exit
    end

    deployment_config = File.read(env[:machine].provider_config.deployment_config)
    tmp = JSON.parse(deployment_config)
    env[:machine_name] = tmp["name"]

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

    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,
          :accept => "json",
          :ssl_ca_file => ssl_ca_file.to_s
        ));
        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 == "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

    status = response["status"]

        # Wait for SSH to be ready.
        env[:ui].info(I18n.t("cloudcenter.waiting_for_ready"))
       
        while countdown > 0

          countdown -= 1
          
          # When an  instance comes up, it's networking may not be ready
          # by the time we connect.
          begin

              jobID = response["id"]

              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,
                      :accept => "json",
                      :ssl_ca_file => ssl_ca_file.to_s
                    ));
                    end
                end  

              status = response["status"]
              
              
              if status == "JobRunning" then 
                env[:machine_state_id]= :created
                break
              elsif status == "JobStarting" || status == "JobSubmitted" || status == "JobInProgress" || status == "JobResuming"
                env[:ui].info(I18n.t("cloudcenter.waiting_for_ssh"))
              elsif status == "JobError" 
                puts "\nError deploying VM...\n"
                puts "\n#{response['jobStatusMessage']}\n\n"
                exit
              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 == "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

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

    # Ready and booted!
    env[:ui].info(I18n.t("cloudcenter.ready"))
 

  @app.call(env)



end