2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-12 00:52:15 +08:00
|
|
|
module Jobs
|
2019-10-02 12:01:53 +08:00
|
|
|
class DeleteTopic < ::Jobs::Base
|
2017-05-12 00:52:15 +08:00
|
|
|
|
|
|
|
def execute(args)
|
2017-05-12 06:23:18 +08:00
|
|
|
topic_timer = TopicTimer.find_by(id: args[:topic_timer_id] || args[:topic_status_update_id])
|
2017-05-12 00:52:15 +08:00
|
|
|
|
2017-05-12 06:23:18 +08:00
|
|
|
topic = topic_timer&.topic
|
2017-05-12 00:52:15 +08:00
|
|
|
|
2017-05-12 06:23:18 +08:00
|
|
|
if topic_timer.blank? || topic.blank? || topic_timer.execute_at > Time.zone.now
|
2017-05-12 00:52:15 +08:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2017-05-12 06:23:18 +08:00
|
|
|
if Guardian.new(topic_timer.user).can_delete?(topic)
|
2017-05-12 00:52:15 +08:00
|
|
|
first_post = topic.ordered_posts.first
|
2017-07-28 09:20:09 +08:00
|
|
|
PostDestroyer.new(topic_timer.user, first_post, context: I18n.t("topic_statuses.auto_deleted_by_timer")).destroy
|
2017-05-12 10:28:51 +08:00
|
|
|
topic_timer.trash!(Discourse.system_user)
|
2017-05-12 00:52:15 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2017-05-12 06:23:18 +08:00
|
|
|
end
|