2012-05-15 14:54:20 -04:00
|
|
|
require 'fog/storm_on_demand'
|
2011-08-31 16:52:53 -04:00
|
|
|
require 'fog/compute'
|
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
module Fog
|
2011-06-16 19:28:54 -04:00
|
|
|
module Compute
|
|
|
|
class StormOnDemand < Fog::Service
|
|
|
|
|
2013-05-21 05:35:57 -04:00
|
|
|
API_URL = 'https://api.stormondemand.com'
|
|
|
|
API_VERSION = 'v1'
|
2011-06-16 19:28:54 -04:00
|
|
|
|
2011-05-10 16:58:22 -04:00
|
|
|
requires :storm_on_demand_username, :storm_on_demand_password
|
|
|
|
recognizes :storm_on_demand_auth_url
|
2011-04-27 21:49:56 -04:00
|
|
|
|
2011-08-24 21:14:00 -04:00
|
|
|
model_path 'fog/storm_on_demand/models/compute'
|
2011-04-27 21:49:56 -04:00
|
|
|
model :config
|
|
|
|
collection :configs
|
|
|
|
model :image
|
|
|
|
collection :images
|
|
|
|
model :server
|
|
|
|
collection :servers
|
|
|
|
model :balancer
|
|
|
|
collection :balancers
|
|
|
|
model :private_ip
|
|
|
|
collection :private_ips
|
|
|
|
model :stat
|
|
|
|
collection :stats
|
|
|
|
model :template
|
|
|
|
collection :templates
|
|
|
|
|
2011-08-24 21:14:00 -04:00
|
|
|
request_path 'fog/storm_on_demand/requests/compute'
|
2011-04-27 21:49:56 -04:00
|
|
|
request :clone_server
|
|
|
|
request :delete_server
|
|
|
|
request :reboot_server
|
|
|
|
request :list_servers
|
|
|
|
request :get_server
|
|
|
|
request :create_server
|
|
|
|
request :resize_server
|
2013-05-21 08:19:58 -04:00
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
request :remove_balancer_node
|
|
|
|
request :add_balancer_node
|
2013-05-21 08:19:58 -04:00
|
|
|
request :add_balancer_service
|
|
|
|
request :remove_balancer_service
|
|
|
|
request :check_balancer_available
|
|
|
|
request :create_balancer
|
|
|
|
request :delete_balancer
|
|
|
|
request :update_balancer
|
|
|
|
request :get_balancer_details
|
2011-04-27 21:49:56 -04:00
|
|
|
request :list_balancers
|
2013-05-21 08:19:58 -04:00
|
|
|
request :get_balancer_possible_nodes
|
|
|
|
request :get_balancer_strategies
|
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
request :list_configs
|
2013-05-21 05:35:57 -04:00
|
|
|
request :get_config_details
|
2013-05-21 08:19:58 -04:00
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
request :list_templates
|
2013-05-21 08:19:58 -04:00
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
request :list_images
|
2013-05-21 06:06:31 -04:00
|
|
|
request :create_image
|
|
|
|
request :delete_image
|
|
|
|
request :get_image_details
|
|
|
|
request :update_image
|
|
|
|
request :restore_image
|
2013-05-21 08:19:58 -04:00
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
request :get_stats
|
|
|
|
request :list_private_ips
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def self.data
|
|
|
|
@data ||= Hash.new do |hash, key|
|
|
|
|
hash[key] = {
|
|
|
|
:last_modified => {
|
|
|
|
:images => {},
|
|
|
|
:servers => {}
|
|
|
|
},
|
|
|
|
:images => {},
|
|
|
|
:servers => {}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-05-17 22:40:17 -04:00
|
|
|
def self.reset
|
|
|
|
@data = nil
|
|
|
|
end
|
|
|
|
|
2011-04-27 21:49:56 -04:00
|
|
|
def self.reset_data(keys=data.keys)
|
|
|
|
for key in [*keys]
|
|
|
|
data.delete(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(options={})
|
2011-05-10 16:58:22 -04:00
|
|
|
@storm_on_demand_username = options[:storm_on_demand_username]
|
2011-05-19 18:35:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def data
|
|
|
|
self.class.data[@storm_on_demand_username]
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset_data
|
|
|
|
self.class.data.delete(@storm_on_demand_username)
|
2011-04-27 21:49:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def initialize(options={})
|
2011-05-10 16:58:22 -04:00
|
|
|
uri = URI.parse(options[:storm_on_demand_auth_url] ||= API_URL)
|
2011-09-12 11:01:48 -04:00
|
|
|
@connection_options = options[:connection_options] || {}
|
|
|
|
@host = uri.host
|
|
|
|
@path = uri.path
|
|
|
|
@persistent = options[:persistent] || false
|
|
|
|
@port = uri.port
|
|
|
|
@scheme = uri.scheme
|
2011-05-10 16:58:22 -04:00
|
|
|
@storm_on_demand_username = options[:storm_on_demand_username]
|
|
|
|
@storm_on_demand_password = options[:storm_on_demand_password]
|
2011-09-12 11:01:48 -04:00
|
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
|
2011-04-27 21:49:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
@connection.reset
|
|
|
|
end
|
|
|
|
|
|
|
|
def request(params)
|
|
|
|
begin
|
|
|
|
response = @connection.request(params.merge!({
|
|
|
|
:headers => {
|
|
|
|
'Content-Type' => 'application/json',
|
2011-05-10 16:58:22 -04:00
|
|
|
'Authorization' => 'Basic ' << Base64.encode64("#{@storm_on_demand_username}:#{@storm_on_demand_password}").chomp
|
2011-04-27 21:49:56 -04:00
|
|
|
}.merge!(params[:headers] || {}),
|
|
|
|
:host => @host,
|
2013-05-21 05:35:57 -04:00
|
|
|
:path => "#{@path}/#{API_VERSION}#{params[:path]}",
|
2011-04-30 15:29:05 -04:00
|
|
|
:expects => 200,
|
|
|
|
:method => :post
|
2011-04-27 21:49:56 -04:00
|
|
|
}))
|
|
|
|
rescue Excon::Errors::HTTPStatusError => error
|
|
|
|
raise case error
|
|
|
|
when Excon::Errors::NotFound
|
|
|
|
Fog::StormOnDemand::Compute::NotFound.slurp(error)
|
|
|
|
else
|
|
|
|
error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
unless response.body.empty?
|
2012-04-25 10:31:28 -04:00
|
|
|
response.body = Fog::JSON.decode(response.body)
|
2011-04-27 21:49:56 -04:00
|
|
|
end
|
2012-02-06 20:53:11 -05:00
|
|
|
if response.body.has_key?('full_error')
|
2011-06-22 14:25:19 -04:00
|
|
|
raise(Fog::Compute::StormOnDemand::Error, response.body.inspect)
|
2011-04-27 21:49:56 -04:00
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|