mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
60 lines
1.6 KiB
Ruby
60 lines
1.6 KiB
Ruby
module Fog
|
|
module DNS
|
|
|
|
def self.[](provider)
|
|
self.new(:provider => provider)
|
|
end
|
|
|
|
def self.new(attributes)
|
|
attributes = attributes.dup # prevent delete from having side effects
|
|
case provider = attributes.delete(:provider).to_s.downcase.to_sym
|
|
when :aws
|
|
require 'fog/aws/dns'
|
|
Fog::DNS::AWS.new(attributes)
|
|
when :bluebox
|
|
require 'fog/bluebox/dns'
|
|
Fog::DNS::Bluebox.new(attributes)
|
|
when :dnsimple
|
|
require 'fog/dnsimple/dns'
|
|
Fog::DNS::DNSimple.new(attributes)
|
|
when :dnsmadeeasy
|
|
require 'fog/dnsmadeeasy/dns'
|
|
Fog::DNS::DNSMadeEasy.new(attributes)
|
|
when :dynect
|
|
require 'fog/dynect/dns'
|
|
Fog::DNS::Dynect.new(attributes)
|
|
when :linode
|
|
require 'fog/linode/dns'
|
|
Fog::DNS::Linode.new(attributes)
|
|
when :slicehost
|
|
warn "[DEPRECATION] `slicehost` is deprecated. Please use `racksace` instead."
|
|
require 'fog/slicehost/dns'
|
|
Fog::DNS::Slicehost.new(attributes)
|
|
when :zerigo
|
|
require 'fog/zerigo/dns'
|
|
Fog::DNS::Zerigo.new(attributes)
|
|
when :rackspace
|
|
require 'fog/rackspace/dns'
|
|
Fog::DNS::Rackspace.new(attributes)
|
|
else
|
|
raise ArgumentError.new("#{provider} is not a recognized dns provider")
|
|
end
|
|
end
|
|
|
|
def self.providers
|
|
Fog.services[:dns]
|
|
end
|
|
|
|
def self.zones
|
|
zones = []
|
|
for provider in self.providers
|
|
begin
|
|
zones.concat(self[provider].zones)
|
|
rescue # ignore any missing credentials/etc
|
|
end
|
|
end
|
|
zones
|
|
end
|
|
|
|
end
|
|
end
|