about summary refs log tree commit diff
path: root/app/workers/scheduler/email_scheduler.rb
blob: 24117e4241865766d050740645bfc4e4427284eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

class Scheduler::EmailScheduler
  include Sidekiq::Worker

  sidekiq_options unique: :until_executed

  def perform
    eligible_users.reorder(nil).find_each do |user|
      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