Class: VagrantPlugins::Cloudcenter::Action::IsStopped

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

Overview

This can be used with “Call” built-in to check if the machine is stopped and branch in the middleware.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ IsStopped

Returns a new instance of IsStopped.



7
8
9
# File 'lib/vagrant-cloudcenter/action/is_stopped.rb', line 7

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

Instance Method Details

#call(env) ⇒ Object



11
12
13
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
167
168
169
170
171
172
173
174
175
176
177
178
179
# File 'lib/vagrant-cloudcenter/action/is_stopped.rb', line 11

def call(env)

      if !File.exists?(env[:machine].provider_config.deployment_config)
        puts "Missing deployment_config file"
        exit
      end
      
    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"] 

          if code ==  "DEPLOYMENT_STATUS_NOT_VALID_FOR_OPERATION"
            puts "\n Error code: #{error['errors'][0]['code']}\n"
            puts "\n #{error['errors'][0]['message']}\n\n"
            exit
          else
            puts "\n Error code: #{error['errors'][0]['code']}\n"
            puts "\n #{error['errors'][0]['message']}\n\n"
          end

          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 => :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 == "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"] 

            if code ==  "DEPLOYMENT_STATUS_NOT_VALID_FOR_OPERATION"
              puts "\n Error code: #{error['errors'][0]['code']}\n"
              puts "\n #{error['errors'][0]['message']}\n\n"
              exit
            else
              puts "\n Error code: #{error['errors'][0]['code']}\n"
              puts "\n #{error['errors'][0]['message']}\n\n"
            end

            exit
          end
        end 

        if response["deploymentEntity"]["attributes"]["health"] == "Healthy"
          env[:result] = :running
        else 
          env[:result] = :stopped
        end

      else
        env[:result] = :stopped
      end

  @app.call(env)
end