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/dns.rb

50 lines
1.3 KiB
Ruby
Raw Normal View History

2011-01-04 19:49:35 -05:00
module Fog
module DNS
def self.[](provider)
self.new(:provider => provider)
end
2011-01-04 19:49:35 -05:00
def self.new(attributes)
attributes = attributes.dup # prevent delete from having side effects
case provider = attributes[:provider].to_s.downcase.to_sym
when :aws
2011-01-07 21:12:05 -05:00
require 'fog/dns/aws'
Fog::DNS::AWS.new(attributes)
when :bluebox
require 'fog/dns/bluebox'
Fog::DNS::Bluebox.new(attributes)
when :dnsimple
require 'fog/dns/dnsimple'
Fog::DNS::DNSimple.new(attributes)
when :dnsmadeeasy
require 'fog/dns/dnsmadeeasy'
Fog::DNS::DNSMadeEasy.new(attributes)
when :linode
2011-01-07 21:12:05 -05:00
require 'fog/dns/linode'
Fog::DNS::Linode.new(attributes)
when :slicehost
2011-01-07 21:12:05 -05:00
require 'fog/dns/slicehost'
Fog::DNS::Slicehost.new(attributes)
when :zerigo
2011-01-07 21:12:05 -05:00
require 'fog/dns/zerigo'
Fog::DNS::Zerigo.new(attributes)
2011-01-04 19:49:35 -05:00
else
raise ArgumentError.new("#{provider} is not a recognized dns provider")
2011-01-04 19:49:35 -05:00
end
end
def self.zones
zones = []
for provider in [:aws, :bluebox, :dnsimple, :dnsmadeeasy, :linode, :slicehost, :zerigo]
begin
zones.concat(self[provider].zones)
rescue # ignore any missing credentials/etc
end
end
zones
end
2011-01-04 19:49:35 -05:00
end
end