2010-12-12 09:51:52 -05:00
|
|
|
module Fog
|
2011-06-21 16:03:33 -04:00
|
|
|
module DNS
|
|
|
|
class Zerigo
|
2010-12-12 09:51:52 -05:00
|
|
|
class Real
|
|
|
|
|
2011-08-24 15:40:47 -04:00
|
|
|
require 'fog/zerigo/parsers/dns/get_zone_stats'
|
2010-12-12 09:51:52 -05:00
|
|
|
|
|
|
|
# returns current traffic statistics about this zone. Queries is measured from the
|
|
|
|
# beginning of the current period through the time of the API call.
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
2010-12-12 21:18:21 -05:00
|
|
|
# * zone_id<~Integer> - the zone ID
|
2010-12-12 09:51:52 -05:00
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'domain'<~String> - domain name (ie example.com)
|
|
|
|
# * 'id'<~Integer> - Id of the zone
|
|
|
|
# * 'period-being'<~String> - date in following format 2010-07-01
|
|
|
|
# * 'period-end'<~String> - date
|
|
|
|
# * 'queries'<~Integer> - # of queries for the zone during period
|
2010-12-13 08:51:04 -05:00
|
|
|
# * 'status'<~Integer> - 200 indicates success
|
|
|
|
|
2010-12-12 09:51:52 -05:00
|
|
|
def get_zone_stats(zone_id)
|
|
|
|
request(
|
|
|
|
:expects => 200,
|
|
|
|
:method => 'GET',
|
2011-06-21 17:49:02 -04:00
|
|
|
:parser => Fog::Parsers::DNS::Zerigo::GetZoneStats.new,
|
2010-12-13 07:38:06 -05:00
|
|
|
:path => "/api/1.1/zones/#{zone_id}/stats.xml"
|
2010-12-12 09:51:52 -05:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2011-10-08 20:19:32 -04:00
|
|
|
|
|
|
|
class Mock # :nodoc:all
|
|
|
|
def get_zone_stats(zone_id)
|
|
|
|
zone = find_by_zone_id(zone_id)
|
|
|
|
|
|
|
|
response = Excon::Response.new
|
|
|
|
|
|
|
|
if zone
|
|
|
|
response.status = 200
|
|
|
|
response.body = {
|
|
|
|
'id' => zone,
|
|
|
|
'domain' => zone['domain'],
|
|
|
|
'period-begin' => zone['created-at'].strftime("%F"),
|
|
|
|
'period-end' => Date.today.to_s,
|
|
|
|
'queries' => 0
|
|
|
|
}
|
|
|
|
else
|
|
|
|
response.status = 404
|
|
|
|
end
|
|
|
|
|
|
|
|
response
|
|
|
|
end
|
|
|
|
end
|
2010-12-12 09:51:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|