2012-11-19 21:24:05 +03:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: keys
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# key :text
|
|
|
|
# title :string(255)
|
|
|
|
# identifier :string(255)
|
|
|
|
# project_id :integer
|
|
|
|
#
|
|
|
|
|
2012-02-07 23:56:53 +02:00
|
|
|
require 'digest/md5'
|
|
|
|
|
2011-10-09 00:36:38 +03:00
|
|
|
class Key < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2011-12-31 16:24:10 +02:00
|
|
|
belongs_to :project
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2012-09-26 11:17:17 -07:00
|
|
|
attr_accessible :key, :title
|
2012-08-29 07:58:22 +03:00
|
|
|
|
2012-10-09 04:10:04 +04:00
|
|
|
before_validation :strip_white_space
|
|
|
|
|
2012-09-26 23:20:36 -07:00
|
|
|
validates :title, presence: true, length: { within: 0..255 }
|
2013-02-07 09:42:22 +02:00
|
|
|
validates :key, presence: true, length: { within: 0..5000 }, format: { :with => /ssh-.{3} / }, uniqueness: true
|
|
|
|
validate :fingerprintable_key
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2012-08-10 18:07:50 -04:00
|
|
|
delegate :name, :email, to: :user, prefix: true
|
2012-02-07 23:56:53 +02:00
|
|
|
|
2012-02-08 00:32:20 +02:00
|
|
|
def strip_white_space
|
2012-03-01 16:00:14 +01:00
|
|
|
self.key = self.key.strip unless self.key.blank?
|
2012-02-08 00:32:20 +02:00
|
|
|
end
|
|
|
|
|
2012-09-21 18:22:43 +02:00
|
|
|
def fingerprintable_key
|
|
|
|
return true unless key # Don't test if there is no key.
|
2013-02-15 09:16:46 +02:00
|
|
|
|
2012-09-21 18:22:43 +02:00
|
|
|
file = Tempfile.new('key_file')
|
|
|
|
begin
|
|
|
|
file.puts key
|
|
|
|
file.rewind
|
|
|
|
fingerprint_output = `ssh-keygen -lf #{file.path} 2>&1` # Catch stderr.
|
|
|
|
ensure
|
|
|
|
file.close
|
|
|
|
file.unlink # deletes the temp file
|
|
|
|
end
|
2013-02-15 11:16:21 +02:00
|
|
|
errors.add(:key, "can't be fingerprinted") if $?.exitstatus != 0
|
2012-09-21 18:22:43 +02:00
|
|
|
end
|
|
|
|
|
2011-12-31 16:24:10 +02:00
|
|
|
def is_deploy_key
|
2013-02-07 09:42:22 +02:00
|
|
|
!!project_id
|
2011-12-31 16:24:10 +02:00
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2012-06-07 15:44:57 +03:00
|
|
|
# projects that has this key
|
2011-10-09 00:36:38 +03:00
|
|
|
def projects
|
2011-12-31 16:24:10 +02:00
|
|
|
if is_deploy_key
|
|
|
|
[project]
|
|
|
|
else
|
2013-01-02 19:32:34 +02:00
|
|
|
user.authorized_projects
|
2011-12-31 16:24:10 +02:00
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
2012-08-29 00:04:06 +03:00
|
|
|
|
2013-02-05 11:12:15 +02:00
|
|
|
def shell_id
|
|
|
|
"key-#{self.id}"
|
2013-02-04 15:07:56 +02:00
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|