debian-mirror-gitlab/app/services/projects/move_notification_settings_service.rb

42 lines
1.2 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
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-10-12 21:52:04 +05:30
non_existent_notifications.update_all(source_id: @project.id)
2018-05-09 12:01:36 +05:30
end
# Remove remaining notification settings from source_project
def remove_remaining_notification_settings
2020-06-23 00:09:42 +05:30
source_project.notification_settings.destroy_all # rubocop: disable Cop/DestroyAll
2018-05-09 12:01:36 +05:30
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-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2018-05-09 12:01:36 +05:30
def non_existent_notifications
source_project.notification_settings
.select(:id)
.where.not(user_id: users_in_target_project)
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2018-05-09 12:01:36 +05:30
end
end