summaryrefslogtreecommitdiff
path: root/app/workers/purge_dependency_proxy_cache_worker.rb
blob: db43e4adf2004b93040c6406adb1b2535c683c03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true

class PurgeDependencyProxyCacheWorker
  include ApplicationWorker

  data_consistency :always

  sidekiq_options retry: 3
  include Gitlab::Allowable
  idempotent!

  queue_namespace :dependency_proxy
  feature_category :dependency_proxy

  def perform(current_user_id, group_id)
    @current_user = User.find_by_id(current_user_id)
    @group = Group.find_by_id(group_id)

    return unless valid?

    @group.dependency_proxy_blobs.destroy_all # rubocop:disable Cop/DestroyAll
    @group.dependency_proxy_manifests.destroy_all # rubocop:disable Cop/DestroyAll
  end

  private

  def valid?
    return unless @group

    can?(@current_user, :admin_group, @group)
  end
end