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/compute/models/linode/data_centers.rb

27 lines
754 B
Ruby
Raw Normal View History

2011-03-01 12:00:48 -05:00
require 'fog/core/collection'
require 'fog/compute/models/linode/data_center'
module Fog
module Linode
class Compute
class DataCenters < Fog::Collection
model Fog::Linode::Compute::DataCenter
def all
load datacenters
end
private
def datacenters(id=nil)
connection.avail_datacenters.body['DATA'].tap { |data| map_datacenters data }
end
def map_datacenters(datacenters)
datacenters.map! { |datacenter| datacenter.each_with_object({}) { |(k, v), h| h[k.downcase.to_sym] = v } }
datacenters.each { |datacenter| datacenter.merge! :id => datacenter[:datacenterid], :name => datacenter[:location] }
end
end
end
end
end