2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-01 07:48:43 -04:00
|
|
|
class TopicConverter
|
|
|
|
|
|
|
|
attr_reader :topic
|
|
|
|
|
|
|
|
def initialize(topic, user)
|
|
|
|
@topic = topic
|
|
|
|
@user = user
|
|
|
|
end
|
|
|
|
|
2017-04-11 08:43:33 -04:00
|
|
|
def convert_to_public_topic(category_id = nil)
|
2016-05-01 07:48:43 -04:00
|
|
|
Topic.transaction do
|
2019-04-16 03:16:23 -04:00
|
|
|
category_id =
|
2017-04-11 08:43:33 -04:00
|
|
|
if category_id
|
|
|
|
category_id
|
|
|
|
elsif SiteSetting.allow_uncategorized_topics
|
|
|
|
SiteSetting.uncategorized_category_id
|
|
|
|
else
|
|
|
|
Category.where(read_restricted: false)
|
|
|
|
.where.not(id: SiteSetting.uncategorized_category_id)
|
2017-07-24 09:17:42 -04:00
|
|
|
.order('id asc')
|
2019-10-21 06:32:27 -04:00
|
|
|
.pluck_first(:id)
|
2017-04-11 08:43:33 -04:00
|
|
|
end
|
|
|
|
|
2019-04-16 03:16:23 -04:00
|
|
|
PostRevisor.new(@topic.first_post, @topic).revise!(
|
|
|
|
@user,
|
2019-04-16 03:47:16 -04:00
|
|
|
category_id: category_id,
|
|
|
|
archetype: Archetype.default
|
2019-04-16 03:16:23 -04:00
|
|
|
)
|
|
|
|
|
2016-05-01 07:48:43 -04:00
|
|
|
update_user_stats
|
2019-11-17 20:25:42 -05:00
|
|
|
update_post_uploads_secure_status
|
2019-01-03 12:03:01 -05:00
|
|
|
Jobs.enqueue(:topic_action_converter, topic_id: @topic.id)
|
2019-07-22 13:02:21 -04:00
|
|
|
Jobs.enqueue(:delete_inaccessible_notifications, topic_id: @topic.id)
|
2016-05-01 07:48:43 -04:00
|
|
|
watch_topic(topic)
|
|
|
|
end
|
|
|
|
@topic
|
|
|
|
end
|
|
|
|
|
|
|
|
def convert_to_private_message
|
|
|
|
Topic.transaction do
|
2019-04-16 03:16:23 -04:00
|
|
|
@topic.update_category_topic_count_by(-1)
|
|
|
|
|
|
|
|
PostRevisor.new(@topic.first_post, @topic).revise!(
|
|
|
|
@user,
|
2019-04-16 03:47:16 -04:00
|
|
|
category_id: nil,
|
|
|
|
archetype: Archetype.private_message
|
2019-04-16 03:16:23 -04:00
|
|
|
)
|
|
|
|
|
2016-05-01 07:48:43 -04:00
|
|
|
add_allowed_users
|
2019-11-17 20:25:42 -05:00
|
|
|
update_post_uploads_secure_status
|
2019-04-16 03:16:23 -04:00
|
|
|
|
2019-01-03 12:03:01 -05:00
|
|
|
Jobs.enqueue(:topic_action_converter, topic_id: @topic.id)
|
2019-07-22 13:02:21 -04:00
|
|
|
Jobs.enqueue(:delete_inaccessible_notifications, topic_id: @topic.id)
|
|
|
|
|
2016-05-01 07:48:43 -04:00
|
|
|
watch_topic(topic)
|
|
|
|
end
|
|
|
|
@topic
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def update_user_stats
|
|
|
|
@topic.posts.where(deleted_at: nil).each do |p|
|
|
|
|
user = User.find(p.user_id)
|
2017-11-09 15:33:26 -05:00
|
|
|
# update posts count. NOTE that DirectoryItem.refresh will overwrite this by counting UserAction records.
|
2016-05-01 07:48:43 -04:00
|
|
|
user.user_stat.post_count += 1
|
|
|
|
user.user_stat.save!
|
|
|
|
end
|
|
|
|
# update topics count
|
|
|
|
@topic.user.user_stat.topic_count += 1
|
|
|
|
@topic.user.user_stat.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_allowed_users
|
|
|
|
@topic.posts.where(deleted_at: nil).each do |p|
|
|
|
|
user = User.find(p.user_id)
|
|
|
|
@topic.topic_allowed_users.build(user_id: user.id) unless @topic.topic_allowed_users.where(user_id: user.id).exists?
|
2017-11-09 15:33:26 -05:00
|
|
|
# update posts count. NOTE that DirectoryItem.refresh will overwrite this by counting UserAction records.
|
2016-05-01 07:48:43 -04:00
|
|
|
user.user_stat.post_count -= 1
|
|
|
|
user.user_stat.save!
|
|
|
|
end
|
2018-03-08 07:29:04 -05:00
|
|
|
@topic.topic_allowed_users.build(user_id: @user.id) unless @topic.topic_allowed_users.where(user_id: @user.id).exists?
|
2019-10-11 02:44:29 -04:00
|
|
|
@topic.topic_allowed_users = @topic.topic_allowed_users.uniq(&:user_id)
|
2016-05-01 07:48:43 -04:00
|
|
|
# update topics count
|
|
|
|
@topic.user.user_stat.topic_count -= 1
|
|
|
|
@topic.user.user_stat.save!
|
2019-04-16 03:16:23 -04:00
|
|
|
@topic.save!
|
2016-05-01 07:48:43 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def watch_topic(topic)
|
|
|
|
@topic.notifier.watch_topic!(topic.user_id)
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
@topic.reload.topic_allowed_users.each do |tau|
|
2017-03-14 02:33:06 -04:00
|
|
|
next if tau.user_id < 0 || tau.user_id == topic.user_id
|
2016-05-01 07:48:43 -04:00
|
|
|
topic.notifier.watch!(tau.user_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-17 20:25:42 -05:00
|
|
|
def update_post_uploads_secure_status
|
|
|
|
@topic.posts.each do |post|
|
|
|
|
next if post.uploads.empty?
|
|
|
|
post.update_uploads_secure_status
|
|
|
|
post.rebake!
|
|
|
|
end
|
|
|
|
end
|
2016-05-01 07:48:43 -04:00
|
|
|
end
|