2013-07-25 13:01:27 -04:00
|
|
|
class EmailValidator < ActiveModel::EachValidator
|
|
|
|
|
|
|
|
def validate_each(record, attribute, value)
|
|
|
|
if (setting = SiteSetting.email_domains_whitelist).present?
|
|
|
|
unless email_in_restriction_setting?(setting, value)
|
|
|
|
record.errors.add(attribute, I18n.t(:'user.email.not_allowed'))
|
|
|
|
end
|
|
|
|
elsif (setting = SiteSetting.email_domains_blacklist).present?
|
|
|
|
if email_in_restriction_setting?(setting, value)
|
|
|
|
record.errors.add(attribute, I18n.t(:'user.email.not_allowed'))
|
|
|
|
end
|
|
|
|
end
|
2013-08-14 11:05:53 -04:00
|
|
|
if record.errors[attribute].blank? and ScreenedEmail.should_block?(value)
|
2013-07-25 13:01:27 -04:00
|
|
|
record.errors.add(attribute, I18n.t(:'user.email.blocked'))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def email_in_restriction_setting?(setting, value)
|
|
|
|
domains = setting.gsub('.', '\.')
|
|
|
|
regexp = Regexp.new("@(#{domains})", true)
|
|
|
|
value =~ regexp
|
|
|
|
end
|
|
|
|
|
2014-06-09 15:17:36 -04:00
|
|
|
def self.email_regex
|
2014-06-10 10:31:14 -04:00
|
|
|
/^[a-zA-Z0-9!#\$%&'*+\/=?\^_`{|}~\-]+(?:\.[a-zA-Z0-9!#\$%&'\*+\/=?\^_`{|}~\-]+)*@(?:[a-zA-Z0-9](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?\.)+[a-zA-Z0-9](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?$/
|
2014-06-09 15:17:36 -04:00
|
|
|
end
|
|
|
|
|
2013-07-25 13:01:27 -04:00
|
|
|
end
|