Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/verify/ci_secure_files.rb')
-rw-r--r--lib/gitlab/verify/ci_secure_files.rb39
1 files changed, 39 insertions, 0 deletions
diff --git a/lib/gitlab/verify/ci_secure_files.rb b/lib/gitlab/verify/ci_secure_files.rb
new file mode 100644
index 00000000000..9bb7f7260c4
--- /dev/null
+++ b/lib/gitlab/verify/ci_secure_files.rb
@@ -0,0 +1,39 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Verify
+ class CiSecureFiles < BatchVerifier
+ def name
+ 'CI Secure Files'
+ end
+
+ def describe(object)
+ "SecureFile: #{object.id}"
+ end
+
+ private
+
+ # rubocop: disable CodeReuse/ActiveRecord
+ def all_relation
+ ::Ci::SecureFile.all
+ end
+ # rubocop: enable CodeReuse/ActiveRecord
+
+ def local?(secure_file)
+ secure_file.local?
+ end
+
+ def expected_checksum(secure_file)
+ secure_file.checksum
+ end
+
+ def actual_checksum(secure_file)
+ Digest::SHA256.hexdigest(secure_file.file.read)
+ end
+
+ def remote_object_exists?(secure_file)
+ secure_file.file.file.exists?
+ end
+ end
+ end
+end