fog--fog/lib/fog/vcloud/requests/get_network.rb

48 lines
1.5 KiB
Ruby
Raw Normal View History

2010-06-09 01:39:00 +00:00
module Fog
class Vcloud
2010-06-09 01:39:00 +00:00
class Real
basic_request :get_network
2010-06-09 01:39:00 +00:00
end
class Mock
def get_network(network_uri)
#
# Based off of:
# vCloud API Guide v0.8 - Page 50
#
# Did not implement AssociatedNetwork, seems redundant, haven't seen it in use yet
# Did not implement the following features: Dhcp, Nat & Firewall
#
network_uri = ensure_unparsed(network_uri)
2010-06-09 01:39:00 +00:00
type = "application/vnd.vmware.vcloud.network+xml"
response = Excon::Response.new
if network = mock_data[:organizations].map { |org| org[:vdcs].map { |vdc| vdc[:networks] } }.flatten.detect { |network| network[:href] == network_uri.to_s }
xml = Builder::XmlMarkup.new
mock_it 200,
2010-06-09 01:39:00 +00:00
xml.Network(xmlns.merge(:href => network[:href], :name => network[:name], :type => type)) {
xml.Description(network[:name])
xml.Configuration {
xml.Gateway(network[:gateway])
xml.Netmask(network[:netmask])
xml.Dns(network[:dns])
}
if network[:features]
xml.Features {
if feature = network[:features].detect { |feature| feature[:type] == :fencemode }
xml.FenceMode(feature[:value])
end
}
end
},
{ 'Content-Type' => type }
else
mock_error 200, "401 Unauthorized"
end
end
end
end
end