From: Tom Hughes Date: Tue, 6 Jul 2021 09:12:51 +0000 (+0100) Subject: Allow acls to match on parent domains X-Git-Tag: live~2201 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/da546af22e724f81f441417aaff11b24e6051267 Allow acls to match on parent domains --- diff --git a/app/models/acl.rb b/app/models/acl.rb index 90dd7f3cf..a65c3a35a 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 diff --git a/test/models/acl_test.rb b/test/models/acl_test.rb index ad17fc1b0..49f065612 100644 --- a/test/models/acl_test.rb +++ b/test/models/acl_test.rb @@ -16,8 +16,10 @@ class AclTest < ActiveSupport::TestCase def test_no_account_creation_by_domain assert_not Acl.no_account_creation("192.168.1.1", :domain => "example.com") + assert_not Acl.no_account_creation("192.168.1.1", :domain => "test.example.com") create(:acl, :domain => "example.com", :k => "no_account_creation") assert Acl.no_account_creation("192.168.1.1", :domain => "example.com") + assert Acl.no_account_creation("192.168.1.1", :domain => "test.example.com") end def test_no_account_creation_by_mx