2013-02-06 03:16:51 +08:00
|
|
|
module Jobs
|
|
|
|
|
|
|
|
# A daily job that will enqueue digest emails to be sent to users
|
2013-08-08 01:25:05 +08:00
|
|
|
class EnqueueDigestEmails < Jobs::Scheduled
|
2014-02-06 07:14:41 +08:00
|
|
|
every 6.hours
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def execute(args)
|
2015-01-27 12:46:21 +08: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-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
|
2013-08-24 05:35:01 +08:00
|
|
|
# Users who want to receive emails and haven't been emailed in the last day
|
2013-09-06 12:07:23 +08:00
|
|
|
query = User.real
|
2015-11-07 02:19:13 +08:00
|
|
|
.where(email_digests: true, active: true, staged: false)
|
2014-12-30 04:16:08 +08:00
|
|
|
.not_suspended
|
2013-06-06 23:45:18 +08:00
|
|
|
.where("COALESCE(last_emailed_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 DAY'::INTERVAL * digest_after_days)")
|
2016-01-29 02:01:35 +08:00
|
|
|
.where("COALESCE(last_seen_at, '2010-01-01') <= CURRENT_TIMESTAMP - ('1 DAY'::INTERVAL * digest_after_days)")
|
2016-02-09 05:18:52 +08:00
|
|
|
.where("COALESCE(last_seen_at, '2010-01-01') >= CURRENT_TIMESTAMP - ('1 DAY'::INTERVAL * #{SiteSetting.delete_digest_email_after_days})")
|
2013-06-06 23:45:18 +08: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-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
|