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/vcloud/parser.rb
2010-05-28 02:31:08 +08:00

37 lines
966 B
Ruby

module Fog
module Parsers
module Vcloud
class Base < Fog::Parsers::Base
private
def generate_link(attributes)
link = Struct::VcloudLink.new
until attributes.empty?
link[attributes.shift.downcase] = attributes.shift
end
if link.href
link.href = URI.parse(link.href)
end
link
end
def handle_root(attributes)
root = {}
until attributes.empty?
if attributes.first.is_a?(Array)
attribute = attributes.shift
root[attribute.first.downcase] = attribute.last
else
root[attributes.shift.downcase] = attributes.shift
end
end
@response.href = URI.parse(root['href'])
@response.name = root['name']
@response.type = root['type']
@response.xmlns = root['xmlns']
end
end
end
end
end