~cytrogen/masto-fe

ref: 85db3924645ebd20f0259356fa7556a2e8055b36 masto-fe/app/helpers/email_helper.rb -rw-r--r-- 396 bytes
85db3924 — Nick Schonning Autofix Rubocop cops for config/ (#24145) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module EmailHelper
  def self.included(base)
    base.extend(self)
  end

  def email_to_canonical_email(str)
    username, domain = str.downcase.split('@', 2)
    username, = username.delete('.').split('+', 2)

    "#{username}@#{domain}"
  end

  def email_to_canonical_email_hash(str)
    Digest::SHA2.new(256).hexdigest(email_to_canonical_email(str))
  end
end