2018-03-05 06:16:17 -05:00
|
|
|
module Gitlab
|
|
|
|
module Verify
|
|
|
|
class LfsObjects < BatchVerifier
|
|
|
|
def name
|
|
|
|
'LFS objects'
|
|
|
|
end
|
|
|
|
|
|
|
|
def describe(object)
|
|
|
|
"LFS object: #{object.oid}"
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-06-13 13:11:43 -04:00
|
|
|
def all_relation
|
|
|
|
LfsObject.all
|
|
|
|
end
|
|
|
|
|
|
|
|
def local?(lfs_object)
|
|
|
|
lfs_object.local_store?
|
2018-03-05 06:16:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def expected_checksum(lfs_object)
|
|
|
|
lfs_object.oid
|
|
|
|
end
|
|
|
|
|
|
|
|
def actual_checksum(lfs_object)
|
|
|
|
LfsObject.calculate_oid(lfs_object.file.path)
|
|
|
|
end
|
2018-06-13 13:11:43 -04:00
|
|
|
|
|
|
|
def remote_object_exists?(lfs_object)
|
|
|
|
lfs_object.file.file.exists?
|
|
|
|
end
|
2018-03-05 06:16:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|