2014-02-01 12:50:48 -05:00
|
|
|
require 'fog/dreamhost'
|
2012-03-10 17:02:28 -05:00
|
|
|
require 'fog/dns'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module DNS
|
|
|
|
class Dreamhost < Fog::Service
|
|
|
|
|
|
|
|
requires :dreamhost_api_key
|
|
|
|
|
|
|
|
model_path 'fog/dreamhost/models/dns'
|
|
|
|
model :record
|
2013-01-21 17:26:30 -05:00
|
|
|
model :zone
|
2012-03-10 17:02:28 -05:00
|
|
|
collection :records
|
2013-01-21 17:26:30 -05:00
|
|
|
collection :zones
|
2012-03-10 17:02:28 -05:00
|
|
|
|
|
|
|
request_path 'fog/dreamhost/requests/dns'
|
|
|
|
request :create_record
|
|
|
|
request :list_records
|
|
|
|
request :delete_record
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def self.data
|
|
|
|
@data ||= Hash.new do |hash, key|
|
|
|
|
hash[key] = {}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.reset
|
|
|
|
@data = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(options={})
|
|
|
|
@dreamhost_api_key = options[:dreamhost_api_key]
|
|
|
|
end
|
|
|
|
|
|
|
|
def data
|
|
|
|
self.class.data
|
|
|
|
end
|
|
|
|
|
|
|
|
def reset_data
|
|
|
|
self.class.data.delete
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
class Real
|
|
|
|
|
|
|
|
def initialize(options={})
|
|
|
|
@dreamhost_api_key = options[:dreamhost_api_key]
|
|
|
|
if options[:dreamhost_url]
|
|
|
|
uri = URI.parse(options[:dreamhost_url])
|
|
|
|
options[:host] = uri.host
|
|
|
|
options[:port] = uri.port
|
|
|
|
options[:scheme] = uri.scheme
|
|
|
|
end
|
|
|
|
@host = options[:host] || "api.dreamhost.com"
|
|
|
|
@persistent = options[:persistent] || false
|
|
|
|
@port = options[:port] || 443
|
|
|
|
@scheme = options[:scheme] || 'https'
|
|
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent)
|
|
|
|
end
|
|
|
|
|
|
|
|
def reload
|
|
|
|
@connection.reset
|
|
|
|
end
|
|
|
|
|
|
|
|
def request(params)
|
2013-06-14 01:55:07 -04:00
|
|
|
params[:query].merge!( { :key => @dreamhost_api_key,
|
2013-01-22 15:32:23 -05:00
|
|
|
:format => 'json' } )
|
2012-03-10 17:02:28 -05:00
|
|
|
response = @connection.request(params)
|
|
|
|
|
|
|
|
unless response.body.empty?
|
2013-06-14 01:55:07 -04:00
|
|
|
response.body = Fog::JSON.decode(response.body)
|
2012-03-10 17:02:28 -05:00
|
|
|
end
|
|
|
|
if response.body['result'] != 'success'
|
|
|
|
raise response.body['data']
|
|
|
|
end
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|