2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-21 23:12:02 -04:00
|
|
|
module Jobs
|
2019-10-02 00:01:53 -04:00
|
|
|
class ToggleTopicClosed < ::Jobs::Base
|
2017-03-21 23:12:02 -04:00
|
|
|
def execute(args)
|
2017-05-11 18:23:18 -04:00
|
|
|
topic_timer = TopicTimer.find_by(id: args[:topic_timer_id] || args[:topic_status_update_id])
|
2017-04-04 02:29:47 -04:00
|
|
|
state = !!args[:state]
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2017-05-11 18:23:18 -04:00
|
|
|
if topic_timer.blank? ||
|
|
|
|
topic_timer.execute_at > Time.zone.now ||
|
|
|
|
(topic = topic_timer.topic).blank? ||
|
2017-04-04 02:29:47 -04:00
|
|
|
topic.closed == state
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2017-04-04 02:29:47 -04:00
|
|
|
return
|
|
|
|
end
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2017-05-11 18:23:18 -04:00
|
|
|
user = topic_timer.user
|
2017-03-21 23:12:02 -04:00
|
|
|
|
|
|
|
if Guardian.new(user).can_close?(topic)
|
2019-01-03 12:03:01 -05:00
|
|
|
if state == false && topic.auto_close_threshold_reached?
|
2019-01-08 05:43:10 -05:00
|
|
|
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)
|
|
|
|
end
|
|
|
|
|
2018-02-27 02:31:59 -05:00
|
|
|
topic.inherit_auto_close_from_category if state == false
|
2017-03-21 23:12:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|