Sha256: d08dbce48326f145eba54c2de125688d780216992e62badba2722a733744982d

Contents?: true

Size: 1.47 KB

Versions: 5

Compression:

Stored size: 1.47 KB

Contents

require 'fog/core/model'

module Fog
  module DNS
    class DNSimple

      class Record < Fog::Model
        extend Fog::Deprecation
        deprecate :ip, :value
        deprecate :ip=, :value=

        identity :id

        attribute :zone_id,     :aliases => "domain_id"
        attribute :name
        attribute :value,       :aliases => "content"
        attribute :ttl
        attribute :priority,    :aliases => "prio"
        attribute :type,        :aliases => "record_type"
        attribute :created_at
        attribute :updated_at

        def initialize(attributes={})
          super
        end

        def destroy
          service.delete_record(zone.id, identity)
          true
        end

        def zone
          @zone
        end

        def save
          requires :name, :type, :value
          options = {}
          options[:prio] = priority if priority
          options[:ttl]  = ttl if ttl

          # decide whether its a new record or update of an existing
          if id.nil?
            data = service.create_record(zone.id, name, type, value, options)
          else
            options[:name] = name if name
            options[:content] = value if value
            options[:type] = type if type
            data = service.update_record(zone.id, id, options)
          end

          merge_attributes(data.body["record"])
          true
        end

        private

        def zone=(new_zone)
          @zone = new_zone
        end

      end

    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/dnsimple/models/dns/record.rb
fog-1.21.0 lib/fog/dnsimple/models/dns/record.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/dnsimple/models/dns/record.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/dnsimple/models/dns/record.rb
fog-1.20.0 lib/fog/dnsimple/models/dns/record.rb