summaryrefslogtreecommitdiff
path: root/app/workers/cleanup_container_repository_worker.rb
blob: 974ee8c8146218cae7ac7606e004864758c7d162 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true

class CleanupContainerRepositoryWorker
  include ApplicationWorker
  include ExclusiveLeaseGuard

  queue_namespace :container_repository

  LEASE_TIMEOUT = 1.hour

  attr_reader :container_repository, :current_user

  def perform(current_user_id, container_repository_id, params)
    @current_user = User.find_by_id(current_user_id)
    @container_repository = ContainerRepository.find_by_id(container_repository_id)

    return unless valid?

    try_obtain_lease do
      Projects::ContainerRepository::CleanupTagsService
        .new(project, current_user, params)
        .execute(container_repository)
    end
  end

  private

  def valid?
    current_user && container_repository && project
  end

  def project
    container_repository&.project
  end

  # For ExclusiveLeaseGuard concern
  def lease_key
    @lease_key ||= "container_repository:cleanup_tags:#{container_repository.id}"
  end

  # For ExclusiveLeaseGuard concern
  def lease_timeout
    LEASE_TIMEOUT
  end

  # For ExclusiveLeaseGuard concern
  def lease_release?
    # we don't allow to execute this worker
    # more often than LEASE_TIMEOUT
    # for given container repository
    false
  end
end