2011-02-24 17:14:50 -08:00
|
|
|
require 'fog/core/model'
|
2011-08-24 19:56:22 -05:00
|
|
|
require 'fog/dnsimple/models/dns/records'
|
2011-02-24 17:14:50 -08:00
|
|
|
|
|
|
|
module Fog
|
2011-06-15 17:25:01 -07:00
|
|
|
module DNS
|
|
|
|
class DNSimple
|
2011-02-24 17:14:50 -08:00
|
|
|
|
|
|
|
class Zone < Fog::Model
|
|
|
|
|
2011-02-24 21:13:16 -08:00
|
|
|
identity :id
|
2011-02-24 17:14:50 -08:00
|
|
|
|
2011-02-25 15:10:12 -08:00
|
|
|
attribute :domain, :aliases => 'name'
|
2011-02-24 17:14:50 -08:00
|
|
|
attribute :created_at
|
|
|
|
attribute :updated_at
|
|
|
|
|
|
|
|
def destroy
|
2012-12-22 23:28:30 +00:00
|
|
|
service.delete_domain(identity)
|
2011-02-24 17:14:50 -08:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def records
|
|
|
|
@records ||= begin
|
2011-06-15 17:25:01 -07:00
|
|
|
Fog::DNS::DNSimple::Records.new(
|
|
|
|
:zone => self,
|
2012-12-22 23:28:30 +00:00
|
|
|
:service => service
|
2011-06-15 17:25:01 -07:00
|
|
|
)
|
|
|
|
end
|
2011-02-24 17:14:50 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def nameservers
|
|
|
|
[
|
|
|
|
"ns1.dnsimple.com",
|
|
|
|
"ns2.dnsimple.com",
|
|
|
|
"ns3.dnsimple.com",
|
|
|
|
"ns4.dnsimple.com",
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def save
|
|
|
|
requires :domain
|
2012-12-22 23:28:30 +00:00
|
|
|
data = service.create_domain(domain).body["domain"]
|
2011-02-24 21:13:16 -08:00
|
|
|
merge_attributes(data)
|
2011-02-24 17:14:50 -08:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|