Sha256: c8cf3eb4b037c6c24f8661df2d870e56024d854172ae3ea09025ff8adc495ebc

Contents?: true

Size: 848 Bytes

Versions: 43

Compression:

Stored size: 848 Bytes

Contents

require 'fog/core/collection'
require 'fog/dreamhost/models/dns/zone'

module Fog
  module DNS
    class Dreamhost
      #
      # Dreamhost API has no concept of 'Zone', but we
      # can emulate it.
      #
      # http://wiki.dreamhost.com/API/Dns_commands
      #
      class Zones < Fog::Collection
        model Fog::DNS::Dreamhost::Zone

        def all
          clear
          zones = []
          zones_added = []
          service.records.each do |r|
            unless zones_added.include?(r.zone)
              zones << { :id => r.zone, :domain => r.zone }
              zones_added << r.zone
            end
          end
          load(zones)
        end

        def get(zone_id)
          service.zones.find { |z| z.domain == zone_id }
        rescue Excon::Errors::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

43 entries across 41 versions & 6 rubygems

Version Path
fog-2.3.0 lib/fog/dreamhost/models/dns/zones.rb
fog-ifeel-2.2.0 lib/fog/dreamhost/models/dns/zones.rb
fog-2.2.0 lib/fog/dreamhost/models/dns/zones.rb
fog-2.1.0 lib/fog/dreamhost/models/dns/zones.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/fog-1.42.1/lib/fog/dreamhost/models/dns/zones.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/fog-1.42.1/lib/fog/dreamhost/models/dns/zones.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/fog-1.42.1/lib/fog/dreamhost/models/dns/zones.rb
fog-1.42.1 lib/fog/dreamhost/models/dns/zones.rb
fog-2.0.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.42.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.41.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.40.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.39.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.38.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.37.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.36.0 lib/fog/dreamhost/models/dns/zones.rb
fog-1.35.0 lib/fog/dreamhost/models/dns/zones.rb
fog-2.0.0.pre.0 lib/fog/dreamhost/models/dns/zones.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/dreamhost/models/dns/zones.rb
fog-1.34.0 lib/fog/dreamhost/models/dns/zones.rb