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)
|
2015-01-26 23:46:21 -05:00
|
|
|
unless SiteSetting.disable_digest_emails?
|
|
|
|
target_user_ids.each do |user_id|
|
|
|
|
Jobs.enqueue(:user_email, type: :digest, user_id: user_id)
|
|
|
|
end
|
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
|
2016-02-16 23:46:19 -05:00
|
|
|
.where(active: true, staged: false)
|
|
|
|
.joins(:user_option)
|
2014-12-29 15:16:08 -05:00
|
|
|
.not_suspended
|
2016-02-16 23:46:19 -05:00
|
|
|
.where(user_options: {email_digests: true})
|
2016-03-02 15:26:27 -05: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-08 12:11:34 -05:00
|
|
|
.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
|
|
|
|
if SiteSetting.must_approve_users?
|
|
|
|
query = query.where("approved OR moderator OR admin")
|
|
|
|
end
|
|
|
|
|
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
|