2013-01-18 04:41:01 +08:00
|
|
|
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
|
2014-05-16 03:21:53 +08:00
|
|
|
|
|
|
|
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
|
2013-01-18 04:41:01 +08:00
|
|
|
target_user.save if target_user.changed?
|
2014-05-16 03:21:53 +08:00
|
|
|
|
2013-09-18 04:16:35 +08:00
|
|
|
[:strong, :weak, :shadow].each do |strength|
|
|
|
|
from_user.associated_shards(strength).each do |shard|
|
|
|
|
target_user.associate_with_shard(shard, strength)
|
|
|
|
end
|
2013-05-23 04:51:57 +08:00
|
|
|
end
|
2013-01-18 04:41:01 +08:00
|
|
|
|
|
|
|
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
|
2014-05-16 00:44:08 +08:00
|
|
|
target_cc = target_user.communication_channels.detect { |cc| cc.path.downcase == source_cc.path.downcase && cc.path_type == source_cc.path_type }
|
2013-01-18 04:41:01 +08:00
|
|
|
|
|
|
|
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
|
2014-05-16 00:44:08 +08:00
|
|
|
target_cc.destroy!
|
2013-01-18 04:41:01 +08:00
|
|
|
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
|
2014-05-16 00:44:08 +08:00
|
|
|
elsif source_cc.unconfirmed?
|
2013-01-18 04:41:01 +08:00
|
|
|
# unconfirmed, retired
|
2014-05-16 00:44:08 +08:00
|
|
|
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
|
2013-01-18 04:41:01 +08:00
|
|
|
end
|
|
|
|
|
2014-05-16 00:44:08 +08:00
|
|
|
if to_retire
|
2013-01-18 04:41:01 +08:00
|
|
|
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
|
2014-05-16 00:44:08 +08:00
|
|
|
CommunicationChannel.where(:id => to_retire_ids).where("workflow_state<>'retired'").update_all(:workflow_state => 'retired') unless to_retire_ids.empty?
|
2013-01-18 04:41:01 +08:00
|
|
|
end
|
2014-05-16 00:44:08 +08:00
|
|
|
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?
|
2013-01-18 04:41:01 +08:00
|
|
|
end
|
|
|
|
|
2013-10-26 22:07:25 +08:00
|
|
|
destroy_conflicting_module_progressions(@from_user, target_user)
|
|
|
|
|
2014-02-28 01:46:02 +08:00
|
|
|
move_enrollments(@from_user, target_user)
|
|
|
|
|
2013-09-18 04:16:35 +08:00
|
|
|
Shard.with_each_shard(from_user.associated_shards + from_user.associated_shards(:weak) + from_user.associated_shards(:shadow)) do
|
2013-03-19 23:49:31 +08:00
|
|
|
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])
|
2013-01-18 04:41:01 +08:00
|
|
|
|
2014-02-28 01:46:02 +08:00
|
|
|
target_user.communication_channels.email.unretired.each do |cc|
|
|
|
|
Rails.cache.delete([cc.path, 'invited_enrollments'].cache_key)
|
2013-10-19 01:12:34 +08:00
|
|
|
end
|
2013-01-18 04:41:01 +08:00
|
|
|
[
|
2014-04-24 06:36:32 +08:00
|
|
|
[:quiz_id, :'quizzes/quiz_submissions'],
|
2013-01-18 04:41:01 +08:00
|
|
|
[: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.
|
2013-12-13 02:10:31 +08:00
|
|
|
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
|
2014-01-16 06:07:51 +08:00
|
|
|
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
|
2013-12-13 02:10:31 +08:00
|
|
|
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
|
2014-01-16 06:07:51 +08:00
|
|
|
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
|
2014-05-13 11:16:33 +08:00
|
|
|
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
|
2013-01-18 04:41:01 +08:00
|
|
|
rescue => e
|
2013-10-26 22:07:25 +08:00
|
|
|
Rails.logger.error "migrating #{table} column user_id failed: #{e.to_s}"
|
2013-01-18 04:41:01 +08:00
|
|
|
end
|
|
|
|
end
|
2014-02-28 01:46:02 +08:00
|
|
|
from_user.all_conversations.find_each { |c| c.move_to_user(target_user) } unless Shard.current != target_user.shard
|
2014-05-07 06:49:31 +08:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2013-01-18 04:41:01 +08:00
|
|
|
updates = {}
|
2014-05-08 05:35:31 +08:00
|
|
|
['account_users', 'access_tokens', 'asset_user_accesses',
|
2014-02-28 01:46:02 +08:00
|
|
|
'attachments',
|
|
|
|
'calendar_events', 'collaborations',
|
2014-05-07 06:49:31 +08:00
|
|
|
'context_module_progressions',
|
2014-02-28 01:46:02 +08:00
|
|
|
'group_memberships', 'page_comments',
|
|
|
|
'rubric_assessments',
|
|
|
|
'submission_comment_participants', 'user_services', 'web_conferences',
|
|
|
|
'web_conference_participants', 'wiki_pages'].each do |key|
|
2013-01-18 04:41:01 +08:00
|
|
|
updates[key] = "user_id"
|
|
|
|
end
|
|
|
|
updates['submission_comments'] = 'author_id'
|
|
|
|
updates['conversation_messages'] = 'author_id'
|
|
|
|
updates = updates.to_a
|
2014-05-13 11:16:33 +08:00
|
|
|
version_updates = ['rubric_assessments', 'wiki_pages']
|
2013-01-18 04:41:01 +08:00
|
|
|
updates.each do |table, column|
|
|
|
|
begin
|
|
|
|
klass = table.classify.constantize
|
|
|
|
if klass.new.respond_to?("#{column}=".to_sym)
|
2014-05-13 11:16:33 +08:00
|
|
|
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
|
2013-01-18 04:41:01 +08:00
|
|
|
end
|
|
|
|
rescue => e
|
2013-10-26 22:07:25 +08:00
|
|
|
Rails.logger.error "migrating #{table} column #{column} failed: #{e.to_s}"
|
2013-01-18 04:41:01 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-04-24 03:57:32 +08:00
|
|
|
Attachment.send_later(:migrate_attachments, from_user, target_user)
|
|
|
|
|
2014-02-05 08:52:30 +08:00
|
|
|
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
|
|
|
|
|
2013-01-18 04:41:01 +08:00
|
|
|
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
|
2013-03-19 23:49:31 +08:00
|
|
|
from_user.user_observees.update_all(:observer_id => target_user)
|
2013-01-18 04:41:01 +08:00
|
|
|
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
|
2013-03-19 23:49:31 +08:00
|
|
|
from_user.user_observers.update_all(:user_id => target_user)
|
2013-01-18 04:41:01 +08:00
|
|
|
# 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
|
|
|
|
|
2013-10-26 22:07:25 +08:00
|
|
|
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.
|
2013-12-28 11:55:53 +08:00
|
|
|
# find all the modules progressions and delete the most restrictive
|
|
|
|
# context_module_progressions
|
2013-10-26 22:07:25 +08:00
|
|
|
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
|
|
|
|
|
2014-02-28 01:46:02 +08:00
|
|
|
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
|
2014-04-02 05:52:48 +08:00
|
|
|
Enrollment.transaction do
|
|
|
|
conflict_scope(column).where(column => users).find_each do |e|
|
2014-02-28 01:46:02 +08:00
|
|
|
|
2014-04-02 05:52:48 +08:00
|
|
|
scope = enrollment_conflicts(e, column, users)
|
|
|
|
keeper = enrollment_keeper(scope)
|
2014-02-28 01:46:02 +08:00
|
|
|
|
2014-04-02 05:52:48 +08:00
|
|
|
# delete all conflicts from target user
|
|
|
|
scope.where("id<>?", keeper).where(column => target_user).delete_all
|
2014-02-28 01:46:02 +08:00
|
|
|
|
2014-04-02 05:52:48 +08:00
|
|
|
# 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)
|
2014-02-28 01:46:02 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-13 11:16:33 +08:00
|
|
|
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
|
2013-01-18 04:41:01 +08:00
|
|
|
end
|