mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
ffd01e51dd
closes #411
104 lines
No EOL
2.8 KiB
Ruby
104 lines
No EOL
2.8 KiB
Ruby
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'bluebox'))
|
|
require 'fog/dns'
|
|
|
|
module Fog
|
|
module DNS
|
|
class Bluebox < Fog::Service
|
|
|
|
requires :bluebox_api_key, :bluebox_customer_id
|
|
recognizes :bluebox_host, :bluebox_port, :bluebox_scheme, :persistent
|
|
|
|
model_path 'fog/bluebox/models/dns'
|
|
model :record
|
|
collection :records
|
|
model :zone
|
|
collection :zones
|
|
|
|
request_path 'fog/bluebox/requests/dns'
|
|
request :create_record
|
|
request :update_record
|
|
request :delete_record
|
|
request :create_zone
|
|
request :update_zone
|
|
request :delete_zone
|
|
request :get_record
|
|
request :get_records
|
|
request :get_zone
|
|
request :get_zones
|
|
|
|
class Mock
|
|
def self.data
|
|
@data ||= Hash.new do |hash, key|
|
|
hash[key] = {}
|
|
end
|
|
end
|
|
|
|
def self.reset
|
|
@data = nil
|
|
end
|
|
|
|
def initialize(options={})
|
|
@bluebox_customer_id = options[:bluebox_customer_id]
|
|
@bluebox_api_key = options[:bluebox_api_key]
|
|
end
|
|
|
|
def data
|
|
self.class.data[@bluebox_customer_id]
|
|
end
|
|
|
|
def reset_data
|
|
self.class.data.delete(@bluebox_customer_id)
|
|
end
|
|
end
|
|
|
|
class Real
|
|
def initialize(options ={})
|
|
@bluebox_customer_id = options[:bluebox_customer_id]
|
|
@bluebox_api_key = options[:bluebox_api_key]
|
|
@connection_options = options[:connection_options] || {}
|
|
@host = options[:bluebox_host] || "boxpanel.bluebox.net"
|
|
@persistent = options[:persistent] || false
|
|
@port = options[:bluebox_port] || 443
|
|
@scheme = options[:bluebox_scheme] || 'https'
|
|
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", @persistent, @connection_options)
|
|
end
|
|
|
|
def reload
|
|
@connection.reset
|
|
end
|
|
|
|
def request(params)
|
|
params[:headers] ||= {}
|
|
|
|
params[:headers]['Authorization'] = "Basic #{auth_header}"
|
|
|
|
params[:headers]['Accept'] = 'application/xml'
|
|
case params[:method]
|
|
when 'POST', 'PUT'
|
|
params[:headers]['Content-Type'] = 'application/xml'
|
|
end
|
|
|
|
begin
|
|
response = @connection.request(params.merge!({:host => @host}))
|
|
rescue Excon::Errors::HTTPStatusError => error
|
|
raise case error
|
|
when Excon::Errors::NotFound
|
|
Fog::DNS::Bluebox::NotFound.slurp(error)
|
|
else
|
|
error
|
|
end
|
|
end
|
|
|
|
response
|
|
end
|
|
|
|
protected
|
|
|
|
def auth_header
|
|
@auth_header ||= Base64.encode64("#{@bluebox_customer_id}:#{@bluebox_api_key}").gsub("\n",'')
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
end |