mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Convert EmailHelper
to CanonicalEmail
model concern
This commit is contained in:
parent
2ed13071ef
commit
4fea57b64f
3 changed files with 24 additions and 20 deletions
|
@ -1,18 +0,0 @@
|
|||
# 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
|
|
@ -12,7 +12,7 @@
|
|||
#
|
||||
|
||||
class CanonicalEmailBlock < ApplicationRecord
|
||||
include EmailHelper
|
||||
include CanonicalEmail
|
||||
include Paginable
|
||||
|
||||
belongs_to :reference_account, class_name: 'Account', optional: true
|
||||
|
@ -26,7 +26,7 @@ class CanonicalEmailBlock < ApplicationRecord
|
|||
end
|
||||
|
||||
def email=(email)
|
||||
self.canonical_email_hash = email_to_canonical_email_hash(email)
|
||||
self.canonical_email_hash = self.class.email_to_canonical_email_hash(email)
|
||||
end
|
||||
|
||||
def self.block?(email)
|
||||
|
|
22
app/models/concerns/canonical_email.rb
Normal file
22
app/models/concerns/canonical_email.rb
Normal file
|
@ -0,0 +1,22 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module CanonicalEmail
|
||||
extend ActiveSupport::Concern
|
||||
|
||||
class_methods do
|
||||
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
|
||||
end
|
Loading…
Reference in a new issue