2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-21 11:14:43 +08:00
|
|
|
module Skippable
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
def create_skipped_email_log(email_type:, to_address:, user_id:, post_id:, reason_type:)
|
|
|
|
attributes = {
|
|
|
|
email_type: email_type,
|
|
|
|
to_address: to_address,
|
|
|
|
user_id: user_id,
|
|
|
|
post_id: post_id,
|
|
|
|
reason_type: reason_type,
|
|
|
|
}
|
|
|
|
|
|
|
|
if reason_type == SkippedEmailLog.reason_types[:exceeded_emails_limit]
|
|
|
|
exists =
|
|
|
|
SkippedEmailLog.exists?(
|
|
|
|
{ created_at: (Time.zone.now.beginning_of_day..Time.zone.now.end_of_day) }.merge!(
|
|
|
|
attributes.except(:post_id),
|
2023-01-09 20:20:10 +08:00
|
|
|
),
|
2018-08-21 11:14:43 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
return if exists
|
|
|
|
end
|
|
|
|
|
|
|
|
SkippedEmailLog.create!(attributes)
|
|
|
|
end
|
|
|
|
end
|