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

75 lines
2.1 KiB
Ruby
Raw Normal View History

module Fog
module Dynect
class DNS < Fog::Service
requires :dynect_customer, :dynect_username, :dynect_password
recognizes :timeout, :persistent
recognizes :provider # remove post deprecation
2011-06-16 17:51:13 -04:00
model_path 'fog/dns/models/dynect'
model :record
collection :records
model :zone
collection :zones
request_path 'fog/dns/requests/dynect'
request :session
2011-06-17 06:51:37 -04:00
request :list_zones
request :get_zone
request :list_any_records
request :node_list
class Real
def initialize(options={})
2011-06-15 12:38:26 -04:00
require 'builder'
@dynect_customer = options[:dynect_customer]
@dynect_username = options[:dynect_username]
@dynect_password = options[:dynect_password]
2011-02-08 21:31:24 -05:00
@host = "api2.dynect.net"
@port = options[:port] || 443
@path = options[:path] || '/REST'
@scheme = options[:scheme] || 'https'
@version = options[:version] || '2.3.1'
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", options[:persistent] || true)
end
2011-02-08 21:47:44 -05:00
def auth_token
@auth_token ||= session.body['Auth-Token']
end
def request(params)
begin
params[:headers] ||= {}
params[:headers]['Content-Type'] = 'text/xml'
params[:headers]['API-Version'] = @version
2011-02-08 21:47:44 -05:00
params[:headers]['Auth-Token'] = auth_token unless params[:path] == "Session"
2011-02-08 21:31:24 -05:00
params[:path] = "#{@path}/#{params[:path]}"
response = @connection.request(params.merge!({:host => @host}))
response = handle_redirect(response) if response.status == 307
rescue Excon::Errors::HTTPStatusError => error
2011-02-08 21:47:44 -05:00
raise error
end
response
end
end
def handle_redirect(response)
raise request({
:expects => 200,
:method => "GET",
:path => response.body
})
end
# class Mock
# end
end
end
end