debian-mirror-gitlab/app/services/user_project_access_changed_service.rb

45 lines
1.4 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
class UserProjectAccessChangedService
2020-05-24 23:13:21 +05:30
DELAY = 1.hour
HIGH_PRIORITY = :high
LOW_PRIORITY = :low
2017-08-17 22:00:37 +05:30
def initialize(user_ids)
@user_ids = Array.wrap(user_ids)
end
2020-05-24 23:13:21 +05:30
def execute(blocking: true, priority: HIGH_PRIORITY)
2018-03-17 18:26:18 +05:30
bulk_args = @user_ids.map { |id| [id] }
2021-09-04 01:27:46 +05:30
result =
if blocking
AuthorizedProjectsWorker.bulk_perform_and_wait(bulk_args)
2020-05-24 23:13:21 +05:30
else
2021-09-04 01:27:46 +05:30
if priority == HIGH_PRIORITY
AuthorizedProjectsWorker.bulk_perform_async(bulk_args) # rubocop:disable Scalability/BulkPerformWithContext
else
2021-09-30 23:02:18 +05:30
with_related_class_context do
# We wrap the execution in `with_related_class_context`so as to obtain
# the location of the original caller
# in jobs enqueued from within `AuthorizedProjectUpdate::UserRefreshFromReplicaWorker`
AuthorizedProjectUpdate::UserRefreshFromReplicaWorker.bulk_perform_in( # rubocop:disable Scalability/BulkPerformWithContext
DELAY, bulk_args, batch_size: 100, batch_delay: 30.seconds)
end
2021-09-04 01:27:46 +05:30
end
2020-05-24 23:13:21 +05:30
end
2021-09-04 01:27:46 +05:30
2021-11-18 22:05:49 +05:30
::User.sticking.bulk_stick(:user, @user_ids)
2021-09-04 01:27:46 +05:30
result
2017-08-17 22:00:37 +05:30
end
2021-09-30 23:02:18 +05:30
private
def with_related_class_context(&block)
current_caller_id = Gitlab::ApplicationContext.current_context_attribute('meta.caller_id').presence
Gitlab::ApplicationContext.with_context(related_class: current_caller_id, &block)
end
2017-08-17 22:00:37 +05:30
end