You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5 KiB

13 years ago
class Record < ActiveRecord::Base
13 years ago
belongs_to :domain, :inverse_of => :records
13 years ago
cattr_reader :types
13 years ago
@@types = %w(SOA NS A MX TXT CNAME)
13 years ago
13 years ago
validates :domain, :name, :presence => true
13 years ago
validates :type, :inclusion => {:in => @@types, :message => "Unknown record type"}
13 years ago
validates :content, :uniqueness => {:scope => [:domain_id, :type]}
13 years ago
# RFC 2181, 8
13 years ago
validates :ttl, :numericality => {
# :greater_than_or_equal_to => 0,
:greater_than_or_equal_to => Settings.min_ttl.to_i,
:less_than => 2**31
}, :allow_blank => true
13 years ago
before_validation :prepare_name!
before_save :update_change_date
after_save :update_soa_serial
13 years ago
after_initialize do
self.ttl ||= Settings.default_ttl
end
13 years ago
# By default records don't support priorities.
# Those who do can overwrite this in their own classes.
def supports_priority?; false end
def shortname; name.gsub(/\.?#{self.domain.name}$/, '') end
def shortname=(value); self.name = value end
13 years ago
def to_label; "#{type} #{content}" end
13 years ago
protected
def prepare_name!
return if domain.nil? or domain.name.blank?
self.name = domain.name if name.blank? or name == '@'
self.name << ".#{domain.name}" unless name.index(domain.name)
end
# Update the change date for automatic serial number generation
def update_change_date; self.change_date = Time.now.to_i end
def update_soa_serial #:nodoc:
unless type == 'SOA' || @serial_updated || domain.slave?
domain.soa_record.update_serial!
@serial_updated = true
end
end
13 years ago
end