2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-07-25 13:01:27 -04:00
|
|
|
class EmailValidator < ActiveModel::EachValidator
|
|
|
|
def validate_each(record, attribute, value)
|
2023-01-24 09:10:24 +05:30
|
|
|
if value.blank?
|
|
|
|
record.errors.add(attribute, I18n.t(:"user.email.blank"))
|
|
|
|
invalid = true
|
|
|
|
elsif !EmailAddressValidator.valid_value?(value)
|
2021-04-15 14:46:32 +03:00
|
|
|
if Invite === record && attribute == :email
|
2022-01-18 09:38:31 -03:00
|
|
|
record.errors.add(:base, I18n.t(:"invite.invalid_email", email: CGI.escapeHTML(value)))
|
2021-04-15 14:46:32 +03:00
|
|
|
else
|
|
|
|
record.errors.add(attribute, I18n.t(:"user.email.invalid"))
|
|
|
|
end
|
|
|
|
invalid = true
|
2020-06-03 10:13:25 +08:00
|
|
|
end
|
|
|
|
|
2022-02-17 20:12:51 -05:00
|
|
|
if !EmailValidator.allowed?(value)
|
2017-10-03 11:23:18 +02:00
|
|
|
record.errors.add(attribute, I18n.t(:"user.email.not_allowed"))
|
2021-04-15 14:46:32 +03:00
|
|
|
invalid = true
|
2013-07-25 13:01:27 -04:00
|
|
|
end
|
2017-10-03 11:23:18 +02:00
|
|
|
|
2021-04-15 14:46:32 +03:00
|
|
|
if !invalid && ScreenedEmail.should_block?(value)
|
2013-07-25 13:01:27 -04:00
|
|
|
record.errors.add(attribute, I18n.t(:"user.email.blocked"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-03 11:23:18 +02:00
|
|
|
def self.allowed?(email)
|
2020-07-27 10:23:54 +10:00
|
|
|
if (setting = SiteSetting.allowed_email_domains).present?
|
2017-10-03 11:23:18 +02:00
|
|
|
return email_in_restriction_setting?(setting, email) || is_developer?(email)
|
2020-07-27 10:23:54 +10:00
|
|
|
elsif (setting = SiteSetting.blocked_email_domains).present?
|
2017-10-03 11:23:18 +02:00
|
|
|
return !(email_in_restriction_setting?(setting, email) && !is_developer?(email))
|
|
|
|
end
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2020-03-31 23:59:15 +05:30
|
|
|
def self.can_auto_approve_user?(email)
|
|
|
|
if (setting = SiteSetting.auto_approve_email_domains).present?
|
|
|
|
return !!(EmailValidator.allowed?(email) && email_in_restriction_setting?(setting, email))
|
|
|
|
end
|
|
|
|
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2017-10-03 11:23:18 +02:00
|
|
|
def self.email_in_restriction_setting?(setting, value)
|
2013-07-25 13:01:27 -04:00
|
|
|
domains = setting.gsub(".", '\.')
|
2018-01-17 21:45:32 +01:00
|
|
|
regexp = Regexp.new("@(.+\\.)?(#{domains})$", true)
|
2013-07-25 13:01:27 -04:00
|
|
|
value =~ regexp
|
|
|
|
end
|
|
|
|
|
2017-10-03 11:23:18 +02:00
|
|
|
def self.is_developer?(value)
|
2015-01-29 23:22:59 +05:30
|
|
|
Rails.configuration.respond_to?(:developer_emails) &&
|
|
|
|
Rails.configuration.developer_emails.include?(value)
|
|
|
|
end
|
2014-10-23 22:55:49 +05:30
|
|
|
end
|