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

84 lines
2.5 KiB
Ruby
Raw Normal View History

require 'fog/core'
2012-04-02 07:25:03 -04:00
module Fog
module XenServer
class InvalidLogin < Fog::Errors::Error; end
class NotFound < Fog::Errors::Error; end
class RequestFailed < Fog::Errors::Error; end
2012-04-02 07:25:03 -04:00
extend Fog::Provider
service(:compute, 'xenserver/compute', 'Compute')
class Connection
require 'xmlrpc/client'
def initialize(host, timeout)
2012-04-02 07:25:03 -04:00
@factory = XMLRPC::Client.new(host, '/')
@factory.set_parser(NokogiriStreamParser.new)
@factory.timeout = timeout
2012-04-02 07:25:03 -04:00
end
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/
2012-04-02 07:25:03 -04:00
@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)
elsif params.length.eql?(2) and params.last.is_a?(Array)
response = @factory.call(method, @credentials, params.first, params.last)
2012-04-02 07:25:03 -04:00
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"
2012-04-02 07:25:03 -04:00
if parser
parser.parse( response["Value"] )
response = parser.response
end
response
end
end
end
class NokogiriStreamParser < XMLRPC::XMLParser::AbstractStreamParser
def initialize
require 'nokogiri/xml/sax/document'
require 'nokogiri/xml/sax/parser'
@parser_class = Class.new(Nokogiri::XML::SAX::Document) do
include XMLRPC::XMLParser::StreamParserMixin
alias_method :start_element, :startElement
alias_method :end_element, :endElement
alias_method :characters, :character
alias_method :cdata_block, :character
def parse(str)
Nokogiri::XML::SAX::Parser.new(self).parse(str)
end
end
end
end
2012-04-02 07:25:03 -04:00
end
end