2010-12-22 23:36:53 -05:00
|
|
|
require 'fog/core/model'
|
|
|
|
|
|
|
|
module Fog
|
|
|
|
module Zerigo
|
|
|
|
class DNS
|
|
|
|
|
|
|
|
class Record < Fog::Model
|
2011-05-27 13:30:20 -04:00
|
|
|
extend Fog::Deprecation
|
|
|
|
deprecate :ip, :value
|
|
|
|
deprecate :ip=, :value=
|
2010-12-22 23:36:53 -05:00
|
|
|
|
|
|
|
identity :id
|
|
|
|
|
|
|
|
attribute :created_at, :aliases => 'created-at'
|
2011-05-27 13:30:20 -04:00
|
|
|
attribute :value, :aliases => 'data'
|
2010-12-22 23:36:53 -05:00
|
|
|
attribute :domain, :aliases => 'fqdn'
|
|
|
|
attribute :name, :aliases => 'hostname'
|
2010-12-23 19:47:47 -05:00
|
|
|
attribute :description, :aliases => 'notes'
|
2010-12-22 23:36:53 -05:00
|
|
|
attribute :priority
|
|
|
|
attribute :ttl
|
|
|
|
attribute :type, :aliases => 'host-type'
|
|
|
|
attribute :updated_at, :aliases => 'updated-at'
|
|
|
|
attribute :zone_id, :aliases => 'zone-id'
|
|
|
|
|
2010-12-23 18:36:08 -05:00
|
|
|
def initialize(attributes={})
|
|
|
|
self.ttl ||= 3600
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2010-12-22 23:36:53 -05:00
|
|
|
def destroy
|
|
|
|
requires :identity
|
|
|
|
connection.delete_host(identity)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def zone
|
|
|
|
@zone
|
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
2011-05-27 13:30:20 -04:00
|
|
|
requires :zone, :type, :value
|
2010-12-22 23:36:53 -05:00
|
|
|
options = {}
|
|
|
|
options[:hostname] = name if name
|
2011-01-03 18:39:38 -05:00
|
|
|
options[:notes] = description if description
|
2010-12-22 23:36:53 -05:00
|
|
|
options[:priority] = priority if priority
|
|
|
|
options[:ttl] = ttl if ttl
|
2010-12-23 17:21:05 -05:00
|
|
|
data = unless identity
|
2011-05-27 13:30:20 -04:00
|
|
|
connection.create_host(@zone.id, type, value, options)
|
2010-12-23 17:21:05 -05:00
|
|
|
else
|
|
|
|
options[:host_type] = type
|
|
|
|
options[:data] = data
|
|
|
|
connection.update_host(identity, options)
|
|
|
|
end
|
2010-12-22 23:36:53 -05:00
|
|
|
merge_attributes(data.body)
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def zone=(new_zone)
|
|
|
|
@zone = new_zone
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|