Nicolae Claudius
13 years ago
5 changed files with 104 additions and 95 deletions
@ -0,0 +1,34 @@
|
||||
class Domain < ActiveRecord::Base |
||||
|
||||
before_validation(:on => :update) do |
||||
if name_changed? |
||||
name_was_pattern = /#{Regexp.escape(name_was)}$/ |
||||
each_update_involved_record do |record| |
||||
if record.type == 'SOA' |
||||
record.reset_serial |
||||
record.name = name |
||||
else |
||||
record.name = record.name.sub(name_was_pattern, name) |
||||
end |
||||
record.domain = self |
||||
end |
||||
end |
||||
end |
||||
|
||||
after_update do |
||||
if name_changed? |
||||
name_was_pattern = /#{Regexp.escape(name_was)}$/ |
||||
records.each do |record| |
||||
record.name = record.name.sub(name_was_pattern, name) |
||||
record.save! |
||||
end |
||||
end |
||||
end |
||||
|
||||
def each_update_involved_record |
||||
yield soa_record |
||||
soa_records.each { |record| yield record } |
||||
records.each { |record| yield record } |
||||
end |
||||
|
||||
end |
@ -0,0 +1,52 @@
|
||||
class Domain < ActiveRecord::Base |
||||
|
||||
validate :domain_ownership |
||||
def domain_ownership |
||||
# non-TLD validation |
||||
errors[:name] = "cannot be a TLD or a reserved domain" if Tld.include?(name) |
||||
|
||||
# If parent domain is on our system, the user be permitted to manage current domain. |
||||
# He either owns parent, or is permitted to current domain or to an ancestor. |
||||
if parent_domain.present? && !parent_domain.can_be_managed_by_current_user? |
||||
@domain_ownership_failed = true |
||||
errors[:name] = "issue, the parent domain `#{parent_domain.name}` is registered to another user" |
||||
end |
||||
end |
||||
|
||||
# If current user present authorize it |
||||
# If current user not present, just allow (rake tasks etc) |
||||
def can_be_managed_by_current_user? |
||||
return true if User.current.nil? |
||||
Ability::CRUD.all?{|operation| User.current.can?(operation, self)} |
||||
end |
||||
|
||||
before_save do |
||||
self.name_reversed = name.reverse if name_changed? |
||||
end |
||||
|
||||
# Returns the first immediate parent, if exists (and caches the search) |
||||
def parent_domain |
||||
return nil if name.nil? |
||||
@parent_domain ||= {} |
||||
@parent_domain[name] ||= _parent_domain |
||||
end |
||||
|
||||
def subdomains |
||||
Domain.where(:name_reversed.matches => "#{name_reversed}.%") |
||||
end |
||||
|
||||
protected |
||||
|
||||
# Returns the first immediate parent, if exists (does not cache the search) |
||||
# For example "sub.sub.domain.com"'s parent might be "sub.domain.com" or "domain.com" |
||||
def _parent_domain |
||||
segments = name.split('.') |
||||
while segments.size > 1 |
||||
segments.shift |
||||
domain = Domain.find_by_name(segments.join('.')) |
||||
return domain if domain.present? |
||||
end |
||||
return nil |
||||
end |
||||
|
||||
end |
Loading…
Reference in new issue