about summary refs log tree commit diff
path: root/app/lib/email_validator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/lib/email_validator.rb')
-rw-r--r--app/lib/email_validator.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/lib/email_validator.rb b/app/lib/email_validator.rb
new file mode 100644
index 000000000..856b8b1f7
--- /dev/null
+++ b/app/lib/email_validator.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+class EmailValidator < ActiveModel::EachValidator
+  def validate_each(record, attribute, value)
+    return if Rails.configuration.x.email_domains_blacklist.empty?
+
+    record.errors.add(attribute, I18n.t('users.invalid_email')) if blocked_email?(value)
+  end
+
+  private
+
+  def blocked_email?(value)
+    domains = Rails.configuration.x.email_domains_blacklist.gsub('.', '\.')
+    regexp  = Regexp.new("@(.+\\.)?(#{domains})", true)
+
+    value =~ regexp
+  end
+end