Sha256: 8b7ea7a35f4e5c475e6a5e4630a80cb89d11a4e4c06ecd04040a1de4e74483de

Contents?: true

Size: 1.66 KB

Versions: 38

Compression:

Stored size: 1.66 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

38 entries across 36 versions & 5 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/zerigo/requests/dns/get_zone_stats.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/zerigo/requests/dns/get_zone_stats.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.42.1 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.42.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.41.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.40.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.39.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.38.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.37.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.36.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.35.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-2.0.0.pre.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.34.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.33.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.32.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.31.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/zerigo/requests/dns/get_zone_stats.rb
fog-1.30.0 lib/fog/zerigo/requests/dns/get_zone_stats.rb