2013-02-05 14:16:51 -05:00
|
|
|
module Jobs
|
|
|
|
|
|
|
|
# A daily job that will enqueue digest emails to be sent to users
|
2013-08-07 13:25:05 -04:00
|
|
|
class EnqueueDigestEmails < Jobs::Scheduled
|
2016-03-02 15:26:27 -05:00
|
|
|
every 30.minutes
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
def execute(args)
|
2017-04-24 15:26:06 -04:00
|
|
|
return if SiteSetting.disable_digest_emails? || SiteSetting.private_email?
|
|
|
|
target_user_ids.each do |user_id|
|
|
|
|
Jobs.enqueue(:user_email, type: :digest, user_id: user_id)
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-08-27 20:44:13 -04:00
|
|
|
def target_user_ids
|
2016-03-02 15:26:27 -05:00
|
|
|
# Users who want to receive digest email within their chosen digest email frequency
|
2013-09-06 00:07:23 -04:00
|
|
|
query = User.real
|
2017-07-27 21:20:09 -04:00
|
|
|
.not_suspended
|
|
|
|
.activated
|
|
|
|
.where(staged: false)
|
|
|
|
.joins(:user_option, :user_stat)
|
|
|
|
.where("user_options.email_digests")
|
|
|
|
.where("user_stats.bounce_score < #{SiteSetting.bounce_score_threshold}")
|
|
|
|
.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)")
|
|
|
|
.where("COALESCE(last_seen_at, '2010-01-01') >= CURRENT_TIMESTAMP - ('1 DAY'::INTERVAL * #{SiteSetting.suppress_digest_email_after_days})")
|
2013-06-06 11:45:18 -04:00
|
|
|
|
|
|
|
# If the site requires approval, make sure the user is approved
|
2017-03-08 13:19:11 -05:00
|
|
|
query = query.where("approved OR moderator OR admin") if SiteSetting.must_approve_users?
|
2013-06-06 11:45:18 -04:00
|
|
|
|
2013-08-27 20:44:13 -04:00
|
|
|
query.pluck(:id)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|