scinote-web/app/jobs/concerns/failed_deivery_notifiable_job.rb

46 lines
1.3 KiB
Ruby

# frozen_string_literal: true
module FailedDeliveryNotifiableJobJob
extend ActiveSupport::Concern
included do
before_enqueue do |job|
unless job.arguments.last.is_a?(Hash) && job.arguments.last[:user_id].present?
raise ArgumentError, 'required :user_id argument is missing! Needed for user notification in case of failure.'
end
end
rescue_from StandardError do |e|
logger.error e.message
logger.error e.backtrace.join("\n")
create_failed_notification!
end
end
private
def create_failed_notification!
@user = User.find_by(id: arguments.last[:user_id])
return if @user.blank?
notification = Notification.create!(
type_of: :deliver_error,
title: failed_notification_title,
message: failed_notification_message
)
notification.create_user_notification(@user)
end
def failed_notification_title
I18n.t('activejob.failure_notifiable_job.general_notification_title')
end
def failed_notification_message
I18n.backend.date_format = @user.settings[:date_format]
timestamp = I18n.l(enqueued_at.in_time_zone(@user.time_zone), format: :full)
I18n.t('activejob.failure_notifiable_job.general_notification_message', request_timestamp: timestamp)
ensure
I18n.backend.date_format = nil
end
end