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.
33 lines
1.4 KiB
33 lines
1.4 KiB
class Domain < ActiveRecord::Base |
|
set_inheritance_column "sti_disabled" |
|
nilify_blanks |
|
|
|
belongs_to :user |
|
has_many :records, :dependent => :destroy |
|
|
|
cattr_reader :types |
|
@@types = ['NATIVE', 'MASTER', 'SLAVE', 'SUPERSLAVE'] |
|
|
|
has_one :soa_record, :class_name => 'SOA', :conditions => {:type => 'SOA'} |
|
|
|
# Handle relations and validations for all resource records on this zone |
|
validates_associated :records |
|
for type in Record.types |
|
has_many :"#{type.downcase}_records", :class_name => type, :conditions => {:type => type} |
|
validates_associated :"#{type.downcase}_records" |
|
end |
|
|
|
validates :name, :presence => true, :uniqueness => true, :domainname => {:require_valid_tld => false} |
|
validates :master, :presence => true, :if => :slave? |
|
validates :master, :ip => true, :if => :slave?, :allow_nil => true |
|
validates :type, :inclusion => { :in => @@types, :message => "Unknown domain type" } |
|
validates :soa_record, :presence => {:unless => :slave?} |
|
validates_associated :soa_record, :allow_nil => true |
|
validates :ns_records, :presence => true, :length => {:minimum => 2, :message => "must have be at least 2"} |
|
MASTER_FORMAT = /\A(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\z/ |
|
validate :master, :presence => {:if => :slave?}, |
|
:format => {:with => MASTER_FORMAT, :allow_blank => true, :if => :slave?} |
|
|
|
# Are we a slave domain |
|
def slave?; self.type == 'SLAVE' end |
|
end
|
|
|