canvas-lms/lib/user_merge.rb

341 lines
15 KiB
Ruby

class UserMerge
def self.from(user)
new(user)
end
attr_reader :from_user
def initialize(from_user)
@from_user = from_user
end
def into(target_user)
return unless target_user
return if target_user == from_user
if target_user.avatar_state == :none && from_user.avatar_state != :none
[:avatar_image_source, :avatar_image_url, :avatar_image_updated_at, :avatar_state].each do |attr|
target_user[attr] = from_user[attr]
end
end
target_user.save if target_user.changed?
[:strong, :weak, :shadow].each do |strength|
from_user.associated_shards(strength).each do |shard|
target_user.associate_with_shard(shard, strength)
end
end
max_position = target_user.communication_channels.last.try(:position) || 0
to_retire_ids = []
from_user.communication_channels.each do |cc|
source_cc = cc
# have to find conflicting CCs, and make sure we don't have conflicts
target_cc = target_user.communication_channels.detect { |cc| cc.path.downcase == source_cc.path.downcase && cc.path_type == source_cc.path_type }
if !target_cc && from_user.shard != target_user.shard
User.clone_communication_channel(source_cc, target_user, max_position)
end
next unless target_cc
# we prefer keeping the "most" active one, preferring the target user if they're equal
# the comments inline show all the different cases, with the source cc on the left,
# target cc on the right. The * indicates the CC that will be retired in order
# to resolve the conflict
if target_cc.active?
# retired, active
# unconfirmed*, active
# active*, active
to_retire = source_cc
elsif source_cc.active?
# active, unconfirmed*
# active, retired
target_cc.destroy!
if from_user.shard != target_user.shard
User.clone_communication_channel(source_cc, target_user, max_position)
end
elsif target_cc.unconfirmed?
# unconfirmed*, unconfirmed
# retired, unconfirmed
to_retire = source_cc
elsif source_cc.unconfirmed?
# unconfirmed, retired
target_cc.destroy!
if from_user.shard != target_user.shard
User.clone_communication_channel(source_cc, target_user, max_position)
end
elsif
# retired, retired
to_retire = source_cc
end
if to_retire
to_retire_ids << to_retire.id
end
end
if from_user.shard != target_user.shard
from_user.communication_channels.update_all(:workflow_state => 'retired') unless from_user.communication_channels.empty?
from_user.user_services.each do |us|
new_us = us.clone
new_us.shard = target_user.shard
new_us.user = target_user
new_us.save!
end
from_user.user_services.delete_all
else
from_user.shard.activate do
CommunicationChannel.where(:id => to_retire_ids).where("workflow_state<>'retired'").update_all(:workflow_state => 'retired') unless to_retire_ids.empty?
end
scope = from_user.communication_channels
scope = scope.where("id NOT IN (?)", to_retire_ids) unless to_retire_ids.empty?
scope.update_all(["user_id=?, position=position+?", target_user, max_position]) unless from_user.communication_channels.empty?
end
destroy_conflicting_module_progressions(@from_user, target_user)
move_enrollments(@from_user, target_user)
Shard.with_each_shard(from_user.associated_shards + from_user.associated_shards(:weak) + from_user.associated_shards(:shadow)) do
max_position = Pseudonym.where(:user_id => target_user).order(:position).last.try(:position) || 0
Pseudonym.where(:user_id => from_user).update_all(["user_id=?, position=position+?", target_user, max_position])
target_user.communication_channels.email.unretired.each do |cc|
Rails.cache.delete([cc.path, 'invited_enrollments'].cache_key)
end
[
[:quiz_id, :'quizzes/quiz_submissions'],
[:assignment_id, :submissions]
].each do |unique_id, table|
begin
# Submissions are a special case since there's a unique index
# on the table, and if both the old user and the new user
# have a submission for the same assignment there will be
# a conflict.
model = table.to_s.classify.constantize
already_scope = model.where(:user_id => target_user)
scope = model.where(:user_id => from_user)
# empty submission objects from e.g. what_if grades will show up in the scope
# these records will not have associated quiz_submission records even if the assignment in question is a quiz,
# so we only need to fine-tune the scope for Submission
if model.name == "Submission"
# we prefer submissions that are not simply empty objects
# also we delete empty objects in cases of collision so that we don't end up with multiple submission records for a given assignment
# for the target user, we
# a) delete empty submissions where there is a non-empty submission in the from user
# b) don't delete otherwise
subscope = scope.having_submission.select(unique_id)
if %w{MySQL Mysql2}.include?(model.connection.adapter_name)
# handing the scope directly to from doesn't work until Rails 4, and I don't
# feel like backporting at the moment
subscope = Submission.from("(#{subscope.to_sql}) AS s").select(unique_id)
end
already_scope.where(unique_id => subscope).without_submission.delete_all
end
# for the from user
# a) we ignore the empty submissions in our update unless the target user has no submission
# b) move the empty submission over to the new user if there is no collision, as we don't mind persisting the what_if history in this case
# c) if there is an empty submission for each user for this assignment, prefer the target user
subscope = already_scope.select(unique_id)
if %w{MySQL Mysql2}.include?(model.connection.adapter_name)
# ditto
subscope = Submission.from("(#{subscope.to_sql}) AS s").select(unique_id)
end
scope = scope.where("#{unique_id} NOT IN (?)", subscope)
model.transaction do
update_versions(from_user, target_user, scope, table, :user_id)
scope.update_all(:user_id => target_user)
end
rescue => e
Rails.logger.error "migrating #{table} column user_id failed: #{e.to_s}"
end
end
from_user.all_conversations.find_each { |c| c.move_to_user(target_user) } unless Shard.current != target_user.shard
# all topics changing ownership or with entries changing ownership need to be
# flagged as updated so the materialized views update
begin
entries = DiscussionEntry.where(user_id: from_user)
DiscussionTopic.where(id: entries.select(['discussion_topic_id'])).update_all(updated_at: Time.now.utc)
entries.update_all(user_id: target_user.id)
DiscussionTopic.where(user_id: from_user).update_all(user_id: target_user.id, updated_at: Time.now.utc)
rescue => e
Rails.logger.error "migrating discussions failed: #{e.to_s}"
end
updates = {}
['account_users', 'access_tokens', 'asset_user_accesses',
'attachments',
'calendar_events', 'collaborations',
'context_module_progressions',
'group_memberships', 'page_comments',
'rubric_assessments',
'submission_comment_participants', 'user_services', 'web_conferences',
'web_conference_participants', 'wiki_pages'].each do |key|
updates[key] = "user_id"
end
updates['submission_comments'] = 'author_id'
updates['conversation_messages'] = 'author_id'
updates = updates.to_a
version_updates = ['rubric_assessments', 'wiki_pages']
updates.each do |table, column|
begin
klass = table.classify.constantize
if klass.new.respond_to?("#{column}=".to_sym)
scope = klass.where(column => from_user)
klass.transaction do
if version_updates.include?(table)
update_versions(from_user, target_user, scope, table, column)
end
scope.update_all(column => target_user.id)
end
end
rescue => e
Rails.logger.error "migrating #{table} column #{column} failed: #{e.to_s}"
end
end
Attachment.send_later(:migrate_attachments, from_user, target_user)
context_updates = ['calendar_events']
context_updates.each do |table|
klass = table.classify.constantize
klass.where(context_id: from_user, context_type: 'User').
update_all(context_id: target_user.id, context_code: target_user.asset_string)
end
unless Shard.current != target_user.shard
# delete duplicate observers/observees, move the rest
from_user.user_observees.where(:user_id => target_user.user_observees.map(&:user_id)).delete_all
from_user.user_observees.update_all(:observer_id => target_user)
xor_observer_ids = (Set.new(from_user.user_observers.map(&:observer_id)) ^ target_user.user_observers.map(&:observer_id)).to_a
from_user.user_observers.where(:observer_id => target_user.user_observers.map(&:observer_id)).delete_all
from_user.user_observers.update_all(:user_id => target_user)
# for any observers not already watching both users, make sure they have
# any missing observer enrollments added
target_user.user_observers.where(:observer_id => xor_observer_ids).each(&:create_linked_enrollments)
end
Enrollment.send_later(:recompute_final_scores, target_user.id)
target_user.update_account_associations
end
from_user.reload
target_user.touch
from_user.destroy
end
def destroy_conflicting_module_progressions(from_user, target_user)
# there is a unique index on the context_module_progressions table
# we need to delete all the conflicting context_module_progressions
# without impacting the users module progress and without having to
# recalculate the progressions.
# find all the modules progressions and delete the most restrictive
# context_module_progressions
ContextModuleProgression.
where("context_module_progressions.user_id = ?", from_user.id).
where("EXISTS (SELECT *
FROM context_module_progressions cmp2
WHERE context_module_progressions.context_module_id=cmp2.context_module_id
AND cmp2.user_id = ?)", target_user.id).find_each do |cmp|
ContextModuleProgression.
where(context_module_id: cmp.context_module_id, user_id: [from_user, target_user]).
order("CASE WHEN workflow_state = 'Completed' THEN 0
WHEN workflow_state = 'Started' THEN 1
WHEN workflow_state = 'Unlocked' THEN 2
WHEN workflow_state = 'Locked' THEN 3
END DESC").first.destroy
end
end
def conflict_scope(column)
other_column = (column == :user_id) ? :associated_user_id : :user_id
Enrollment.
select("type, role_name, course_section_id, #{other_column}").
group("type, role_name, course_section_id, #{other_column}").
having("COUNT(*) > 1")
end
def enrollment_conflicts(enrollment, column, users)
scope = Enrollment.
where(type: enrollment.type,
role_name: enrollment.role_name,
course_section_id: enrollment.course_section_id)
if column == :user_id
scope = scope.where(user_id: users, associated_user_id: enrollment.associated_user_id)
else
scope = scope.where(user_id: enrollment.user_id, associated_user_id: users)
end
scope
end
def enrollment_keeper(scope)
# prefer active enrollments to have no impact to the end user.
# then prefer enrollments that were created by sis imports
# then just keep the newest one.
scope.order("CASE WHEN workflow_state='active' THEN 1
WHEN workflow_state='invited' THEN 2
WHEN workflow_state='creation_pending' THEN 3
WHEN sis_batch_id IS NOT NULL THEN 4
WHEN workflow_state='completed' THEN 5
WHEN workflow_state='rejected' THEN 6
WHEN workflow_state='inactive' THEN 7
WHEN workflow_state='deleted' THEN 8
ELSE 9
END, sis_batch_id DESC, updated_at DESC").first
end
def move_enrollments(from_user, target_user)
[:associated_user_id, :user_id].each do |column|
users = [from_user, target_user]
Shard.with_each_shard(from_user.associated_shards) do
Enrollment.transaction do
conflict_scope(column).where(column => users).find_each do |e|
scope = enrollment_conflicts(e, column, users)
keeper = enrollment_keeper(scope)
# delete all conflicts from target user
scope.where("id<>?", keeper).where(column => target_user).delete_all
# mark all conflicts on from_user as deleted so they will be left
scope.active.where("id<>?", keeper).where(column => from_user).destroy_all
end
# move all the enrollments that are not marked as deleted to the target user
Enrollment.active.where(column => from_user).update_all(column => target_user)
end
end
end
end
def update_versions(from_user, target_user, scope, table, column)
scope.find_ids_in_batches do |ids|
versionable_type = table.to_s.classify
# TODO: This is a hack to support namespacing
versionable_type = ['QuizSubmission', 'Quizzes::QuizSubmission'] if table.to_s == 'quizzes/quiz_submissions'
Version.where(:versionable_type => versionable_type, :versionable_id => ids).find_each do |version|
begin
version_attrs = YAML.load(version.yaml)
if version_attrs[column.to_s] == from_user.id
version_attrs[column.to_s] = target_user.id
end
# i'm pretty sure simply_versioned just stores fields as strings, but
# i haven't had time to verify that 100% yet, so better safe than sorry
if version_attrs[column.to_sym] == from_user.id
version_attrs[column.to_sym] = target_user.id
end
version.yaml = version_attrs.to_yaml
version.save!
rescue => e
Rails.logger.error "migrating versions for #{table} column #{column} failed: #{e.to_s}"
raise e unless Rails.env.production?
end
end
end
end
end