discourse/app/jobs/scheduled/pending_queued_posts_reminder.rb
Sam Saffron d0d5a138c3
DEV: stop freezing frozen strings
We have the `# frozen_string_literal: true` comment on all our
files. This means all string literals are frozen. There is no need
to call #freeze on any literals.

For files with `# frozen_string_literal: true`

```
puts %w{a b}[0].frozen?
=> true

puts "hi".frozen?
=> true

puts "a #{1} b".frozen?
=> true

puts ("a " + "b").frozen?
=> false

puts (-("a " + "b")).frozen?
=> true
```

For more details see: https://samsaffron.com/archive/2018/02/16/reducing-string-duplication-in-ruby
2020-04-30 16:48:53 +10:00

48 lines
1.3 KiB
Ruby

# frozen_string_literal: true
module Jobs
class PendingQueuedPostsReminder < ::Jobs::Scheduled
every 1.hour
def execute(args)
return true unless SiteSetting.notify_about_queued_posts_after > 0
queued_post_ids = should_notify_ids
if queued_post_ids.size > 0 && last_notified_id.to_i < queued_post_ids.max
PostCreator.create(
Discourse.system_user,
target_group_names: Group[:moderators].name,
archetype: Archetype.private_message,
subtype: TopicSubtype.system_message,
title: I18n.t('system_messages.queued_posts_reminder.subject_template', count: queued_post_ids.size),
raw: I18n.t('system_messages.queued_posts_reminder.text_body_template', base_url: Discourse.base_url)
)
self.last_notified_id = queued_post_ids.max
end
true
end
def should_notify_ids
ReviewableQueuedPost.where(status: Reviewable.statuses[:pending]).where(
'created_at < ?', SiteSetting.notify_about_queued_posts_after.hours.ago
).pluck(:id)
end
def last_notified_id
(i = Discourse.redis.get(self.class.last_notified_key)) && i.to_i
end
def last_notified_id=(arg)
Discourse.redis.set(self.class.last_notified_key, arg)
end
def self.last_notified_key
"last_notified_queued_post_id"
end
end
end