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