1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Fixed the issue according pool request #3356

This commit is contained in:
ooVoo LLC 2014-12-21 20:01:40 +02:00
parent 09c33efabc
commit ae509d43d0
2 changed files with 31 additions and 23 deletions

View file

@ -11,6 +11,7 @@ module Fog
requires :xenserver_url
recognizes :xenserver_defaults
recognizes :xenserver_timeout
recognizes :xenserver_redirect_to_master
model_path 'fog/xenserver/models/compute'
model :blob
@ -122,12 +123,18 @@ module Fog
@password = options[:xenserver_password]
@defaults = options[:xenserver_defaults] || {}
@timeout = options[:xenserver_timeout] || 30
@redirect_to_master = options[:xenserver_redirect_to_master] || false
@connection = Fog::XenServer::Connection.new(@host, @timeout)
if @redirect_to_master == false
@connection = Fog::XenServer::Connection.new(@host, @timeout)
elsif @redirect_to_master == true
host_master = @connection.find_pool_master(@username, @password)
if host_master!= @host
if host_master && host_master!= @host
@host = host_master;
@connection = Fog::XenServer::Connection.new(@host, @timeout)
end
end
@connection.authenticate(@username, @password)
end

View file

@ -13,7 +13,6 @@ module Fog
class Connection
require 'xmlrpc/client'
attr_reader :credentials
def initialize(host, timeout)
@ -23,17 +22,19 @@ module Fog
end
def find_pool_master( username, password )
response = @factory.call('session.login_with_password', username.to_s, password.to_s)
raise Fog::XenServer::InvalidLogin.new unless response["Status"] =~ /Success/
@credentials = response["Value"]
@credentials = authenticate( username, password )
response = @factory.call('host.get_all_records', @credentials)
if response['Status'] == "Failure"
if response['ErrorDescription'][0] == "HOST_IS_SLAVE"
ip_address = response['ErrorDescription'][1]
ip_address = ip_address.chomp
valid = !(IPAddr.new(ip_address) rescue nil).nil?
if valid
response['ErrorDescription'][1]
end
end
end
end
def authenticate( username, password )
response = @factory.call('session.login_with_password', username.to_s, password.to_s)