require File.expand_path(File.join(File.dirname(__FILE__), '..', 'rackspace')) require 'fog/compute' module Fog module Compute class Rackspace < Fog::Service requires :rackspace_api_key, :rackspace_username recognizes :rackspace_auth_url, :rackspace_servicenet, :persistent recognizes :rackspace_auth_token, :rackspace_management_url model_path 'fog/rackspace/models/compute' model :flavor collection :flavors model :image collection :images model :server collection :servers request_path 'fog/rackspace/requests/compute' request :confirm_resized_server 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 request :reboot_server request :revert_resized_server request :resize_server request :server_action request :update_server class Mock def self.data @data ||= Hash.new do |hash, key| hash[key] = { :last_modified => { :images => {}, :servers => {} }, :images => {}, :servers => {} } end end def self.reset @data = nil end def initialize(options={}) require 'multi_json' @rackspace_username = options[:rackspace_username] end def data self.class.data[@rackspace_username] end def reset_data self.class.data.delete(@rackspace_username) end end class Real def initialize(options={}) require 'multi_json' @rackspace_api_key = options[:rackspace_api_key] @rackspace_username = options[:rackspace_username] @rackspace_auth_url = options[:rackspace_auth_url] @rackspace_servicenet = options[:rackspace_servicenet] @rackspace_auth_token = options[:rackspace_auth_token] @rackspace_management_url = options[:rackspace_management_url] @rackspace_must_reauthenticate = false @connection_options = options[:connection_options] || {} authenticate Excon.ssl_verify_peer = false if options[:rackspace_servicenet] == true @persistent = options[:persistent] || false @connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options) 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, :path => "#{@path}/#{params[:path]}", :query => ('ignore_awful_caching' << Time.now.to_i.to_s) })) rescue Excon::Errors::Unauthorized => error if error.response.body != 'Bad username or password' # token expiration @rackspace_must_reauthenticate = true authenticate retry else # bad credentials raise error end rescue Excon::Errors::HTTPStatusError => error raise case error when Excon::Errors::NotFound Fog::Compute::Rackspace::NotFound.slurp(error) else error end end unless response.body.empty? response.body = MultiJson.load(response.body) end response end private def authenticate if @rackspace_must_reauthenticate || @rackspace_auth_token.nil? options = { :rackspace_api_key => @rackspace_api_key, :rackspace_username => @rackspace_username, :rackspace_auth_url => @rackspace_auth_url } credentials = Fog::Rackspace.authenticate(options, @connection_options) @auth_token = credentials['X-Auth-Token'] uri = URI.parse(credentials['X-Server-Management-Url']) else @auth_token = @rackspace_auth_token uri = URI.parse(@rackspace_management_url) end @host = @rackspace_servicenet == true ? "snet-#{uri.host}" : uri.host @path = uri.path @port = uri.port @scheme = uri.scheme end end end end end