forked from discourse/discourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemail_validator.rb
64 lines (54 loc) · 1.94 KB
/
email_validator.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# frozen_string_literal: true
class EmailValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
if value.blank?
record.errors.add(attribute, I18n.t(:"user.email.blank"))
invalid = true
elsif !EmailAddressValidator.valid_value?(value)
if Invite === record && attribute == :email
record.errors.add(:base, I18n.t(:"invite.invalid_email", email: CGI.escapeHTML(value)))
else
record.errors.add(attribute, I18n.t(:"user.email.invalid"))
end
invalid = true
end
if !EmailValidator.allowed?(value)
record.errors.add(attribute, I18n.t(:"user.email.not_allowed"))
invalid = true
end
if !invalid && ScreenedEmail.should_block?(value)
record.errors.add(attribute, I18n.t(:"user.email.blocked"))
end
end
def self.allowed?(email)
if (setting = SiteSetting.allowed_email_domains).present?
return email_in_restriction_setting?(setting, email) || is_developer?(email)
elsif (setting = SiteSetting.blocked_email_domains).present?
return !(email_in_restriction_setting?(setting, email) && !is_developer?(email))
end
true
end
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
def self.email_in_restriction_setting?(setting, value)
domains = setting.gsub(".", '\.')
regexp = Regexp.new("@(.+\\.)?(#{domains})$", true)
value =~ regexp
end
def self.is_developer?(value)
Rails.configuration.respond_to?(:developer_emails) &&
Rails.configuration.developer_emails.include?(value)
end
def self.email_regex
Discourse.deprecate(
"EmailValidator.email_regex is deprecated. Please use EmailAddressValidator instead.",
output_in_test: true,
drop_from: "2.9.0",
)
EmailAddressValidator.email_regex
end
end