2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-21 23:12:02 -04:00
|
|
|
module Jobs
|
2021-01-12 17:49:29 -05:00
|
|
|
# TODO: DEPRECATED - Use OpenTopic and CloseTopic instead.
|
|
|
|
# (martin - 2021-05-01) - Delete once topic timer revamp is completed.
|
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])
|
2021-01-12 17:49:29 -05:00
|
|
|
|
|
|
|
# state false is Open Topic
|
|
|
|
# state true is Close Topic
|
2017-04-04 02:29:47 -04:00
|
|
|
state = !!args[:state]
|
2020-12-02 18:43:19 -05:00
|
|
|
timer_type = args[:silent] ? :silent_close : :close
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2020-08-26 00:18:33 -04:00
|
|
|
return if topic_timer.blank? || topic_timer.execute_at > Time.zone.now
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2020-08-26 00:18:33 -04:00
|
|
|
if (topic = topic_timer.topic).blank? || topic.closed == state
|
|
|
|
topic_timer.destroy!
|
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
|
|
|
|
2020-07-14 12:36:19 -04:00
|
|
|
if Guardian.new(user).can_close_topic?(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
|
2020-12-02 18:43:19 -05:00
|
|
|
topic.update_status("autoclosed", state, user, { silent: args[:silent] })
|
2019-01-08 05:43:10 -05:00
|
|
|
end
|
|
|
|
|
2020-12-02 18:43:19 -05:00
|
|
|
topic.inherit_auto_close_from_category(timer_type: timer_type) if state == false
|
2020-08-26 00:59:05 -04:00
|
|
|
else
|
|
|
|
topic_timer.destroy!
|
|
|
|
topic.reload
|
|
|
|
|
|
|
|
if topic_timer.based_on_last_post
|
2020-12-02 18:43:19 -05:00
|
|
|
topic.inherit_auto_close_from_category(timer_type: timer_type)
|
2020-08-26 00:59:05 -04:00
|
|
|
end
|
2017-03-21 23:12:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|