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

138 lines
3.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2012-02-07 21:56:53 +00:00
require 'digest/md5'
class Key < ApplicationRecord
2017-11-29 15:30:17 +00:00
include AfterCommitQueue
include Sortable
2011-10-08 21:36:38 +00:00
belongs_to :user
before_validation :generate_fingerprint
2012-10-09 00:10:04 +00:00
validates :title,
presence: true,
length: { maximum: 255 }
validates :key,
presence: true,
length: { maximum: 5000 },
format: { with: /\A(ssh|ecdsa)-.*\Z/ }
validates :fingerprint,
uniqueness: true,
presence: { message: 'cannot be generated' }
2011-10-08 21:36:38 +00:00
validate :key_meets_restrictions
delegate :name, :email, to: :user, prefix: true
2012-02-07 21:56:53 +00:00
after_commit :add_to_shell, on: :create
after_create :post_create_hook
after_create :refresh_user_cache
after_commit :remove_from_shell, on: :destroy
after_destroy :post_destroy_hook
after_destroy :refresh_user_cache
def self.regular_keys
where(type: ['Key', nil])
end
def key=(value)
write_attribute(:key, value.present? ? Gitlab::SSHPublicKey.sanitize(value) : nil)
@public_key = nil
2012-02-07 22:32:20 +00:00
end
2015-06-19 17:17:34 +00:00
def publishable_key
# Strip out the keys comment so we don't leak email addresses
# Replace with simple ident of user_name (hostname)
self.key.split[0..1].push("#{self.user_name} (#{Gitlab.config.gitlab.host})").join(' ')
2015-06-19 17:17:34 +00:00
end
# projects that has this key
2011-10-08 21:36:38 +00:00
def projects
user.authorized_projects
2011-10-08 21:36:38 +00:00
end
def shell_id
"key-#{id}"
2013-02-04 13:07:56 +00:00
end
# rubocop: disable CodeReuse/ServiceClass
def update_last_used_at
Keys::LastUsedService.new(self).execute
end
# rubocop: enable CodeReuse/ServiceClass
def add_to_shell
GitlabShellWorker.perform_async(
:add_key,
shell_id,
key
)
end
# rubocop: disable CodeReuse/ServiceClass
def post_create_hook
SystemHooksService.new.execute_hooks_for(self, :create)
end
# rubocop: enable CodeReuse/ServiceClass
def remove_from_shell
GitlabShellWorker.perform_async(
:remove_key,
shell_id,
key
)
end
# rubocop: disable CodeReuse/ServiceClass
def refresh_user_cache
return unless user
Users::KeysCountService.new(user).refresh_cache
end
# rubocop: enable CodeReuse/ServiceClass
# rubocop: disable CodeReuse/ServiceClass
def post_destroy_hook
SystemHooksService.new.execute_hooks_for(self, :destroy)
end
# rubocop: enable CodeReuse/ServiceClass
def public_key
@public_key ||= Gitlab::SSHPublicKey.new(key)
end
private
def generate_fingerprint
2013-07-17 13:16:34 +00:00
self.fingerprint = nil
2015-04-14 10:00:43 +00:00
return unless public_key.valid?
2015-04-14 10:00:43 +00:00
self.fingerprint = public_key.fingerprint
end
def key_meets_restrictions
restriction = Gitlab::CurrentSettings.key_restriction_for(public_key.type)
if restriction == ApplicationSetting::FORBIDDEN_KEY_VALUE
errors.add(:key, forbidden_key_type_message)
elsif public_key.bits < restriction
errors.add(:key, "must be at least #{restriction} bits")
end
end
def forbidden_key_type_message
allowed_types =
Gitlab::CurrentSettings
.allowed_key_types
.map(&:upcase)
.to_sentence(last_word_connector: ', or ', two_words_connector: ' or ')
"type is forbidden. Must be #{allowed_types}"
end
2011-10-08 21:36:38 +00:00
end