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)
|
2017-04-25 03:26:06 +08:00
|
|
|
return if SiteSetting.disable_digest_emails? || SiteSetting.private_email?
|
|
|
|
target_user_ids.each do |user_id|
|
2019-10-22 01:25:35 +08:00
|
|
|
::Jobs.enqueue(:user_email, type: :digest, user_id: user_id)
|
2013-02-26 00:42:20 +08:00
|
|
|
end
|
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")
|
|
|
|
.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)")
|
|
|
|
.where("COALESCE(last_seen_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 MINUTE'::INTERVAL * user_options.digest_after_minutes)")
|
2017-02-09 01:11:34 +08:00
|
|
|
.where("COALESCE(last_seen_at, '2010-01-01') >= CURRENT_TIMESTAMP - ('1 DAY'::INTERVAL * #{SiteSetting.suppress_digest_email_after_days})")
|
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
|
|
|
|
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
|