2018-07-17 12:50:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-04-06 11:23:49 -04:00
|
|
|
module Projects
|
|
|
|
class MoveNotificationSettingsService < BaseMoveRelationsService
|
|
|
|
def execute(source_project, remove_remaining_elements: true)
|
|
|
|
return unless super
|
|
|
|
|
|
|
|
Project.transaction(requires_new: true) do
|
|
|
|
move_notification_settings
|
|
|
|
remove_remaining_notification_settings if remove_remaining_elements
|
|
|
|
|
|
|
|
success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def move_notification_settings
|
2019-07-27 10:59:35 -04:00
|
|
|
non_existent_notifications.update_all(source_id: @project.id)
|
2018-04-06 11:23:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Remove remaining notification settings from source_project
|
|
|
|
def remove_remaining_notification_settings
|
2020-05-28 17:08:22 -04:00
|
|
|
source_project.notification_settings.destroy_all # rubocop: disable Cop/DestroyAll
|
2018-04-06 11:23:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
# Get users of current notification_settings
|
|
|
|
def users_in_target_project
|
|
|
|
@project.notification_settings.select(:user_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Look for notification_settings in source_project that are not in the target project
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-04-06 11:23:49 -04:00
|
|
|
def non_existent_notifications
|
|
|
|
source_project.notification_settings
|
|
|
|
.select(:id)
|
|
|
|
.where.not(user_id: users_in_target_project)
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-04-06 11:23:49 -04:00
|
|
|
end
|
|
|
|
end
|