diff options
| author | gitlabhq <m@gitlabhq.com> | 2011-10-09 00:36:38 +0300 |
|---|---|---|
| committer | gitlabhq <m@gitlabhq.com> | 2011-10-09 00:36:38 +0300 |
| commit | 9ba1224867665844b117fa037e1465bb706b3685 (patch) | |
| tree | 52fbfc1cdb55df21843965479c97be0c91121a9a /app/models/key.rb | |
| parent | 93efff945215a4407afcaf0cba15ac601b56df0d (diff) | |
| download | gitlab-ce-9ba1224867665844b117fa037e1465bb706b3685.tar.gz | |
init commit
Diffstat (limited to 'app/models/key.rb')
| -rw-r--r-- | app/models/key.rb | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/app/models/key.rb b/app/models/key.rb new file mode 100644 index 00000000000..9fa8958772d --- /dev/null +++ b/app/models/key.rb @@ -0,0 +1,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..555 } + + 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) +# + |
