summaryrefslogtreecommitdiff
path: root/lib/gitlab/verify/lfs_objects.rb
blob: 970e2a7b7189d2d14f6329c79314ef9c09d50a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module Gitlab
  module Verify
    class LfsObjects < BatchVerifier
      def name
        'LFS objects'
      end

      def describe(object)
        "LFS object: #{object.oid}"
      end

      private

      def relation
        LfsObject.with_files_stored_locally
      end

      def expected_checksum(lfs_object)
        lfs_object.oid
      end

      def actual_checksum(lfs_object)
        LfsObject.calculate_oid(lfs_object.file.path)
      end
    end
  end
end