8a1deea586
Users with many projects (>100) will hit the 20 second timeout when updating the gitolite config. This fix batches those changes into a signle update to the file, causing an order of magnitude speed increase which finishes well below the 20 second timeout. Fixes gitlabhq/gitlabhq#220
53 lines
1.1 KiB
Ruby
53 lines
1.1 KiB
Ruby
class Key < ActiveRecord::Base
|
|
belongs_to :user
|
|
|
|
validates :title,
|
|
:presence => true,
|
|
:length => { :within => 0..255 }
|
|
|
|
validates :key,
|
|
:presence => true,
|
|
:uniqueness => true,
|
|
:length => { :within => 0..5000 }
|
|
|
|
before_save :set_identifier
|
|
after_save :update_repository
|
|
after_destroy :repository_delete_key
|
|
|
|
def set_identifier
|
|
self.identifier = "#{user.identifier}_#{Time.now.to_i}"
|
|
end
|
|
|
|
def update_repository
|
|
Gitlabhq::GitHost.system.new.configure do |c|
|
|
c.update_keys(identifier, key)
|
|
c.update_projects(projects)
|
|
end
|
|
end
|
|
|
|
def repository_delete_key
|
|
Gitlabhq::GitHost.system.new.configure do |c|
|
|
c.delete_key(identifier)
|
|
c.update_projects(projects)
|
|
end
|
|
end
|
|
|
|
#projects that has this key
|
|
def projects
|
|
user.projects
|
|
end
|
|
end
|
|
# == Schema Information
|
|
#
|
|
# Table name: keys
|
|
#
|
|
# id :integer not null, primary key
|
|
# user_id :integer not null
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
# key :text
|
|
# title :string(255)
|
|
# identifier :string(255)
|
|
#
|
|
|