mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
24 lines
592 B
Ruby
24 lines
592 B
Ruby
class PostOwnerChanger
|
|
|
|
def initialize(params)
|
|
@post_ids = params[:post_ids]
|
|
@topic = Topic.find_by(id: params[:topic_id].to_i)
|
|
@new_owner = params[:new_owner]
|
|
@acting_user = params[:acting_user]
|
|
|
|
raise ArgumentError unless @post_ids && @topic && @new_owner && @acting_user
|
|
end
|
|
|
|
def change_owner!
|
|
ActiveRecord::Base.transaction do
|
|
@post_ids.each do |post_id|
|
|
post = Post.find(post_id)
|
|
@topic.user = @new_owner if post.is_first_post?
|
|
post.set_owner(@new_owner, @acting_user)
|
|
end
|
|
end
|
|
|
|
@topic.update_statistics
|
|
end
|
|
end
|