2011-02-23 22:35:05 -05:00
|
|
|
module Fog
|
2011-06-15 20:25:01 -04:00
|
|
|
module DNS
|
|
|
|
class DNSimple
|
2011-02-23 22:35:05 -05:00
|
|
|
class Real
|
|
|
|
|
|
|
|
# Get the details for a specific domain in your account. You
|
|
|
|
# may pass either the domain numeric ID or the domain name
|
|
|
|
# itself.
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * id<~String> - domain name or numeric ID
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'domain'<~Hash>
|
|
|
|
# * 'name'<~String>
|
|
|
|
# * 'expires_at'<~String>
|
|
|
|
# * 'created_at'<~String>
|
|
|
|
# * 'registration_status'<~String>
|
|
|
|
# * 'updated_at'<~String>
|
|
|
|
# * 'registrant_id'<~Integer>
|
|
|
|
# * 'id'<~Integer>
|
|
|
|
# * 'user_id'<~Integer>
|
|
|
|
# * 'name_server_status'<~String>
|
|
|
|
def get_domain(id)
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
2011-02-25 00:13:16 -05:00
|
|
|
:method => "GET",
|
|
|
|
:path => "/domains/#{id}"
|
2011-02-23 22:35:05 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2013-07-28 14:07:29 -04:00
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def get_domain(id)
|
|
|
|
domain = self.data[:domains].detect { |domain| domain["domain"]["id"] == id }
|
|
|
|
response = Excon::Response.new
|
|
|
|
response.status = 200
|
|
|
|
response.body = domain
|
|
|
|
response
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2011-02-23 22:35:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|