debian-mirror-gitlab/app/workers/repository_cleanup_worker.rb

44 lines
1.1 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2020-04-08 14:13:33 +05:30
class RepositoryCleanupWorker # rubocop:disable Scalability/IdempotentWorker
2019-02-15 15:39:39 +05:30
include ApplicationWorker
2021-10-27 15:23:28 +05:30
data_consistency :always
2019-02-15 15:39:39 +05:30
sidekiq_options retry: 3
2019-12-21 20:55:43 +05:30
feature_category :source_code_management
2019-02-15 15:39:39 +05:30
sidekiq_retries_exhausted do |msg, err|
next if err.is_a?(ActiveRecord::RecordNotFound)
args = msg['args'] + [msg['error_message']]
new.perform_failure(*args)
end
def perform(project_id, user_id)
project = Project.find(project_id)
user = User.find(user_id)
Projects::CleanupService.new(project, user).execute
notification_service.repository_cleanup_success(project, user)
end
def perform_failure(project_id, user_id, error)
project = Project.find(project_id)
user = User.find(user_id)
2021-01-29 00:20:46 +05:30
# Ensure the file is removed and the repository is made read-write again
Projects::CleanupService.cleanup_after(project)
2019-02-15 15:39:39 +05:30
notification_service.repository_cleanup_failure(project, user, error)
end
private
def notification_service
@notification_service ||= NotificationService.new
end
end