2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Repositories::DestroyService < Repositories::BaseService
|
|
|
|
def execute
|
|
|
|
return success unless repository
|
|
|
|
return success unless repo_exists?(disk_path)
|
|
|
|
|
|
|
|
# Flush the cache for both repositories. This has to be done _before_
|
|
|
|
# removing the physical repositories as some expiration code depends on
|
|
|
|
# Git data (e.g. a list of branch names).
|
|
|
|
ignore_git_errors { repository.before_delete }
|
|
|
|
|
|
|
|
if mv_repository(disk_path, removal_path)
|
|
|
|
log_info(%Q{Repository "#{disk_path}" moved to "#{removal_path}" for repository "#{full_path}"})
|
|
|
|
|
|
|
|
current_repository = repository
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
# Because GitlabShellWorker is inside a run_after_commit callback it will
|
|
|
|
# never be triggered on a read-only instance.
|
|
|
|
#
|
|
|
|
# Issue: https://gitlab.com/gitlab-org/gitlab/-/issues/223272
|
|
|
|
if Gitlab::Database.read_only?
|
2020-03-13 15:44:24 +05:30
|
|
|
Repositories::ShellDestroyService.new(current_repository).execute
|
2020-07-28 23:09:34 +05:30
|
|
|
else
|
|
|
|
container.run_after_commit do
|
|
|
|
Repositories::ShellDestroyService.new(current_repository).execute
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
log_info("Repository \"#{full_path}\" was removed")
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
success
|
2022-05-07 20:08:51 +05:30
|
|
|
elsif repo_exists?(disk_path)
|
2020-03-13 15:44:24 +05:30
|
|
|
move_error(disk_path)
|
2022-05-07 20:08:51 +05:30
|
|
|
else
|
|
|
|
success
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2022-05-07 20:08:51 +05:30
|
|
|
rescue Gitlab::Git::Repository::NoRepository
|
|
|
|
success
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|