X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ea59d95f4aad7cafe3a0d0b4d5ef533b0662e365..71cb2c50fcaf29e2b933fc981e40a00223d94d34:/app/models/acl.rb diff --git a/app/models/acl.rb b/app/models/acl.rb index 90dd7f3cf..aa503f40c 100644 --- a/app/models/acl.rb +++ b/app/models/acl.rb @@ -23,7 +23,15 @@ class Acl < ApplicationRecord def self.match(address, options = {}) acls = Acl.where("address >>= ?", address) - acls = acls.or(Acl.where(:domain => options[:domain])) if options[:domain] + if options[:domain] + labels = options[:domain].split(".") + + until labels.empty? + acls = acls.or(Acl.where(:domain => labels.join("."))) + labels.shift + end + end + acls = acls.or(Acl.where(:mx => options[:mx])) if options[:mx] acls @@ -33,6 +41,10 @@ class Acl < ApplicationRecord match(address, options).exists?(:k => "no_account_creation") end + def self.allow_account_creation(address, options = {}) + match(address, options).exists?(:k => "allow_account_creation") + end + def self.no_note_comment(address, domain = nil) match(address, :domain => domain).exists?(:k => "no_note_comment") end