2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-01-04 08:08:04 -05:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class BumpTopic < ::Jobs::Base
|
2019-01-04 08:08:04 -05:00
|
|
|
|
|
|
|
def execute(args)
|
|
|
|
topic_timer = TopicTimer.find_by(id: args[:topic_timer_id] || args[:topic_status_update_id])
|
|
|
|
|
|
|
|
topic = topic_timer&.topic
|
|
|
|
|
|
|
|
if topic_timer.blank? || topic.blank? || topic_timer.execute_at > Time.zone.now
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if Guardian.new(topic_timer.user).can_create_post_on_topic?(topic)
|
|
|
|
topic.add_small_action(Discourse.system_user, "autobumped", nil, bump: true)
|
|
|
|
end
|
|
|
|
topic_timer.trash!(Discourse.system_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|