Class: Jobs::EnqueueDigestEmails

Inherits:
Scheduled show all
Defined in:
app/jobs/scheduled/enqueue_digest_emails.rb

Instance Method Summary collapse

Methods inherited from Scheduled

#perform

Methods inherited from Base

acquire_cluster_concurrency_lock!, clear_cluster_concurrency_lock!, cluster_concurrency, cluster_concurrency_redis_key, delayed_perform, #error_context, get_cluster_concurrency, #last_db_duration, #log, #perform, #perform_immediately

Instance Method Details

#execute(args) ⇒ Object



7
8
9
10
11
12
13
14
15
# File 'app/jobs/scheduled/enqueue_digest_emails.rb', line 7

def execute(args)
  if SiteSetting.disable_digest_emails? || SiteSetting.private_email? ||
       SiteSetting.disable_emails == "yes"
    return
  end
  users = target_user_ids

  users.each { |user_id| ::Jobs.enqueue(:user_email, type: "digest", user_id: user_id) }
end

#target_user_idsObject



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'app/jobs/scheduled/enqueue_digest_emails.rb', line 17

def target_user_ids
  # Users who want to receive digest email within their chosen digest email frequency
  query =
    User
      .real
      .activated
      .not_suspended
      .where(staged: false)
      .joins(:user_option, :user_stat, :user_emails)
      .where("user_options.email_digests")
      .where("user_stats.bounce_score < ?", SiteSetting.bounce_score_threshold)
      .where("user_emails.primary")
      .where(
        "COALESCE(last_emailed_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 MINUTE'::INTERVAL * user_options.digest_after_minutes)",
      )
      .where(
        "COALESCE(user_stats.digest_attempted_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 MINUTE'::INTERVAL * user_options.digest_after_minutes)",
      )
      .where(
        "COALESCE(last_seen_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 MINUTE'::INTERVAL * user_options.digest_after_minutes)",
      )
      .where(
        "COALESCE(last_seen_at, '2010-01-01') >= CURRENT_TIMESTAMP - ('1 DAY'::INTERVAL * ?)",
        SiteSetting.suppress_digest_email_after_days,
      )
      .order("user_stats.digest_attempted_at ASC NULLS FIRST")

  # If the site requires approval, make sure the user is approved
  query = query.where("approved OR moderator OR admin") if SiteSetting.must_approve_users?

  query = query.limit(GlobalSetting.max_digests_enqueued_per_30_mins_per_site)

  query.pluck(:id)
end