]> cat aescling's git repositories - mastodon.git/commitdiff
Validate that e-mail resolves with MX and it's not blacklisted (#7631)
authorEugen Rochko <eugen@zeonfederated.com>
Sun, 27 May 2018 02:58:08 +0000 (04:58 +0200)
committerYamagishi Kazutoshi <ykzts@desire.sh>
Sun, 27 May 2018 02:58:08 +0000 (11:58 +0900)
Original patch by @j-a4

app/models/user.rb
app/validators/email_mx_validator.rb [new file with mode: 0644]

index cfbae58ed32514729f78413734dbee73c6253578..0becfa7e96669d16a76bcc16dbd6b7bfb5ee7285 100644 (file)
@@ -65,6 +65,7 @@ class User < ApplicationRecord
 
   validates :locale, inclusion: I18n.available_locales.map(&:to_s), if: :locale?
   validates_with BlacklistedEmailValidator, if: :email_changed?
+  validates_with EmailMxValidator, if: :email_changed?
 
   scope :recent, -> { order(id: :desc) }
   scope :admins, -> { where(admin: true) }
diff --git a/app/validators/email_mx_validator.rb b/app/validators/email_mx_validator.rb
new file mode 100644 (file)
index 0000000..d4c7cc2
--- /dev/null
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+require 'resolv'
+
+class EmailMxValidator < ActiveModel::Validator
+  def validate(user)
+    return if Rails.env.test?
+    user.errors.add(:email, I18n.t('users.invalid_email')) if invalid_mx?(user.email)
+  end
+
+  private
+
+  def invalid_mx?(value)
+    _, domain = value.split('@', 2)
+
+    return true if domain.nil?
+
+    records = Resolv::DNS.new.getresources(domain, Resolv::DNS::Resource::IN::MX).to_a.map { |e| e.exchange.to_s }
+    records.empty? || on_blacklist?(records)
+  end
+
+  def on_blacklist?(values)
+    EmailDomainBlock.where(domain: values).any?
+  end
+end