debian-mirror-gitlab/app/services/projects/group_links/update_service.rb

44 lines
1.3 KiB
Ruby
Raw Normal View History

2020-06-23 00:09:42 +05:30
# frozen_string_literal: true
module Projects
module GroupLinks
class UpdateService < BaseService
def initialize(group_link, user = nil)
super(group_link.project, user)
@group_link = group_link
end
def execute(group_link_params)
group_link.update!(group_link_params)
2021-09-30 23:02:18 +05:30
refresh_authorizations if requires_authorization_refresh?(group_link_params)
2020-06-23 00:09:42 +05:30
end
private
attr_reader :group_link
2021-09-30 23:02:18 +05:30
def refresh_authorizations
if Feature.enabled?(:specialized_worker_for_project_share_update_auth_recalculation)
AuthorizedProjectUpdate::ProjectRecalculateWorker.perform_async(project.id)
# Until we compare the inconsistency rates of the new specialized worker and
# the old approach, we still run AuthorizedProjectsWorker
# but with some delay and lower urgency as a safety net.
group_link.group.refresh_members_authorized_projects(
blocking: false,
priority: UserProjectAccessChangedService::LOW_PRIORITY
)
else
group_link.group.refresh_members_authorized_projects
end
end
2020-06-23 00:09:42 +05:30
def requires_authorization_refresh?(params)
params.include?(:group_access)
end
end
end
end