2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-03-03 00:17:11 +08:00
|
|
|
class PostOwnerChanger
|
|
|
|
def initialize(params)
|
|
|
|
@post_ids = params[:post_ids]
|
2015-07-15 12:15:34 +08:00
|
|
|
@topic = Topic.with_deleted.find_by(id: params[:topic_id].to_i)
|
2015-03-03 00:17:11 +08:00
|
|
|
@new_owner = params[:new_owner]
|
|
|
|
@acting_user = params[:acting_user]
|
2016-08-20 01:13:22 +08:00
|
|
|
@skip_revision = params[:skip_revision] || false
|
2015-03-03 00:17:11 +08:00
|
|
|
|
2022-02-16 09:52:20 +08:00
|
|
|
%i[post_ids topic new_owner acting_user].each do |arg|
|
|
|
|
raise ArgumentError.new(arg) if self.instance_variable_get("@#{arg}").blank?
|
|
|
|
end
|
2015-03-03 00:17:11 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def change_owner!
|
2018-03-01 06:31:44 +08:00
|
|
|
@post_ids.each do |post_id|
|
2018-05-17 01:48:04 +08:00
|
|
|
next unless post = Post.with_deleted.find_by(id: post_id, topic_id: @topic.id)
|
2015-07-16 06:22:01 +08:00
|
|
|
|
2018-05-17 01:48:04 +08:00
|
|
|
if post.is_first_post?
|
|
|
|
@topic.user = @new_owner
|
|
|
|
@topic.recover! if post.user.nil?
|
2015-03-03 00:17:11 +08:00
|
|
|
end
|
2018-05-17 01:48:04 +08:00
|
|
|
|
2018-03-01 06:31:44 +08:00
|
|
|
post.topic = @topic
|
|
|
|
post.set_owner(@new_owner, @acting_user, @skip_revision)
|
2020-08-19 23:21:02 +08:00
|
|
|
PostActionDestroyer.destroy(@new_owner, post, :like, skip_delete_check: true)
|
2015-03-03 00:17:11 +08:00
|
|
|
|
2018-05-17 01:48:04 +08:00
|
|
|
level = post.is_first_post? ? :watching : :tracking
|
2022-04-05 01:12:38 +08:00
|
|
|
TopicUser.change(
|
|
|
|
@new_owner.id,
|
|
|
|
@topic.id,
|
|
|
|
notification_level: NotificationLevels.topic_levels[level],
|
|
|
|
posted: true,
|
|
|
|
)
|
2018-05-17 01:48:04 +08:00
|
|
|
|
|
|
|
if post ==
|
|
|
|
@topic
|
|
|
|
.posts
|
|
|
|
.order("post_number DESC")
|
|
|
|
.where("NOT hidden AND posts.deleted_at IS NULL")
|
|
|
|
.first
|
|
|
|
@topic.last_poster = @new_owner
|
2018-04-16 17:48:06 +08:00
|
|
|
end
|
|
|
|
|
2015-03-12 03:54:11 +08:00
|
|
|
@topic.update_statistics
|
2017-08-31 12:06:56 +08:00
|
|
|
|
|
|
|
@new_owner.user_stat.update(
|
|
|
|
first_post_created_at: @new_owner.reload.posts.order("created_at ASC").first&.created_at,
|
|
|
|
)
|
|
|
|
|
2021-07-28 02:49:08 +08:00
|
|
|
Post.where(topic_id: @topic.id, reply_to_post_number: post.post_number).update_all(
|
|
|
|
reply_to_user_id: @new_owner.id,
|
|
|
|
)
|
|
|
|
|
2018-03-02 00:31:58 +08:00
|
|
|
@topic.save!(validate: false)
|
2015-03-12 03:54:11 +08:00
|
|
|
end
|
2015-03-03 00:17:11 +08:00
|
|
|
end
|
|
|
|
end
|