Project

General

Profile

« Previous | Next » 

Revision acfbc458

Added by Marek Hulán about 10 years ago

fixes #812 - new permissions model, user group role and nest support, role filters for better granularity

Contributions from:

View differences:

app/models/domain.rb
require "resolv"
# This models a DNS domain and so represents a site.
class Domain < ActiveRecord::Base
include Authorization
include Authorizable
include Taxonomix
audited :allow_mass_assignment => true
......
"#{id}-#{name.parameterize}"
end
def enforce_permissions operation
# We get called again with the operation being set to create
return true if operation == "edit" and new_record?
current = User.current
if current.allowed_to?("#{operation}_domains".to_sym)
# If you can create domains then you can create them anywhere
return true if operation == "create"
# However if you are editing or destroying and you have a domain list then you are constrained
if current.domains.empty? or current.domains.map(&:id).include? self.id
return true
end
end
errors.add(:base, _("You do not have permission to %s this domain") % operation)
false
end
# return the primary name server for our domain based on DNS lookup
# it first searches for SOA record, if it failed it will search for NS records
def nameservers

Also available in: Unified diff