Sha256: 8349e4ff582ca685086d753e63ce2e8081034b4f12e89a644b26aa862c50076e

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

require 'fog/core/collection'
require 'fog/zerigo/models/dns/record'

module Fog
  module DNS
    class Zerigo

      class Records < Fog::Collection

        attribute :zone

        model Fog::DNS::Zerigo::Record

        # List all domains
        # @param [Hash] options Options to pass to the underlying API call
        # @option options [String] :fqdn search for the given fqdn
        def all(options = {})
          requires :zone
          if options[:fqdn]
            hosts = service.find_hosts(options[:fqdn], zone.id).body['hosts']
            load(hosts)
          else
            parent = zone.collection.get(zone.identity)
            if parent
              merge_attributes(parent.records.attributes)
              load(parent.records.map {|record| record.attributes})
            else
              nil
            end
          end
        end

        def get(record_id)
          data = service.get_host(record_id).body
          new(data)
        rescue Fog::Service::NotFound
          nil
        end

        def new(attributes = {})
          requires :zone
          super({ :zone => zone }.merge!(attributes))
        end

      end

    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
fog-1.22.0 lib/fog/zerigo/models/dns/records.rb
fog-1.21.0 lib/fog/zerigo/models/dns/records.rb