2010-05-03 00:46:43 -04:00
|
|
|
module Fog
|
2010-09-03 04:11:45 -04:00
|
|
|
class Vcloud
|
2010-05-03 00:46:43 -04:00
|
|
|
|
|
|
|
class Real
|
2010-06-17 19:58:09 -04:00
|
|
|
basic_request :get_organization
|
2010-05-03 00:46:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def get_organization(organization_uri)
|
|
|
|
#
|
|
|
|
# Based off of:
|
|
|
|
# http://support.theenterprisecloud.com/kb/default.asp?id=540&Lang=1&SID=
|
|
|
|
#
|
|
|
|
# vCloud API Guide v0.9 - Page 26
|
|
|
|
#
|
2010-06-17 19:58:09 -04:00
|
|
|
organization_uri = ensure_unparsed(organization_uri)
|
|
|
|
if org = mock_data[:organizations].detect { |org| org[:info][:href] == organization_uri }
|
2010-05-03 00:46:43 -04:00
|
|
|
xml = Builder::XmlMarkup.new
|
|
|
|
|
2010-06-17 19:58:09 -04:00
|
|
|
mock_it 200,
|
2010-05-03 00:46:43 -04:00
|
|
|
xml.Org(xmlns.merge(:href => org[:info][:href], :name => org[:info][:name])) {
|
|
|
|
|
|
|
|
org[:vdcs].each do |vdc|
|
|
|
|
xml.Link(:rel => "down",
|
|
|
|
:href => vdc[:href],
|
|
|
|
:type => "application/vnd.vmware.vcloud.vdc+xml",
|
|
|
|
:name => vdc[:name])
|
|
|
|
xml.Link(:rel => "down",
|
|
|
|
:href => "#{vdc[:href]}/catalog",
|
|
|
|
:type => "application/vnd.vmware.vcloud.catalog+xml",
|
|
|
|
:name => "#{vdc[:name]} Catalog")
|
|
|
|
xml.Link(:rel => "down",
|
|
|
|
:href => "#{vdc[:href]}/tasksList",
|
|
|
|
:type => "application/vnd.vmware.vcloud.tasksList+xml",
|
|
|
|
:name => "#{vdc[:name]} Tasks List")
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{'Content-Type' => "application/vnd.vmware.vcloud.org+xml" }
|
|
|
|
else
|
|
|
|
mock_error 200, "401 Unauthorized"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|