35 lines
990 B
Ruby
35 lines
990 B
Ruby
module Jobs
|
|
class PendingQueuedPostReminder < Jobs::Scheduled
|
|
|
|
every 1.hour
|
|
|
|
def execute(args)
|
|
return true unless SiteSetting.notify_about_queued_posts_after > 0 && SiteSetting.contact_email
|
|
|
|
if should_notify_ids.size > 0 && last_notified_id.to_i < should_notify_ids.max
|
|
message = PendingQueuedPostsMailer.notify(count: should_notify_ids.size)
|
|
Email::Sender.new(message, :pending_queued_posts_reminder).send
|
|
self.last_notified_id = should_notify_ids.max
|
|
end
|
|
|
|
true
|
|
end
|
|
|
|
def should_notify_ids
|
|
@_should_notify_ids ||= QueuedPost.new_posts.visible.where('created_at < ?', SiteSetting.notify_about_queued_posts_after.hours.ago).pluck(:id)
|
|
end
|
|
|
|
def last_notified_id
|
|
(i = $redis.get(self.class.last_notified_key)) && i.to_i
|
|
end
|
|
|
|
def last_notified_id=(arg)
|
|
$redis.set(self.class.last_notified_key, arg)
|
|
end
|
|
|
|
def self.last_notified_key
|
|
"last_notified_queued_post_id"
|
|
end
|
|
end
|
|
end
|