gitlab-org--gitlab-foss/app/models/gpg_key.rb

132 lines
3.2 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class GpgKey < ApplicationRecord
KEY_PREFIX = '-----BEGIN PGP PUBLIC KEY BLOCK-----'
KEY_SUFFIX = '-----END PGP PUBLIC KEY BLOCK-----'
2017-02-22 11:49:17 +00:00
2017-07-20 13:44:15 +00:00
include ShaAttribute
sha_attribute :primary_keyid
sha_attribute :fingerprint
2017-02-22 11:49:17 +00:00
belongs_to :user
has_many :gpg_signatures
has_many :subkeys, class_name: 'GpgKeySubkey'
2017-02-22 11:49:17 +00:00
2017-09-28 01:45:08 +00:00
scope :with_subkeys, -> { includes(:subkeys) }
2017-07-05 12:03:36 +00:00
validates :user, presence: true
2017-02-22 11:49:17 +00:00
validates :key,
presence: true,
uniqueness: true,
format: {
with: /\A#{KEY_PREFIX}((?!#{KEY_PREFIX})(?!#{KEY_SUFFIX}).)+#{KEY_SUFFIX}\Z/m,
message: "is invalid. A valid public GPG key begins with '#{KEY_PREFIX}' and ends with '#{KEY_SUFFIX}'"
}
2017-02-22 11:49:17 +00:00
validates :fingerprint,
presence: true,
uniqueness: true,
# only validate when the `key` is valid, as we don't want the user to show
# the error about the fingerprint
unless: -> { errors.has_key?(:key) }
validates :primary_keyid,
presence: true,
uniqueness: true,
# only validate when the `key` is valid, as we don't want the user to show
# the error about the fingerprint
unless: -> { errors.has_key?(:key) }
before_validation :extract_fingerprint, :extract_primary_keyid
after_commit :update_invalid_gpg_signatures, on: :create
after_create :generate_subkeys
2017-02-22 11:49:17 +00:00
def primary_keyid
super&.upcase
end
2017-09-29 22:55:36 +00:00
alias_method :keyid, :primary_keyid
def fingerprint
super&.upcase
end
2017-02-22 11:49:17 +00:00
def key=(value)
2017-07-25 18:35:44 +00:00
super(value&.strip)
2017-02-22 11:49:17 +00:00
end
2017-09-29 22:55:36 +00:00
def keyids
[keyid].concat(subkeys.map(&:keyid))
end
def user_infos
@user_infos ||= Gitlab::Gpg.user_infos_from_key(key)
end
def verified_user_infos
user_infos.select do |user_info|
user.verified_email?(user_info[:email])
end
2017-02-22 14:37:49 +00:00
end
def emails_with_verified_status
user_infos.to_h do |user_info|
2017-02-24 20:28:26 +00:00
[
user_info[:email],
user.verified_email?(user_info[:email])
2017-02-24 20:28:26 +00:00
]
end
2017-02-24 20:28:26 +00:00
end
def verified?
emails_with_verified_status.values.any?
end
def verified_and_belongs_to_email?(email)
emails_with_verified_status.fetch(email.downcase, false)
end
def update_invalid_gpg_signatures
InvalidGpgSignatureUpdateWorker.perform_async(self.id)
end
def revoke
2017-08-30 11:27:40 +00:00
GpgSignature
.with_key_and_subkeys(self)
2017-08-30 11:27:40 +00:00
.where.not(verification_status: GpgSignature.verification_statuses[:unknown_key])
.update_all(
gpg_key_id: nil,
gpg_key_subkey_id: nil,
2017-08-30 11:27:40 +00:00
verification_status: GpgSignature.verification_statuses[:unknown_key],
updated_at: Time.zone.now
)
destroy
end
2017-02-22 11:49:17 +00:00
private
def extract_fingerprint
# we can assume that the result only contains one item as the validation
# only allows one key
2017-02-22 16:20:42 +00:00
self.fingerprint = Gitlab::Gpg.fingerprints_from_key(key).first
2017-02-22 11:49:17 +00:00
end
def extract_primary_keyid
# we can assume that the result only contains one item as the validation
# only allows one key
self.primary_keyid = Gitlab::Gpg.primary_keyids_from_key(key).first
end
def generate_subkeys
gpg_subkeys = Gitlab::Gpg.subkeys_from_key(key)
2017-10-02 02:50:38 +00:00
gpg_subkeys[primary_keyid]&.each do |subkey_data|
subkeys.create!(keyid: subkey_data[:keyid], fingerprint: subkey_data[:fingerprint])
end
end
2017-02-22 11:49:17 +00:00
end
GpgKey.prepend_mod_with('GpgKey')