2012-11-19 13:24:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
2013-08-21 05:34:02 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# type :string(255)
|
|
|
|
# fingerprint :string(255)
|
2012-11-19 13:24:05 -05:00
|
|
|
#
|
|
|
|
|
2012-02-07 16:56:53 -05:00
|
|
|
require 'digest/md5'
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
class Key < ActiveRecord::Base
|
2013-06-24 13:07:21 -04:00
|
|
|
include Gitlab::Popen
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
belongs_to :user
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
attr_accessible :key, :title
|
2012-08-29 00:58:22 -04:00
|
|
|
|
2013-07-17 09:16:34 -04:00
|
|
|
before_validation :strip_white_space, :generate_fingerpint
|
2012-10-08 20:10:04 -04:00
|
|
|
|
2012-09-27 02:20:36 -04:00
|
|
|
validates :title, presence: true, length: { within: 0..255 }
|
2013-07-10 18:19:52 -04:00
|
|
|
validates :key, presence: true, length: { within: 0..5000 }, format: { with: /\A(ssh|ecdsa)-.*\Z/ }, uniqueness: true
|
2013-07-17 09:16:34 -04:00
|
|
|
validates :fingerprint, uniqueness: true, presence: { message: 'cannot be generated' }
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-08-10 18:07:50 -04:00
|
|
|
delegate :name, :email, to: :user, prefix: true
|
2012-02-07 16:56:53 -05:00
|
|
|
|
2012-02-07 17:32:20 -05:00
|
|
|
def strip_white_space
|
2013-05-06 05:26:36 -04:00
|
|
|
self.key = key.strip unless key.blank?
|
2012-02-07 17:32:20 -05:00
|
|
|
end
|
|
|
|
|
2012-06-07 08:44:57 -04:00
|
|
|
# projects that has this key
|
2011-10-08 17:36:38 -04:00
|
|
|
def projects
|
2013-05-06 05:26:36 -04:00
|
|
|
user.authorized_projects
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
2012-08-28 17:04:06 -04:00
|
|
|
|
2013-02-05 04:12:15 -05:00
|
|
|
def shell_id
|
2013-05-06 05:26:36 -04:00
|
|
|
"key-#{id}"
|
2013-02-04 08:07:56 -05:00
|
|
|
end
|
2013-06-24 13:07:21 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def generate_fingerpint
|
2013-07-17 09:16:34 -04:00
|
|
|
self.fingerprint = nil
|
|
|
|
return unless key.present?
|
|
|
|
|
2013-06-24 13:07:21 -04:00
|
|
|
cmd_status = 0
|
|
|
|
cmd_output = ''
|
2013-07-02 08:00:21 -04:00
|
|
|
Tempfile.open('gitlab_key_file') do |file|
|
2013-06-24 13:07:21 -04:00
|
|
|
file.puts key
|
|
|
|
file.rewind
|
|
|
|
cmd_output, cmd_status = popen("ssh-keygen -lf #{file.path}", '/tmp')
|
|
|
|
end
|
|
|
|
|
|
|
|
if cmd_status.zero?
|
|
|
|
cmd_output.gsub /([\d\h]{2}:)+[\d\h]{2}/ do |match|
|
|
|
|
self.fingerprint = match
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|