Class: Fog::XenServer::Connection
- Inherits:
-
Object
- Object
- Fog::XenServer::Connection
- Defined in:
- lib/fog/xenserver/core.rb
Instance Attribute Summary collapse
-
#credentials ⇒ Object
readonly
Returns the value of attribute credentials.
Instance Method Summary collapse
- #authenticate(username, password) ⇒ Object
- #find_pool_master(username, password) ⇒ Object
-
#initialize(host, timeout) ⇒ Connection
constructor
A new instance of Connection.
- #request(options, *params) ⇒ Object
Constructor Details
#initialize(host, timeout) ⇒ Connection
Returns a new instance of Connection.
18 19 20 21 22 |
# File 'lib/fog/xenserver/core.rb', line 18 def initialize(host, timeout) @factory = XMLRPC::Client.new(host, '/') @factory.set_parser(NokogiriStreamParser.new) @factory.timeout = timeout end |
Instance Attribute Details
#credentials ⇒ Object (readonly)
Returns the value of attribute credentials.
16 17 18 |
# File 'lib/fog/xenserver/core.rb', line 16 def credentials @credentials end |
Instance Method Details
#authenticate(username, password) ⇒ Object
39 40 41 42 43 |
# File 'lib/fog/xenserver/core.rb', line 39 def authenticate( 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"] end |
#find_pool_master(username, password) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/fog/xenserver/core.rb', line 24 def find_pool_master( username, password ) @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 |
#request(options, *params) ⇒ Object
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 |
# File 'lib/fog/xenserver/core.rb', line 45 def request(, *params) begin parser = .delete(:parser) method = .delete(:method) if params.empty? response = @factory.call(method, @credentials) else if params.length.eql?(1) and params.first.is_a?(Hash) response = @factory.call(method, @credentials, params.first) elsif params.length.eql?(2) and params.last.is_a?(Array) response = @factory.call(method, @credentials, params.first, params.last) else response = eval("@factory.call('#{method}', '#{@credentials}', #{params.map {|p| p.is_a?(String) ? "'#{p}'" : p}.join(',')})") end end raise RequestFailed.new("#{method}: " + response["ErrorDescription"].to_s) unless response["Status"].eql? "Success" if parser parser.parse( response["Value"] ) response = parser.response end response end end |