1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/xenserver.rb
Sergio Rubio ae6e59849f * Define missing InvalidLogin exception
* Add login tests
2012-04-02 18:10:56 +02:00

53 lines
1.5 KiB
Ruby

module Fog
module XenServer
class InvalidLogin < Fog::Errors::Error; end
extend Fog::Provider
service(:compute, 'xenserver/compute', 'Compute')
class Connection
require 'xmlrpc/client'
def initialize(host)
@factory = XMLRPC::Client.new(host, '/')
@factory.set_parser(XMLRPC::XMLParser::REXMLStreamParser.new)
end
def authenticate( username, password )
response = @factory.call('session.login_with_password', username, password )
raise Fog::XenServer::InvalidLogin.new unless response["Status"] =~ /Success/
@credentials = response["Value"]
end
def request(options, *params)
begin
parser = options.delete(:parser)
method = options.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)
else
response = eval("@factory.call('#{method}', '#{@credentials}', #{params.map {|p| p.is_a?(String) ? "'#{p}'" : p}.join(',')})")
end
end
#puts "RESPONSE: #{response}"
if parser
parser.parse( response["Value"] )
response = parser.response
end
response
end
end
end
end
end