discourse/app/jobs/regular/toggle_topic_closed.rb
Krzysztof Kotlarek 9c5ee4923b
FEATURE: silently close topic (#11392)
New TopicTimer to silently close topic. It will be used by discourse-solved plugin

Meta: https://meta.discourse.org/t/allow-auto-close-for-solved-to-do-so-silently/169300
2020-12-03 10:43:19 +11:00

44 lines
1.2 KiB
Ruby

# frozen_string_literal: true
module Jobs
class ToggleTopicClosed < ::Jobs::Base
def execute(args)
topic_timer = TopicTimer.find_by(id: args[:topic_timer_id] || args[:topic_status_update_id])
state = !!args[:state]
timer_type = args[:silent] ? :silent_close : :close
if topic_timer.blank? || topic_timer.execute_at > Time.zone.now
return
end
if (topic = topic_timer.topic).blank? || topic.closed == state
topic_timer.destroy!
return
end
user = topic_timer.user
if Guardian.new(user).can_close_topic?(topic)
if state == false && 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
topic.update_status('autoclosed', state, user, { silent: args[:silent] })
end
topic.inherit_auto_close_from_category(timer_type: timer_type) if state == false
else
topic_timer.destroy!
topic.reload
if topic_timer.based_on_last_post
topic.inherit_auto_close_from_category(timer_type: timer_type)
end
end
end
end
end