2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-27 19:54:05 +05:30
|
|
|
module Gitlab
|
|
|
|
module Verify
|
|
|
|
class LfsObjects < BatchVerifier
|
|
|
|
def name
|
|
|
|
'LFS objects'
|
|
|
|
end
|
|
|
|
|
|
|
|
def describe(object)
|
|
|
|
"LFS object: #{object.oid}"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def all_relation
|
|
|
|
LfsObject.all
|
|
|
|
end
|
|
|
|
|
|
|
|
def local?(lfs_object)
|
|
|
|
lfs_object.local_store?
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def expected_checksum(lfs_object)
|
|
|
|
lfs_object.oid
|
|
|
|
end
|
|
|
|
|
|
|
|
def actual_checksum(lfs_object)
|
|
|
|
LfsObject.calculate_oid(lfs_object.file.path)
|
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
def remote_object_exists?(lfs_object)
|
|
|
|
lfs_object.file.file.exists?
|
|
|
|
end
|
2018-03-27 19:54:05 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|