2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-13 15:59:12 -04:00
|
|
|
class TopicPublisher
|
|
|
|
def initialize(topic, published_by, category_id)
|
|
|
|
@topic = topic
|
|
|
|
@published_by = published_by
|
|
|
|
@category_id = category_id
|
|
|
|
end
|
|
|
|
|
|
|
|
def publish!
|
2018-03-26 16:06:20 -04:00
|
|
|
published_at = Time.zone.now
|
2019-04-16 02:09:51 -04:00
|
|
|
|
2018-03-26 16:06:20 -04:00
|
|
|
TopicTimestampChanger
|
|
|
|
.new(timestamp: published_at, topic: @topic)
|
|
|
|
.change! do
|
2018-03-13 15:59:12 -04:00
|
|
|
if @topic.private_message?
|
|
|
|
@topic = TopicConverter.new(@topic, @published_by).convert_to_public_topic(@category_id)
|
|
|
|
else
|
2019-04-16 02:09:51 -04:00
|
|
|
PostRevisor.new(@topic.first_post, @topic).revise!(
|
|
|
|
@published_by,
|
|
|
|
category_id: @category_id,
|
|
|
|
)
|
2018-03-13 15:59:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@topic.update_columns(visible: true)
|
|
|
|
|
|
|
|
StaffActionLogger.new(@published_by).log_topic_published(@topic)
|
|
|
|
|
|
|
|
# Clean up any publishing artifacts
|
|
|
|
SharedDraft.where(topic: @topic).delete_all
|
2019-04-16 02:09:51 -04:00
|
|
|
|
2018-03-13 15:59:12 -04:00
|
|
|
TopicTimer.where(topic: @topic).update_all(
|
|
|
|
deleted_at: DateTime.now,
|
|
|
|
deleted_by_id: @published_by.id,
|
|
|
|
)
|
|
|
|
|
|
|
|
op = @topic.first_post
|
2019-04-16 02:09:51 -04:00
|
|
|
|
2018-03-13 15:59:12 -04:00
|
|
|
if op.present?
|
2020-03-05 13:51:51 -05:00
|
|
|
op.revisions.destroy_all
|
2019-04-16 02:09:51 -04:00
|
|
|
|
2018-03-26 16:06:20 -04:00
|
|
|
op.update_columns(version: 1, public_version: 1, last_version_at: published_at)
|
2023-01-09 07:10:19 -05:00
|
|
|
end
|
2018-03-13 15:59:12 -04:00
|
|
|
end
|
|
|
|
|
2022-07-20 12:07:18 -04:00
|
|
|
Jobs.enqueue(
|
|
|
|
:notify_tag_change,
|
|
|
|
post_id: @topic.first_post.id,
|
|
|
|
notified_user_ids: [@topic.first_post.user_id, @published_by.id].uniq,
|
|
|
|
diff_tags: @topic.tags.map(&:name),
|
|
|
|
force: true,
|
|
|
|
)
|
|
|
|
|
2018-03-13 15:59:12 -04:00
|
|
|
MessageBus.publish("/topic/#{@topic.id}", reload_topic: true, refresh_stream: true)
|
|
|
|
|
|
|
|
@topic
|
|
|
|
end
|
|
|
|
end
|