Welcome to mirror list, hosted at ThFree Co, Russian Federation.

purge_dependency_proxy_cache_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b4c885925437c6f86ee46637badced6bca470b0b (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
# frozen_string_literal: true

class PurgeDependencyProxyCacheWorker
  include ApplicationWorker
  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) && @group.dependency_proxy_feature_available?
  end
end