X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9c0d5277adfde9f7daee0b0c83d4e68dd331e905..990f3eba4069f98a11d98f18b18d0e35bcf295f4:/app/models/acl.rb diff --git a/app/models/acl.rb b/app/models/acl.rb index 8eeb2310a..2db7fb765 100644 --- a/app/models/acl.rb +++ b/app/models/acl.rb @@ -1,3 +1,17 @@ class Acl < ActiveRecord::Base - scope :address, lambda { |address| where("address >> ?", address) } + def self.match(address, domain = nil) + if domain + condition = Acl.where("address >>= ? OR domain = ?", address, domain) + else + condition = Acl.where("address >>= ?", address) + end + end + + def self.no_account_creation(address, domain = nil) + self.match(address, domain).where(:k => "no_account_creation").exists? + end + + def self.no_trace_download(address, domain = nil) + self.match(address, domain).where(:k => "no_trace_download").exists? + end end