2011-10-08 17:36:38 -04:00
|
|
|
class UsersProject < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
belongs_to :project
|
|
|
|
|
|
|
|
attr_protected :project_id, :project
|
|
|
|
|
2011-12-06 18:27:07 -05:00
|
|
|
after_save :update_repository
|
|
|
|
after_destroy :update_repository
|
2011-10-08 17:36:38 -04:00
|
|
|
|
|
|
|
validates_uniqueness_of :user_id, :scope => [:project_id]
|
|
|
|
validates_presence_of :user_id
|
|
|
|
validates_presence_of :project_id
|
2011-10-20 09:48:09 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
delegate :name, :email, :to => :user, :prefix => true
|
|
|
|
|
2012-01-21 11:06:14 -05:00
|
|
|
def self.bulk_import(project, user_ids, project_access, repo_access)
|
|
|
|
UsersProject.transaction do
|
|
|
|
user_ids.each do |user_id|
|
|
|
|
users_project = UsersProject.new(
|
|
|
|
:repo_access => repo_access,
|
|
|
|
:project_access => project_access,
|
|
|
|
:user_id => user_id
|
|
|
|
)
|
|
|
|
users_project.project = project
|
|
|
|
users_project.save
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-12-05 02:43:53 -05:00
|
|
|
def update_repository
|
2011-12-06 18:27:07 -05:00
|
|
|
Gitlabhq::GitHost.system.new.configure do |c|
|
|
|
|
c.update_project(project.path, project)
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
2012-02-05 14:26:04 -05:00
|
|
|
|
|
|
|
def project_access_human
|
|
|
|
Project.access_options.key(self.project_access)
|
|
|
|
end
|
|
|
|
|
|
|
|
def repo_access_human
|
|
|
|
Repository.access_options.key(self.repo_access)
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: users_projects
|
|
|
|
#
|
2011-12-18 09:09:16 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# project_id :integer not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# repo_access :integer default(0), not null
|
|
|
|
# project_access :integer default(0), not null
|
2011-10-08 17:36:38 -04:00
|
|
|
#
|
|
|
|
|