mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-18 20:39:32 +00:00
Change e-mail domain blocks to match subdomains of blocked domains (#18979)
This commit is contained in:
parent
d83faa1a89
commit
0412a4d03e
|
@ -30,32 +30,56 @@ class EmailDomainBlock < ApplicationRecord
|
||||||
@history ||= Trends::History.new('email_domain_blocks', id)
|
@history ||= Trends::History.new('email_domain_blocks', id)
|
||||||
end
|
end
|
||||||
|
|
||||||
def self.block?(domain_or_domains, attempt_ip: nil)
|
class Matcher
|
||||||
domains = Array(domain_or_domains).map do |str|
|
def initialize(domain_or_domains, attempt_ip: nil)
|
||||||
domain = begin
|
@uris = extract_uris(domain_or_domains)
|
||||||
if str.include?('@')
|
@attempt_ip = attempt_ip
|
||||||
str.split('@', 2).last
|
end
|
||||||
else
|
|
||||||
str
|
def match?
|
||||||
end
|
blocking? || invalid_uri?
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def invalid_uri?
|
||||||
|
@uris.any?(&:nil?)
|
||||||
|
end
|
||||||
|
|
||||||
|
def blocking?
|
||||||
|
blocks = EmailDomainBlock.where(domain: domains_with_variants).order(Arel.sql('char_length(domain) desc'))
|
||||||
|
blocks.each { |block| block.history.add(@attempt_ip) } if @attempt_ip.present?
|
||||||
|
blocks.any?
|
||||||
|
end
|
||||||
|
|
||||||
|
def domains_with_variants
|
||||||
|
@uris.flat_map do |uri|
|
||||||
|
next if uri.nil?
|
||||||
|
|
||||||
|
segments = uri.normalized_host.split('.')
|
||||||
|
|
||||||
|
segments.map.with_index { |_, i| segments[i..-1].join('.') }
|
||||||
end
|
end
|
||||||
|
|
||||||
TagManager.instance.normalize_domain(domain) if domain.present?
|
|
||||||
rescue Addressable::URI::InvalidURIError
|
|
||||||
nil
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# If some of the inputs passed in are invalid, we definitely want to
|
def extract_uris(domain_or_domains)
|
||||||
# block the attempt, but we also want to register hits against any
|
Array(domain_or_domains).map do |str|
|
||||||
# other valid matches
|
domain = begin
|
||||||
|
if str.include?('@')
|
||||||
|
str.split('@', 2).last
|
||||||
|
else
|
||||||
|
str
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
blocked = domains.any?(&:nil?)
|
Addressable::URI.new.tap { |u| u.host = domain.strip } if domain.present?
|
||||||
|
rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
|
||||||
where(domain: domains).find_each do |block|
|
nil
|
||||||
blocked = true
|
end
|
||||||
block.history.add(attempt_ip) if attempt_ip.present?
|
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
blocked
|
def self.block?(domain_or_domains, attempt_ip: nil)
|
||||||
|
Matcher.new(domain_or_domains, attempt_ip: attempt_ip).match?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -12,16 +12,29 @@ RSpec.describe EmailDomainBlock, type: :model do
|
||||||
let(:input) { nil }
|
let(:input) { nil }
|
||||||
|
|
||||||
context 'given an e-mail address' do
|
context 'given an e-mail address' do
|
||||||
let(:input) { 'nyarn@example.com' }
|
let(:input) { "foo@#{domain}" }
|
||||||
|
|
||||||
it 'returns true if the domain is blocked' do
|
context do
|
||||||
Fabricate(:email_domain_block, domain: 'example.com')
|
let(:domain) { 'example.com' }
|
||||||
expect(EmailDomainBlock.block?(input)).to be true
|
|
||||||
|
it 'returns true if the domain is blocked' do
|
||||||
|
Fabricate(:email_domain_block, domain: 'example.com')
|
||||||
|
expect(EmailDomainBlock.block?(input)).to be true
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'returns false if the domain is not blocked' do
|
||||||
|
Fabricate(:email_domain_block, domain: 'other-example.com')
|
||||||
|
expect(EmailDomainBlock.block?(input)).to be false
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'returns false if the domain is not blocked' do
|
context do
|
||||||
Fabricate(:email_domain_block, domain: 'other-example.com')
|
let(:domain) { 'mail.example.com' }
|
||||||
expect(EmailDomainBlock.block?(input)).to be false
|
|
||||||
|
it 'returns true if it is a subdomain of a blocked domain' do
|
||||||
|
Fabricate(:email_domain_block, domain: 'example.com')
|
||||||
|
expect(described_class.block?(input)).to be true
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue