2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
class GroupMember < Member
|
2019-10-12 21:52:04 +05:30
|
|
|
include FromUnion
|
2020-04-22 19:07:51 +05:30
|
|
|
include CreatedAtFilterable
|
2019-10-12 21:52:04 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
SOURCE_TYPE = 'Namespace'
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
belongs_to :group, foreign_key: 'source_id'
|
2021-04-29 21:17:54 +05:30
|
|
|
alias_attribute :namespace_id, :source_id
|
2017-08-17 22:00:37 +05:30
|
|
|
delegate :update_two_factor_requirement, to: :user
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
# Make sure group member points only to group as it source
|
|
|
|
default_value_for :source_type, SOURCE_TYPE
|
2017-08-17 22:00:37 +05:30
|
|
|
validates :source_type, format: { with: /\ANamespace\z/ }
|
2020-11-24 15:15:51 +05:30
|
|
|
validates :access_level, presence: true
|
|
|
|
validate :access_level_inclusion
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
default_scope { where(source_type: SOURCE_TYPE) } # rubocop:disable Cop/DefaultScope
|
2015-04-26 12:48:37 +05:30
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
scope :of_groups, ->(groups) { where(source_id: groups.select(:id)) }
|
2019-12-04 20:38:33 +05:30
|
|
|
scope :of_ldap_type, -> { where(ldap: true) }
|
2020-07-28 23:09:34 +05:30
|
|
|
scope :count_users_by_group_id, -> { group(:source_id).count }
|
2021-01-29 00:20:46 +05:30
|
|
|
scope :with_user, -> (user) { where(user: user) }
|
2020-06-23 00:09:42 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
after_create :update_two_factor_requirement, unless: :invite?
|
|
|
|
after_destroy :update_two_factor_requirement, unless: :invite?
|
|
|
|
|
2021-04-29 21:17:54 +05:30
|
|
|
attr_accessor :last_owner, :last_blocked_owner
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def self.access_level_roles
|
|
|
|
Gitlab::Access.options_with_owner
|
|
|
|
end
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
def self.access_levels
|
|
|
|
Gitlab::Access.sym_options_with_owner
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def group
|
|
|
|
source
|
|
|
|
end
|
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
# Because source_type is `Namespace`...
|
|
|
|
def real_source_type
|
|
|
|
'Group'
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def notifiable_options
|
|
|
|
{ group: group }
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
private
|
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
def access_level_inclusion
|
|
|
|
return if access_level.in?(Gitlab::Access.all_values)
|
|
|
|
|
|
|
|
errors.add(:access_level, "is not included in the list")
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def send_invite
|
2018-10-15 14:42:47 +05:30
|
|
|
run_after_commit_or_now { notification_service.invite_group_member(self, @raw_invite_token) }
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_create_hook
|
2021-03-08 18:12:59 +05:30
|
|
|
if send_welcome_email?
|
|
|
|
run_after_commit_or_now { notification_service.new_group_member(self) }
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def post_update_hook
|
2019-07-31 22:56:46 +05:30
|
|
|
if saved_change_to_access_level?
|
2018-10-15 14:42:47 +05:30
|
|
|
run_after_commit { notification_service.update_group_member(self) }
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
2021-03-08 18:12:59 +05:30
|
|
|
if saved_change_to_expires_at?
|
|
|
|
run_after_commit { notification_service.updated_group_member_expiration(self) }
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_accept_invite
|
|
|
|
notification_service.accept_group_invite(self)
|
2020-03-07 23:17:34 +05:30
|
|
|
update_two_factor_requirement
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_decline_invite
|
|
|
|
notification_service.decline_group_invite(self)
|
|
|
|
|
|
|
|
super
|
|
|
|
end
|
2021-03-08 18:12:59 +05:30
|
|
|
|
|
|
|
def send_welcome_email?
|
|
|
|
true
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
GroupMember.prepend_mod_with('GroupMember')
|