1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

refactor vapp to use the vcloud classes

This commit is contained in:
Rodrigo Estebanez 2013-07-09 15:16:00 +02:00
parent c4b9d0f611
commit 75af68be5a
2 changed files with 16 additions and 31 deletions

View file

@ -4,7 +4,7 @@ module Fog
module Compute
class Vcloudng
class Vapp < Fog::Model
class Vapp < Model
identity :id
@ -25,7 +25,7 @@ module Fog
def vms
requires :id
service.vms(:vapp_id => id)
service.vms(:vapp => self)
end
end

View file

@ -5,40 +5,25 @@ module Fog
module Compute
class Vcloudng
class Vapps < Fog::Collection
class Vapps < Collection
model Fog::Compute::Vcloudng::Vapp
attribute :vdc
def index(vdc_id = vdc.id)
vapp_links(vdc_id).map{ |vdc| new(vdc)}
private
def get_by_id(item_id)
item = service.get_vapp(item_id).body
%w(:Link).each {|key_to_delete| item.delete(key_to_delete) }
service.add_id_from_href!(item)
item
end
def all(vdc_id = vdc.id)
vapp_ids = vapp_links(vdc_id).map {|vapp| vapp[:id] }
vapp_ids.map{ |vapp_id| get(vapp_id)}
end
def get(vapp_id)
data = service.get_vapp(vapp_id).body
data[:id] = data[:href].split('/').last
%w(:Link).each {|key_to_delete| data.delete(key_to_delete) }
new(data)
end
def get_by_name(vapp_name, vdc_id = vdc.id)
vapp = vapp_links(vdc_id).detect{|vapp_link| vapp_link[:name] == vapp_name }
return nil unless vapp
get(vapp[:id])
end
# private
def vapp_links(vdc_id)
data = service.get_vdc(vdc_id).body
vapps = data[:ResourceEntities][:ResourceEntity].select { |link| link[:type] == "application/vnd.vmware.vcloud.vApp+xml" }
vapps.each{|vapp| vapp[:id] = vapp[:href].split('/').last }
vapps
def item_list
data = service.get_vdc(vdc.id).body
items = data[:ResourceEntities][:ResourceEntity].select { |link| link[:type] == "application/vnd.vmware.vcloud.vApp+xml" }
items.each{|item| service.add_id_from_href!(item) }
items
end
end