mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 17:38:07 +01:00
18 lines
396 B
Ruby
18 lines
396 B
Ruby
# 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
|