Sha256: 1eda370e2222c46e15c501e0cda75cd043506c63a1141b56c46ddfbd419b926c

Contents?: true

Size: 1.67 KB

Versions: 98

Compression:

Stored size: 1.67 KB

Contents

module Fog
  module DNS
    class Zerigo
      class Real

        require 'fog/zerigo/parsers/dns/get_zone_stats'

        # 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
        # * zone_id<~Integer> - the zone ID 
        #
        # ==== 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
        #   * 'status'<~Integer> - 200 indicates success
        
        def get_zone_stats(zone_id)
          request(
            :expects  => 200,
            :method   => 'GET',
            :parser   => Fog::Parsers::DNS::Zerigo::GetZoneStats.new,
            :path     => "/api/1.1/zones/#{zone_id}/stats.xml"
          )
        end

      end

      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
    end
  end
end

Version data entries

98 entries across 98 versions & 17 rubygems

Version Path
fog-maestrodev-1.20.0.20140305101839 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.20.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.19.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131218202447 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131209091424 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131209090811 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-maestrodev-1.18.0.20131206115947 lib/fog/zerigo/requests/dns/get_zone_stats.rb