2010-09-08 16:50:23 -04:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
|
|
|
class Compute < Fog::Service
|
|
|
|
|
2010-12-16 18:31:24 -05:00
|
|
|
requires :rackspace_api_key, :rackspace_username
|
2011-03-18 00:09:43 -04:00
|
|
|
recognizes :rackspace_auth_url, :rackspace_servicenet, :persistent
|
2011-01-07 21:14:39 -05:00
|
|
|
recognizes :provider # remove post deprecation
|
2010-09-08 16:50:23 -04:00
|
|
|
|
2011-01-07 19:52:09 -05:00
|
|
|
model_path 'fog/compute/models/rackspace'
|
2010-09-08 16:50:23 -04:00
|
|
|
model :flavor
|
|
|
|
collection :flavors
|
|
|
|
model :image
|
|
|
|
collection :images
|
|
|
|
model :server
|
|
|
|
collection :servers
|
|
|
|
|
2011-01-07 19:52:09 -05:00
|
|
|
request_path 'fog/compute/requests/rackspace'
|
2010-11-29 22:28:14 -05:00
|
|
|
request :confirm_resized_server
|
2010-09-08 16:50:23 -04:00
|
|
|
request :create_image
|
|
|
|
request :create_server
|
|
|
|
request :delete_image
|
|
|
|
request :delete_server
|
|
|
|
request :get_flavor_details
|
|
|
|
request :get_image_details
|
|
|
|
request :get_server_details
|
|
|
|
request :list_addresses
|
|
|
|
request :list_private_addresses
|
|
|
|
request :list_public_addresses
|
|
|
|
request :list_flavors
|
|
|
|
request :list_flavors_detail
|
|
|
|
request :list_images
|
|
|
|
request :list_images_detail
|
|
|
|
request :list_servers
|
|
|
|
request :list_servers_detail
|
2010-11-29 13:36:10 -05:00
|
|
|
request :reboot_server
|
2010-11-29 22:28:14 -05:00
|
|
|
request :revert_resized_server
|
2010-11-29 13:36:10 -05:00
|
|
|
request :resize_server
|
2010-11-29 22:28:14 -05:00
|
|
|
request :server_action
|
|
|
|
request :update_server
|
2010-09-08 16:50:23 -04:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def self.data
|
|
|
|
@data ||= Hash.new do |hash, key|
|
|
|
|
hash[key] = {
|
|
|
|
:last_modified => {
|
|
|
|
:images => {},
|
|
|
|
:servers => {}
|
|
|
|
},
|
|
|
|
:images => {},
|
|
|
|
:servers => {}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(options={})
|
2011-01-07 21:14:39 -05:00
|
|
|
unless options.delete(:provider)
|
|
|
|
location = caller.first
|
|
|
|
warning = "[yellow][WARN] Fog::Rackspace::Compute.new is deprecated, use Fog::Compute.new(:provider => 'Rackspace') instead[/]"
|
|
|
|
warning << " [light_black](" << location << ")[/] "
|
|
|
|
Formatador.display_line(warning)
|
|
|
|
end
|
|
|
|
|
2010-09-08 16:50:23 -04:00
|
|
|
@rackspace_username = options[:rackspace_username]
|
2011-03-10 14:16:55 -05:00
|
|
|
reset_data
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset_data
|
|
|
|
self.class.data.delete(@rackspace_username)
|
2010-09-08 16:50:23 -04:00
|
|
|
@data = self.class.data[@rackspace_username]
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def initialize(options={})
|
2011-01-07 21:14:39 -05:00
|
|
|
unless options.delete(:provider)
|
|
|
|
location = caller.first
|
|
|
|
warning = "[yellow][WARN] Fog::Rackspace::Compute.new is deprecated, use Fog::Compute.new(:provider => 'Rackspace') instead[/]"
|
|
|
|
warning << " [light_black](" << location << ")[/] "
|
|
|
|
Formatador.display_line(warning)
|
|
|
|
end
|
|
|
|
|
2010-10-29 17:58:28 -04:00
|
|
|
require 'json'
|
2011-01-27 19:02:04 -05:00
|
|
|
@rackspace_api_key = options[:rackspace_api_key]
|
|
|
|
@rackspace_username = options[:rackspace_username]
|
|
|
|
@rackspace_auth_url = options[:rackspace_auth_url]
|
2011-03-18 00:09:43 -04:00
|
|
|
@rackspace_servicenet = options[:rackspace_servicenet]
|
2011-01-27 19:02:04 -05:00
|
|
|
authenticate
|
2010-09-08 16:50:23 -04:00
|
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", options[:persistent])
|
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
@connection.reset
|
|
|
|
end
|
|
|
|
|
|
|
|
def request(params)
|
|
|
|
begin
|
|
|
|
response = @connection.request(params.merge!({
|
|
|
|
:headers => {
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
'X-Auth-Token' => @auth_token
|
|
|
|
}.merge!(params[:headers] || {}),
|
|
|
|
:host => @host,
|
2011-02-28 20:46:03 -05:00
|
|
|
:path => "#{@path}/#{params[:path]}",
|
|
|
|
:query => ('ignore_awful_caching' << Time.now.to_i.to_s)
|
2010-09-08 16:50:23 -04:00
|
|
|
}))
|
2011-01-27 19:02:04 -05:00
|
|
|
rescue Excon::Errors::Unauthorized => error
|
|
|
|
if JSON.parse(response.body)['unauthorized']['message'] == 'Invalid authentication token. Please renew.'
|
|
|
|
authenticate
|
|
|
|
retry
|
|
|
|
else
|
|
|
|
raise error
|
|
|
|
end
|
2010-11-29 23:07:47 -05:00
|
|
|
rescue Excon::Errors::HTTPStatusError => error
|
2010-09-08 16:50:23 -04:00
|
|
|
raise case error
|
|
|
|
when Excon::Errors::NotFound
|
|
|
|
Fog::Rackspace::Compute::NotFound.slurp(error)
|
|
|
|
else
|
|
|
|
error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
unless response.body.empty?
|
|
|
|
response.body = JSON.parse(response.body)
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
2011-01-27 19:02:04 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def authenticate
|
|
|
|
options = {
|
|
|
|
:rackspace_api_key => @rackspace_api_key,
|
|
|
|
:rackspace_username => @rackspace_username,
|
|
|
|
:rackspace_auth_url => @rackspace_auth_url
|
|
|
|
}
|
|
|
|
credentials = Fog::Rackspace.authenticate(options)
|
|
|
|
@auth_token = credentials['X-Auth-Token']
|
|
|
|
uri = URI.parse(credentials['X-Server-Management-Url'])
|
2011-03-18 00:09:43 -04:00
|
|
|
@host = @rackspace_servicenet == true ? "snet-#{uri.host}" : uri.host
|
2011-01-27 19:02:04 -05:00
|
|
|
@path = uri.path
|
|
|
|
@port = uri.port
|
|
|
|
@scheme = uri.scheme
|
|
|
|
end
|
|
|
|
|
2010-09-08 16:50:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|