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

76 lines
1.7 KiB
Ruby
Raw Normal View History

2012-11-19 18:24:05 +00:00
# == Schema Information
#
2012-11-24 20:16:51 +00:00
# Table name: namespaces
2012-11-19 18:24:05 +00:00
#
2013-02-07 10:42:52 +00:00
# id :integer not null, primary key
# name :string(255) not null
# path :string(255) not null
2013-10-01 12:15:28 +00:00
# owner_id :integer
2013-02-07 10:42:52 +00:00
# created_at :datetime not null
# updated_at :datetime not null
# type :string(255)
2013-03-15 13:16:02 +00:00
# description :string(255) default(""), not null
2012-11-19 18:24:05 +00:00
#
2014-01-27 21:34:05 +00:00
require 'carrierwave/orm/activerecord'
require 'file_size_validator'
class Group < Namespace
has_many :users_groups, dependent: :destroy
has_many :users, through: :users_groups
2013-04-02 22:28:12 +00:00
2014-01-27 21:34:05 +00:00
attr_accessible :avatar
validate :avatar_type, if: ->(user) { user.avatar_changed? }
validates :avatar, file_size: { maximum: 100.kilobytes.to_i }
mount_uploader :avatar, AttachmentUploader
def self.accessible_to(user)
accessible_ids = Project.accessible_to(user).pluck(:namespace_id)
accessible_ids += user.groups.pluck(:id) if user
where(id: accessible_ids)
end
2014-01-27 21:34:05 +00:00
def human_name
name
end
2012-12-30 12:26:19 +00:00
def owners
@owners ||= users_groups.owners.map(&:user)
end
def add_users(user_ids, group_access)
user_ids.compact.each do |user_id|
user = self.users_groups.find_or_initialize_by(user_id: user_id)
user.update_attributes(group_access: group_access)
end
end
def add_user(user, group_access)
self.users_groups.create(user_id: user.id, group_access: group_access)
end
def add_owner(user)
self.add_user(user, UsersGroup::OWNER)
end
2013-06-26 11:51:57 +00:00
def has_owner?(user)
owners.include?(user)
2013-06-26 11:51:57 +00:00
end
def last_owner?(user)
has_owner?(user) && owners.size == 1
end
def members
users_groups
end
2014-01-27 21:34:05 +00:00
def avatar_type
unless self.avatar.image?
self.errors.add :avatar, "only images allowed"
end
end
2012-10-02 15:17:12 +00:00
end