fog--fog/lib/fog/dnsimple/dns.rb

101 lines
2.8 KiB
Ruby
Raw Normal View History

require 'fog/dnsimple/core'
module Fog
module DNS
class DNSimple < Fog::Service
requires :dnsimple_email, :dnsimple_password
recognizes :dnsimple_url, :host, :path, :port, :scheme, :persistent
model_path 'fog/dnsimple/models/dns'
2011-02-25 01:14:50 +00:00
model :record
collection :records
model :zone
collection :zones
request_path 'fog/dnsimple/requests/dns'
request :list_domains
request :create_domain
request :get_domain
request :delete_domain
2011-02-24 05:56:16 +00:00
request :create_record
2011-02-24 23:22:38 +00:00
request :list_records
request :update_record
request :delete_record
request :get_record
class Mock
2011-02-25 01:14:50 +00:00
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {
:domains => [],
:records => {}
}
2011-02-25 01:14:50 +00:00
end
end
def self.reset
@data = nil
end
2011-02-25 01:14:50 +00:00
def initialize(options={})
@dnsimple_email = options[:dnsimple_email]
@dnsimple_password = options[:dnsimple_password]
2011-05-19 22:35:33 +00:00
end
def data
self.class.data[@dnsimple_email]
2011-02-25 01:14:50 +00:00
end
def reset_data
self.class.data.delete(@dnsimple_email)
end
end
class Real
def initialize(options={})
@dnsimple_email = options[:dnsimple_email]
@dnsimple_password = options[:dnsimple_password]
@connection_options = options[:connection_options] || {}
if options[:dnsimple_url]
uri = URI.parse(options[:dnsimple_url])
options[:host] = uri.host
options[:port] = uri.port
options[:scheme] = uri.scheme
end
2014-01-16 21:47:22 +00:00
@host = options[:host] || "api.dnsimple.com"
@persistent = options[:persistent] || false
@port = options[:port] || 443
@scheme = options[:scheme] || 'https'
@connection = Fog::XML::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
end
def reload
@connection.reset
end
def request(params)
params[:headers] ||= {}
key = "#{@dnsimple_email}:#{@dnsimple_password}"
2012-02-06 22:00:51 +00:00
params[:headers].merge!({ "Authorization" => "Basic " + Base64.encode64(key).gsub("\n",''),
"Accept" => "application/json",
"Content-Type" => "application/json" })
2014-01-16 21:47:22 +00:00
version = params.delete(:version) || 'v1'
params[:path] = "/#{version}#{params[:path]}"
2013-11-25 12:58:42 +00:00
response = @connection.request(params)
unless response.body.empty?
2012-04-25 14:31:28 +00:00
response.body = Fog::JSON.decode(response.body)
end
response
end
end
end
end
end