17 lines
485 B
Ruby
17 lines
485 B
Ruby
module Gitlab
|
|
module Gpg
|
|
class InvalidGpgSignatureUpdater
|
|
def initialize(gpg_key)
|
|
@gpg_key = gpg_key
|
|
end
|
|
|
|
def run
|
|
GpgSignature
|
|
.select(:id, :commit_sha, :project_id)
|
|
.where('gpg_key_id IS NULL OR verification_status <> ?', GpgSignature.verification_statuses[:verified])
|
|
.where(gpg_key_primary_keyid: @gpg_key.keyids)
|
|
.find_each { |sig| sig.gpg_commit&.update_signature!(sig) }
|
|
end
|
|
end
|
|
end
|
|
end
|