mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
27 lines
754 B
Ruby
27 lines
754 B
Ruby
|
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
|