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