Normalize idna domain before account unblock domain (#29530)
This commit is contained in:
parent
affbb10566
commit
3ff575f54c
2 changed files with 45 additions and 1 deletions
|
@ -187,7 +187,7 @@ module AccountInteractions
|
||||||
end
|
end
|
||||||
|
|
||||||
def unblock_domain!(other_domain)
|
def unblock_domain!(other_domain)
|
||||||
block = domain_blocks.find_by(domain: other_domain)
|
block = domain_blocks.find_by(domain: normalized_domain(other_domain))
|
||||||
block&.destroy
|
block&.destroy
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -299,4 +299,8 @@ module AccountInteractions
|
||||||
def remove_potential_friendship(other_account)
|
def remove_potential_friendship(other_account)
|
||||||
PotentialFriendshipTracker.remove(id, other_account.id)
|
PotentialFriendshipTracker.remove(id, other_account.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def normalized_domain(domain)
|
||||||
|
TagManager.instance.normalize_domain(domain)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -248,6 +248,24 @@ describe AccountInteractions do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe '#block_idna_domain!' do
|
||||||
|
subject do
|
||||||
|
[
|
||||||
|
account.block_domain!(idna_domain),
|
||||||
|
account.block_domain!(punycode_domain),
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
||||||
|
let(:idna_domain) { '대한민국.한국' }
|
||||||
|
let(:punycode_domain) { 'xn--3e0bs9hfvinn1a.xn--3e0b707e' }
|
||||||
|
|
||||||
|
it 'creates single AccountDomainBlock' do
|
||||||
|
expect do
|
||||||
|
expect(subject).to all(be_a AccountDomainBlock)
|
||||||
|
end.to change { account.domain_blocks.count }.by 1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe '#unfollow!' do
|
describe '#unfollow!' do
|
||||||
subject { account.unfollow!(target_account) }
|
subject { account.unfollow!(target_account) }
|
||||||
|
|
||||||
|
@ -343,6 +361,28 @@ describe AccountInteractions do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe '#unblock_idna_domain!' do
|
||||||
|
subject { account.unblock_domain!(punycode_domain) }
|
||||||
|
|
||||||
|
let(:idna_domain) { '대한민국.한국' }
|
||||||
|
let(:punycode_domain) { 'xn--3e0bs9hfvinn1a.xn--3e0b707e' }
|
||||||
|
|
||||||
|
context 'when blocking the domain' do
|
||||||
|
it 'returns destroyed AccountDomainBlock' do
|
||||||
|
account_domain_block = Fabricate(:account_domain_block, domain: idna_domain)
|
||||||
|
account.domain_blocks << account_domain_block
|
||||||
|
expect(subject).to be_a AccountDomainBlock
|
||||||
|
expect(subject).to be_destroyed
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'when unblocking idna domain' do
|
||||||
|
it 'returns nil' do
|
||||||
|
expect(subject).to be_nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe '#following?' do
|
describe '#following?' do
|
||||||
subject { account.following?(target_account) }
|
subject { account.following?(target_account) }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue