2012-11-19 13:24:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: users_projects
|
|
|
|
#
|
2013-04-04 15:11:51 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
|
|
|
# project_id :integer not null
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2013-04-04 15:11:51 -04:00
|
|
|
# project_access :integer default(0), not null
|
|
|
|
# notification_level :integer default(3), not null
|
2012-11-19 13:24:05 -05:00
|
|
|
#
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
class UsersProject < ActiveRecord::Base
|
2013-03-21 15:01:14 -04:00
|
|
|
include Gitlab::ShellAdapter
|
2013-06-21 16:17:58 -04:00
|
|
|
include Notifiable
|
2013-08-20 08:59:45 -04:00
|
|
|
include Gitlab::Access
|
2012-02-15 16:51:04 -05:00
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
attr_accessible :user, :user_id, :project_access
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
belongs_to :user
|
|
|
|
belongs_to :project
|
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
validates :user, presence: true
|
2012-12-30 06:37:33 -05:00
|
|
|
validates :user_id, uniqueness: { scope: [:project_id], message: "already exists in project" }
|
2013-08-20 08:59:45 -04:00
|
|
|
validates :project_access, inclusion: { in: Gitlab::Access.values }, presence: true
|
2012-10-08 20:10:04 -04:00
|
|
|
validates :project, presence: true
|
2011-10-20 09:48:09 -04:00
|
|
|
|
2013-01-30 10:07:44 -05:00
|
|
|
delegate :name, :username, :email, to: :user, prefix: true
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2013-02-12 02:16:45 -05:00
|
|
|
scope :guests, -> { where(project_access: GUEST) }
|
|
|
|
scope :reporters, -> { where(project_access: REPORTER) }
|
|
|
|
scope :developers, -> { where(project_access: DEVELOPER) }
|
|
|
|
scope :masters, -> { where(project_access: MASTER) }
|
2013-01-19 12:06:50 -05:00
|
|
|
|
2012-12-25 17:52:20 -05:00
|
|
|
scope :in_project, ->(project) { where(project_id: project.id) }
|
2013-03-26 10:19:55 -04:00
|
|
|
scope :in_projects, ->(projects) { where(project_id: projects.map { |p| p.id }) }
|
2013-01-19 12:06:50 -05:00
|
|
|
scope :with_user, ->(user) { where(user_id: user.id) }
|
2012-12-25 17:52:20 -05:00
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
class << self
|
2013-01-03 14:09:18 -05:00
|
|
|
|
|
|
|
# Add users to project teams with passed access option
|
|
|
|
#
|
|
|
|
# access can be an integer representing a access code
|
|
|
|
# or symbol like :master representing role
|
|
|
|
#
|
2013-01-04 01:43:25 -05:00
|
|
|
# Ex.
|
|
|
|
# add_users_into_projects(
|
|
|
|
# project_ids,
|
|
|
|
# user_ids,
|
|
|
|
# UsersProject::MASTER
|
|
|
|
# )
|
|
|
|
#
|
|
|
|
# add_users_into_projects(
|
|
|
|
# project_ids,
|
|
|
|
# user_ids,
|
|
|
|
# :master
|
|
|
|
# )
|
|
|
|
#
|
2013-01-03 14:09:18 -05:00
|
|
|
def add_users_into_projects(project_ids, user_ids, access)
|
2013-01-04 01:43:25 -05:00
|
|
|
project_access = if roles_hash.has_key?(access)
|
|
|
|
roles_hash[access]
|
|
|
|
elsif roles_hash.values.include?(access.to_i)
|
2013-01-03 14:09:18 -05:00
|
|
|
access
|
|
|
|
else
|
|
|
|
raise "Non valid access"
|
|
|
|
end
|
|
|
|
|
2012-12-30 06:37:33 -05:00
|
|
|
UsersProject.transaction do
|
|
|
|
project_ids.each do |project_id|
|
|
|
|
user_ids.each do |user_id|
|
|
|
|
users_project = UsersProject.new(project_access: project_access, user_id: user_id)
|
|
|
|
users_project.project_id = project_id
|
|
|
|
users_project.save
|
2012-10-24 07:52:17 -04:00
|
|
|
end
|
2012-10-24 07:20:53 -04:00
|
|
|
end
|
|
|
|
end
|
2012-10-24 07:52:17 -04:00
|
|
|
|
|
|
|
true
|
|
|
|
rescue
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2012-12-30 07:26:19 -05:00
|
|
|
def truncate_teams(project_ids)
|
|
|
|
UsersProject.transaction do
|
|
|
|
users_projects = UsersProject.where(project_id: project_ids)
|
|
|
|
users_projects.each do |users_project|
|
|
|
|
users_project.destroy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
true
|
|
|
|
rescue
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def truncate_team project
|
|
|
|
truncate_teams [project.id]
|
|
|
|
end
|
|
|
|
|
2013-01-03 14:09:18 -05:00
|
|
|
def roles_hash
|
2013-08-20 08:59:45 -04:00
|
|
|
Gitlab::Access.sym_options
|
2013-01-03 14:09:18 -05:00
|
|
|
end
|
|
|
|
|
2012-10-08 20:10:04 -04:00
|
|
|
def access_roles
|
2013-08-20 08:59:45 -04:00
|
|
|
Gitlab::Access.options
|
2012-10-08 20:10:04 -04:00
|
|
|
end
|
2012-02-15 16:51:04 -05:00
|
|
|
end
|
|
|
|
|
2013-08-20 08:59:45 -04:00
|
|
|
def access_field
|
|
|
|
project_access
|
2012-02-05 14:26:04 -05:00
|
|
|
end
|
2013-08-27 05:47:28 -04:00
|
|
|
|
|
|
|
def owner?
|
|
|
|
project.owner == user
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|