Welcome to mirror list, hosted at ThFree Co, Russian Federation.

key.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8231c30ce1fa6edf923b50c937a5f15ae6a2e1c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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_gitosis
  after_destroy :gitosis_delete_key

  def set_identifier
    self.identifier = "#{user.identifier}_#{Time.now.to_i}"
  end

  def update_gitosis
    Gitosis.new.configure do |c|
      c.update_keys(identifier, key)

      projects.each do |project|
        c.update_project(project.path, project.gitosis_writers)
      end
    end
  end

  def gitosis_delete_key
    Gitosis.new.configure do |c|
      c.delete_key(identifier)

      projects.each do |project|
        c.update_project(project.path, project.gitosis_writers)
      end
    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)
#