Class: VagrantPlugins::Cloudcenter::Action::TerminateInstance

Inherits:
Object
  • Object
show all
Includes:
Vagrant::Util::Retryable
Defined in:
lib/vagrant-cloudcenter/action/terminate_instance.rb

Overview

This starts a stopped instance.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ TerminateInstance

Returns a new instance of TerminateInstance.



14
15
16
17
# File 'lib/vagrant-cloudcenter/action/terminate_instance.rb', line 14

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

Instance Method Details

#call(env) ⇒ Object



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
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
236
237
238
239
240
241
242
243
244
245
246
247
248
# File 'lib/vagrant-cloudcenter/action/terminate_instance.rb', line 19

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

  countdown = 24

  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

      begin 
        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

        if !response["jobs"].empty?
          jobID = response["jobs"][0]["id"]
        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 

      if !jobID.nil?
        begin
          encoded = URI.encode("https://#{username}:#{access_key}@#{host}/v2/jobs/#{jobID}");           

          if !use_https
            response = JSON.parse(RestClient::Request.execute(
                  :method => :delete,
                  :url => encoded,
                  :verify_ssl => false,
                  :accept => "json"
                ));
          else
            if ssl_ca_file.to_s.empty?
              response = JSON.parse(RestClient::Request.execute(
                :method => :delete,
                :url => encoded,
                :accept => "json"
                ));
            else
              response = JSON.parse(RestClient::Request.execute(
                  :method => :delete,
                  :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 
         
              while (countdown > 0 )
                
                countdown -= 1

                begin
                    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
                   
                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

                if response["jobs"].empty?
                  env[:state] = nil?
                  env[:ui].info(I18n.t("cloudcenter.terminated"))
                  break
                else
                  env[:ui].info(I18n.t("cloudcenter.terminating"))
                end
                
                sleep 20

              end 
          
    
      end
   

  @app.call(env)
end