gitlab-org--gitlab-foss/lib/gitlab/gpg/commit.rb

80 lines
2.3 KiB
Ruby
Raw Normal View History

module Gitlab
module Gpg
class Commit
attr_reader :commit
def initialize(commit)
@commit = commit
@signature_text, @signed_text = commit.raw.signature(commit.project.repository)
end
def has_signature?
2017-06-15 07:16:50 +00:00
!!(@signature_text && @signed_text)
end
def signature
2017-06-15 07:16:50 +00:00
return unless has_signature?
cached_signature = GpgSignature.find_by(commit_sha: commit.sha)
return cached_signature if cached_signature.present?
2017-06-15 11:37:03 +00:00
using_keychain do |gpg_key|
if gpg_key
Gitlab::Gpg::CurrentKeyChain.add(gpg_key.key)
@verified_signature = nil
end
create_cached_signature!(gpg_key)
end
end
def update_signature!(cached_signature)
using_keychain do |gpg_key|
cached_signature.update_attributes!(
valid_signature: self.class.gpg_signature_valid_signature_value(gpg_key, verified_signature)
)
end
end
2017-06-15 11:37:03 +00:00
private
def using_keychain
Gitlab::Gpg.using_tmp_keychain do
# first we need to get the keyid from the signature to query the gpg
# key belonging to the keyid.
# This way we can add the key to the temporary keychain and extract
# the proper signature.
gpg_key = GpgKey.find_by(primary_keyid: verified_signature.fingerprint)
if gpg_key
Gitlab::Gpg::CurrentKeyChain.add(gpg_key.key)
end
2017-06-15 11:37:03 +00:00
yield gpg_key
end
end
def verified_signature
2017-06-15 11:37:03 +00:00
@verified_signature ||= GPGME::Crypto.new.verify(@signature_text, signed_text: @signed_text) do |verified_signature|
return verified_signature
end
end
def create_cached_signature!(gpg_key)
GpgSignature.create!(
commit_sha: commit.sha,
project: commit.project,
gpg_key: gpg_key,
2017-06-15 11:37:03 +00:00
gpg_key_primary_keyid: gpg_key&.primary_keyid || verified_signature.fingerprint,
valid_signature: self.class.gpg_signature_valid_signature_value(gpg_key, verified_signature)
)
end
def self.gpg_signature_valid_signature_value(gpg_key, verified_signature_)
!!(gpg_key && gpg_key.verified? && verified_signature_.valid?)
end
end
end
end