mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
37 lines
909 B
Ruby
37 lines
909 B
Ruby
# frozen_string_literal: true
|
|
|
|
class BlacklistedEmailValidator < ActiveModel::Validator
|
|
def validate(user)
|
|
return if user.valid_invitation? || user.email.blank?
|
|
|
|
@email = user.email
|
|
|
|
user.errors.add(:email, :blocked) if blocked_email?
|
|
end
|
|
|
|
private
|
|
|
|
def blocked_email?
|
|
on_blacklist? || not_on_whitelist?
|
|
end
|
|
|
|
def on_blacklist?
|
|
return true if EmailDomainBlock.block?(@email)
|
|
return false if Rails.configuration.x.email_domains_blacklist.blank?
|
|
|
|
domains = Rails.configuration.x.email_domains_blacklist.gsub('.', '\.')
|
|
regexp = Regexp.new("@(.+\\.)?(#{domains})", true)
|
|
|
|
regexp.match?(@email)
|
|
end
|
|
|
|
def not_on_whitelist?
|
|
return false if Rails.configuration.x.email_domains_whitelist.blank?
|
|
|
|
domains = Rails.configuration.x.email_domains_whitelist.gsub('.', '\.')
|
|
regexp = Regexp.new("@(.+\\.)?(#{domains})$", true)
|
|
|
|
@email !~ regexp
|
|
end
|
|
end
|