This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-01-15 04:34:28 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Scheduler::EmailScheduler
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2018-08-25 13:28:07 +02:00
|
|
|
sidekiq_options unique: :until_executed, retry: 0
|
2018-08-19 15:48:29 +02:00
|
|
|
|
2018-01-15 04:34:28 +01:00
|
|
|
def perform
|
2018-08-21 12:25:50 +02:00
|
|
|
eligible_users.reorder(nil).find_each do |user|
|
2018-01-15 04:34:28 +01:00
|
|
|
next unless user.allows_digest_emails?
|
|
|
|
DigestMailerWorker.perform_async(user.id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def eligible_users
|
|
|
|
User.confirmed
|
|
|
|
.joins(:account)
|
|
|
|
.where(accounts: { silenced: false, suspended: false })
|
|
|
|
.where(disabled: false)
|
|
|
|
.where('current_sign_in_at < ?', 20.days.ago)
|
|
|
|
.where('last_emailed_at IS NULL OR last_emailed_at < ?', 20.days.ago)
|
|
|
|
end
|
|
|
|
end
|