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.

81 lines
2.5 KiB

13 years ago
class Record < ActiveRecord::Base
stampable
12 years ago
audited
13 years ago
belongs_to :domain, :inverse_of => :records
13 years ago
belongs_to :user, :inverse_of => :records
13 years ago
cattr_reader :types
13 years ago
@@types = %w(SOA NS A MX TXT CNAME AAAA SRV)
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, :name]}
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,
:only_integer => true
13 years ago
}, :allow_blank => true
13 years ago
validates :authentication_token, :presence => true, :uniqueness => true
13 years ago
validate :max_records_per_domain, :on => :create
def max_records_per_domain
if records_exceeding? && !host_domain?
errors.add :base, "as a security measure, you cannot have more than #{Settings.max_records_per_domain} records on one domain"
13 years ago
end
end
13 years ago
13 years ago
before_validation :generate_token, :on => :create
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
# Generate a token by looping and ensuring does not already exist.
# stolen from Devise
def generate_token
self.authentication_token = loop do
token = Devise.friendly_token
break token unless Record.exists?(authentication_token: token)
13 years ago
end
end
delegate :host_domain?, :records_exceeding?, :to => :domain
delegate :user, :to => :domain, :prefix => :domain
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 =~ /#{Regexp.escape(domain.name)}$/
13 years ago
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
def name_equals_domain_name
errors.add :name, "must be equal to domain's name" unless name == domain.name
end
13 years ago
13 years ago
end