ddca49e4b5
Partially addresses #47424.
36 lines
903 B
Ruby
36 lines
903 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RepositoryArchiveCleanUpService
|
|
LAST_MODIFIED_TIME_IN_MINUTES = 120
|
|
|
|
attr_reader :mmin, :path
|
|
|
|
def initialize(mmin = LAST_MODIFIED_TIME_IN_MINUTES)
|
|
@mmin = mmin
|
|
@path = Gitlab.config.gitlab.repository_downloads_path
|
|
end
|
|
|
|
def execute
|
|
Gitlab::Metrics.measure(:repository_archive_clean_up) do
|
|
next unless File.directory?(path)
|
|
|
|
clean_up_old_archives
|
|
clean_up_empty_directories
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def clean_up_old_archives
|
|
run(%W(find #{path} -mindepth 1 -maxdepth 3 -type f \( -name \*.tar -o -name \*.bz2 -o -name \*.tar.gz -o -name \*.zip \) -mmin +#{mmin} -delete))
|
|
end
|
|
|
|
def clean_up_empty_directories
|
|
run(%W(find #{path} -mindepth 2 -maxdepth 2 -type d -empty -delete))
|
|
run(%W(find #{path} -mindepth 1 -maxdepth 1 -type d -empty -delete))
|
|
end
|
|
|
|
def run(cmd)
|
|
Gitlab::Popen.popen(cmd)
|
|
end
|
|
end
|