gitlabhq/app/models/key.rb

84 lines
1.8 KiB
Ruby
Raw Normal View History

2012-02-07 22:56:53 +01:00
require 'digest/md5'
2011-10-08 23:36:38 +02:00
class Key < ActiveRecord::Base
belongs_to :user
2011-12-31 15:24:10 +01:00
belongs_to :project
2011-10-08 23:36:38 +02:00
validates :title,
:presence => true,
:length => { :within => 0..255 }
validates :key,
:presence => true,
2011-11-22 20:56:22 +01:00
:length => { :within => 0..5000 }
2011-10-08 23:36:38 +02:00
before_save :set_identifier
2012-02-07 23:32:20 +01:00
before_validation :strip_white_space
2012-02-29 22:04:09 +01:00
delegate :name, :email, :to => :user, :prefix => true
2012-02-07 22:56:53 +01:00
validate :unique_key
2012-02-07 23:32:20 +01:00
def strip_white_space
self.key = self.key.strip unless self.key.blank?
2012-02-07 23:32:20 +01:00
end
2012-02-07 22:56:53 +01:00
def unique_key
2012-03-02 21:44:30 +01:00
query = Key.where(:key => key)
2012-02-07 23:32:20 +01:00
query = query.where('(project_id IS NULL OR project_id = ?)', project_id) if project_id
if (query.count > 0)
2012-02-07 22:56:53 +01:00
errors.add :key, 'already exist.'
end
end
2011-10-08 23:36:38 +02:00
def set_identifier
2011-12-31 15:24:10 +01:00
if is_deploy_key
2012-02-07 22:56:53 +01:00
self.identifier = "deploy_" + Digest::MD5.hexdigest(key)
2011-12-31 15:24:10 +01:00
else
self.identifier = "#{user.identifier}_#{Time.now.to_i}"
end
2011-10-08 23:36:38 +02:00
end
2011-12-05 08:43:53 +01:00
def update_repository
Gitlab::GitHost.system.new.configure do |c|
2011-10-08 23:36:38 +02:00
c.update_keys(identifier, key)
c.update_projects(projects)
2011-10-08 23:36:38 +02:00
end
end
2011-12-05 08:43:53 +01:00
def repository_delete_key
Gitlab::GitHost.system.new.configure do |c|
2012-02-07 22:56:53 +01:00
#delete key file is there is no identically deploy keys
if !is_deploy_key || Key.where(:identifier => identifier).count() == 0
c.delete_key(identifier)
end
c.update_projects(projects)
2011-10-08 23:36:38 +02:00
end
end
2011-12-31 15:24:10 +01:00
def is_deploy_key
true if project_id
end
2011-10-08 23:36:38 +02:00
#projects that has this key
def projects
2011-12-31 15:24:10 +01:00
if is_deploy_key
[project]
else
user.projects
end
2011-10-08 23:36:38 +02:00
end
end
# == Schema Information
#
# Table name: keys
#
# id :integer not null, primary key
2012-01-21 13:54:32 +01:00
# user_id :integer
2011-10-08 23:36:38 +02:00
# created_at :datetime
# updated_at :datetime
# key :text
# title :string(255)
# identifier :string(255)
2012-01-21 13:54:32 +01:00
# project_id :integer
2011-10-08 23:36:38 +02:00
#