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

66 lines
1.3 KiB
Ruby
Raw Normal View History

2011-10-08 21:36:38 +00:00
class Key < ActiveRecord::Base
belongs_to :user
2011-12-31 14:24:10 +00:00
belongs_to :project
2011-10-08 21:36:38 +00:00
validates :title,
:presence => true,
:length => { :within => 0..255 }
validates :key,
:presence => true,
:uniqueness => true,
2011-11-22 19:56:22 +00:00
:length => { :within => 0..5000 }
2011-10-08 21:36:38 +00:00
before_save :set_identifier
2011-12-05 07:43:53 +00:00
after_save :update_repository
after_destroy :repository_delete_key
2011-10-08 21:36:38 +00:00
def set_identifier
2011-12-31 14:24:10 +00:00
if is_deploy_key
self.identifier = "deploy_#{project.code}_#{Time.now.to_i}"
else
self.identifier = "#{user.identifier}_#{Time.now.to_i}"
end
2011-10-08 21:36:38 +00:00
end
2011-12-05 07:43:53 +00:00
def update_repository
2011-12-05 07:23:53 +00:00
Gitlabhq::GitHost.system.new.configure do |c|
2011-10-08 21:36:38 +00:00
c.update_keys(identifier, key)
c.update_projects(projects)
2011-10-08 21:36:38 +00:00
end
end
2011-12-05 07:43:53 +00:00
def repository_delete_key
2011-12-05 07:23:53 +00:00
Gitlabhq::GitHost.system.new.configure do |c|
2011-10-08 21:36:38 +00:00
c.delete_key(identifier)
c.update_projects(projects)
2011-10-08 21:36:38 +00:00
end
end
2011-12-31 14:24:10 +00:00
def is_deploy_key
true if project_id
end
2011-10-08 21:36:38 +00:00
#projects that has this key
def projects
2011-12-31 14:24:10 +00:00
if is_deploy_key
[project]
else
user.projects
end
2011-10-08 21:36:38 +00:00
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)
#