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

80 lines
1.6 KiB
Ruby
Raw Normal View History

2012-11-19 18:24:05 +00:00
# == Schema Information
#
# Table name: keys
#
# id :integer not null, primary key
# user_id :integer
2013-06-19 12:40:33 +00:00
# created_at :datetime
# updated_at :datetime
2012-11-19 18:24:05 +00:00
# key :text
# title :string(255)
# identifier :string(255)
2013-06-19 12:40:33 +00:00
# type :string(255)
2012-11-19 18:24:05 +00:00
#
2012-02-07 21:56:53 +00:00
require 'digest/md5'
2011-10-08 21:36:38 +00:00
class Key < ActiveRecord::Base
include Gitlab::Popen
2011-10-08 21:36:38 +00:00
belongs_to :user
attr_accessible :key, :title
2012-10-09 00:10:04 +00:00
before_validation :strip_white_space
2012-09-27 06:20:36 +00:00
validates :title, presence: true, length: { within: 0..255 }
validates :key, presence: true, length: { within: 0..5000 }, format: { with: /\A(ssh|ecdsa)-.*\Z/ }, uniqueness: true
2013-02-07 07:42:22 +00:00
validate :fingerprintable_key
2011-10-08 21:36:38 +00:00
delegate :name, :email, to: :user, prefix: true
2012-02-07 21:56:53 +00:00
2012-02-07 22:32:20 +00:00
def strip_white_space
self.key = key.strip unless key.blank?
2012-02-07 22:32:20 +00:00
end
def fingerprintable_key
return true unless key # Don't test if there is no key.
2013-02-15 07:16:46 +00:00
unless generate_fingerpint
errors.add(:key, "can't be fingerprinted")
false
end
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
private
def generate_fingerpint
cmd_status = 0
cmd_output = ''
file = Tempfile.new('gitlab_key_file')
begin
file.puts key
file.rewind
cmd_output, cmd_status = popen("ssh-keygen -lf #{file.path}", '/tmp')
ensure
file.close
file.unlink # deletes the temp file
end
if cmd_status.zero?
cmd_output.gsub /([\d\h]{2}:)+[\d\h]{2}/ do |match|
self.fingerprint = match
end
true
else
false
end
end
2011-10-08 21:36:38 +00:00
end