45 lines
1.4 KiB
Ruby
45 lines
1.4 KiB
Ruby
class EmailEvent < ApplicationRecord
|
|
RETENTION_DURATION = 1.month
|
|
|
|
enum status: {
|
|
pending: 'pending',
|
|
dispatched: 'dispatched',
|
|
dispatch_error: 'dispatch_error'
|
|
}
|
|
|
|
scope :dolist, -> { dolist_smtp.or(dolist_api) }
|
|
scope :dolist_smtp, -> { where(method: 'dolist_smtp') } # legacy method: removable after 2023-06
|
|
scope :dolist_api, -> { where(method: 'dolist_api') }
|
|
scope :sendinblue, -> { where(method: 'sendinblue') }
|
|
scope :outdated, -> { where("created_at < ?", RETENTION_DURATION.ago) }
|
|
|
|
class << self
|
|
def create_from_message!(message, status:)
|
|
to = message.to || ["unset"] # no recipients when error occurs *before* setting to: in the mailer
|
|
|
|
to.each do |recipient|
|
|
EmailEvent.create!(
|
|
to: recipient,
|
|
subject: message.subject || "",
|
|
processed_at: message.date,
|
|
method: ActionMailer::Base.delivery_methods.key(message.delivery_method.class),
|
|
message_id: message.message_id,
|
|
status:
|
|
)
|
|
rescue StandardError => error
|
|
Sentry.capture_exception(error, extra: { subject: message.subject, status: })
|
|
end
|
|
end
|
|
end
|
|
|
|
def match_dolist_email
|
|
return if to == "unset"
|
|
|
|
# subjects does not match, so compare to event time with tolerance
|
|
Dolist::API.new.sent_mails(to).sort_by(&:delivered_at).find { (processed_at..processed_at + 1.hour).cover?(_1.delivered_at) }
|
|
end
|
|
|
|
def domain
|
|
to.split("@").last
|
|
end
|
|
end
|