2018-12-04 06:55:49 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Checks
|
|
|
|
class LfsCheck < BaseChecker
|
|
|
|
LOG_MESSAGE = "Scanning repository for blobs stored in LFS and verifying their files have been uploaded to GitLab...".freeze
|
|
|
|
ERROR_MESSAGE = 'LFS objects are missing. Ensure LFS is properly set up or try a manual "git lfs push --all".'.freeze
|
|
|
|
|
|
|
|
def validate!
|
2018-12-28 05:44:25 -05:00
|
|
|
return unless project.lfs_enabled?
|
2018-12-04 06:55:49 -05:00
|
|
|
return if skip_lfs_integrity_check
|
|
|
|
|
|
|
|
logger.log_timed(LOG_MESSAGE) do
|
|
|
|
lfs_check = Checks::LfsIntegrity.new(project, newrev, logger.time_left)
|
|
|
|
|
|
|
|
if lfs_check.objects_missing?
|
|
|
|
raise GitAccess::UnauthorizedError, ERROR_MESSAGE
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|