2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
module Jobs
|
2019-10-02 12:01:53 +08:00
|
|
|
class EnqueueDigestEmails < ::Jobs::Scheduled
|
2016-03-03 04:26:27 +08:00
|
|
|
every 30.minutes
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def execute(args)
|
2020-10-07 22:30:38 +08:00
|
|
|
if SiteSetting.disable_digest_emails? || SiteSetting.private_email? ||
|
|
|
|
SiteSetting.disable_emails == "yes"
|
|
|
|
return
|
2023-01-09 20:20:10 +08:00
|
|
|
end
|
2020-10-07 14:30:15 +08:00
|
|
|
users = target_user_ids
|
|
|
|
|
2022-02-05 01:34:38 +08:00
|
|
|
users.each { |user_id| ::Jobs.enqueue(:user_email, type: "digest", user_id: user_id) }
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-08-28 08:44:13 +08:00
|
|
|
def target_user_ids
|
2016-03-03 04:26:27 +08:00
|
|
|
# Users who want to receive digest email within their chosen digest email frequency
|
2020-05-27 23:09:40 +08:00
|
|
|
query =
|
|
|
|
User
|
|
|
|
.real
|
2017-03-09 02:19:11 +08:00
|
|
|
.activated
|
2020-05-27 23:09:40 +08:00
|
|
|
.not_suspended
|
2017-03-09 02:19:11 +08:00
|
|
|
.where(staged: false)
|
2020-05-27 23:09:40 +08:00
|
|
|
.joins(:user_option, :user_stat, :user_emails)
|
2017-03-09 02:19:11 +08:00
|
|
|
.where("user_options.email_digests")
|
2022-11-02 03:05:13 +08:00
|
|
|
.where("user_stats.bounce_score < ?", SiteSetting.bounce_score_threshold)
|
2020-05-27 23:09:40 +08:00
|
|
|
.where("user_emails.primary")
|
2016-03-03 04:26:27 +08:00
|
|
|
.where(
|
|
|
|
"COALESCE(last_emailed_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 MINUTE'::INTERVAL * user_options.digest_after_minutes)",
|
|
|
|
)
|
2020-10-07 22:30:38 +08:00
|
|
|
.where(
|
|
|
|
"COALESCE(user_stats.digest_attempted_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 MINUTE'::INTERVAL * user_options.digest_after_minutes)",
|
|
|
|
)
|
2016-03-03 04:26:27 +08:00
|
|
|
.where(
|
|
|
|
"COALESCE(last_seen_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 MINUTE'::INTERVAL * user_options.digest_after_minutes)",
|
|
|
|
)
|
2022-11-02 03:05:13 +08:00
|
|
|
.where(
|
|
|
|
"COALESCE(last_seen_at, '2010-01-01') >= CURRENT_TIMESTAMP - ('1 DAY'::INTERVAL * ?)",
|
|
|
|
SiteSetting.suppress_digest_email_after_days,
|
|
|
|
)
|
2020-10-07 22:30:38 +08:00
|
|
|
.order("user_stats.digest_attempted_at ASC NULLS FIRST")
|
2013-06-06 23:45:18 +08:00
|
|
|
|
|
|
|
# If the site requires approval, make sure the user is approved
|
2017-03-09 02:19:11 +08:00
|
|
|
query = query.where("approved OR moderator OR admin") if SiteSetting.must_approve_users?
|
2013-06-06 23:45:18 +08:00
|
|
|
|
2020-10-07 22:30:38 +08:00
|
|
|
query = query.limit(GlobalSetting.max_digests_enqueued_per_30_mins_per_site)
|
|
|
|
|
2013-08-28 08:44:13 +08:00
|
|
|
query.pluck(:id)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
end
|
2013-02-26 00:42:20 +08:00
|
|
|
end
|