mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:34:09 +08:00
2404fa7a23
Splits the `ToggleTopicClosed` job into two distinct `OpenTopic` and `CloseTopic` jobs to make the code clearer. The old job cannot be deleted yet because of outstanding sidekiq schedules, so a todo has been added to do so later this year. Also replaced mentions of `topic_status_update` with `topic_timer` in some files, because the `topic_status_update` model is obsolete and replaced by topic timer. Added some shortcut methods for checking if a topic is open/whether a user can change an open topic.
46 lines
1.3 KiB
Ruby
46 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
class OpenTopic < ::Jobs::Base
|
|
def execute(args)
|
|
topic_timer = TopicTimer.find_by(id: args[:topic_timer_id])
|
|
return if !topic_timer&.runnable?
|
|
|
|
topic = topic_timer.topic
|
|
user = topic_timer.user
|
|
|
|
if topic.blank?
|
|
topic_timer.destroy!
|
|
return
|
|
end
|
|
|
|
if !Guardian.new(user).can_open_topic?(topic) || topic.open?
|
|
topic_timer.destroy!
|
|
topic.reload
|
|
|
|
topic.inherit_auto_close_from_category(timer_type: :close)
|
|
|
|
return
|
|
end
|
|
|
|
# guards against reopening a topic too early if the topic has
|
|
# been auto closed because of reviewables/reports, this will
|
|
# just update the existing topic timer and push it down the line
|
|
if topic.auto_close_threshold_reached?
|
|
topic.set_or_create_timer(
|
|
TopicTimer.types[:open],
|
|
SiteSetting.num_hours_to_close_topic,
|
|
by_user: Discourse.system_user
|
|
)
|
|
else
|
|
|
|
# autoclosed, false is just another way of saying open.
|
|
# this handles deleting the topic timer as wel, see TopicStatusUpdater
|
|
topic.update_status('autoclosed', false, user)
|
|
end
|
|
|
|
topic.inherit_auto_close_from_category(timer_type: :close)
|
|
end
|
|
end
|
|
end
|