Class: ProjectMember

Inherits:
Member show all
Defined in:
app/models/members/project_member.rb

Direct Known Subclasses

ProjectNamespaceMember

Constant Summary collapse

SOURCE_TYPE =
'Project'
SOURCE_TYPE_FORMAT =
/\AProject\z/

Constants inherited from Member

Member::ACCESS_REQUEST_APPROVERS_TO_BE_NOTIFIED_LIMIT, Member::AVATAR_SIZE, Member::STATE_ACTIVE, Member::STATE_AWAITING

Constants included from UpdateHighestRole

UpdateHighestRole::HIGHEST_ROLE_JOB_DELAY, UpdateHighestRole::HIGHEST_ROLE_LEASE_TIMEOUT

Constants included from Gitlab::Access

Gitlab::Access::ADMIN, Gitlab::Access::ADMINISTRATOR_PROJECT_ACCESS, Gitlab::Access::AccessDeniedError, Gitlab::Access::DEVELOPER, Gitlab::Access::DEVELOPER_PROJECT_ACCESS, Gitlab::Access::GUEST, Gitlab::Access::MAINTAINER, Gitlab::Access::MAINTAINER_PROJECT_ACCESS, Gitlab::Access::MAINTAINER_SUBGROUP_ACCESS, Gitlab::Access::MINIMAL_ACCESS, Gitlab::Access::NO_ACCESS, Gitlab::Access::NO_ONE_PROJECT_ACCESS, Gitlab::Access::OWNER, Gitlab::Access::OWNER_PROJECT_ACCESS, Gitlab::Access::OWNER_SUBGROUP_ACCESS, Gitlab::Access::PLANNER, Gitlab::Access::PROTECTION_DEV_CAN_INITIAL_PUSH, Gitlab::Access::PROTECTION_DEV_CAN_MERGE, Gitlab::Access::PROTECTION_DEV_CAN_PUSH, Gitlab::Access::PROTECTION_FULL, Gitlab::Access::PROTECTION_NONE, Gitlab::Access::REPORTER, Gitlab::Access::SECURITY_MANAGER

Constants included from Expirable

Expirable::DAYS_TO_EXPIRE

Constants inherited from ApplicationRecord

ApplicationRecord::MAX_PLUCK

Constants included from HasCheckConstraints

HasCheckConstraints::NOT_NULL_CHECK_PATTERN

Constants included from ResetOnColumnErrors

ResetOnColumnErrors::MAX_RESET_PERIOD

Instance Attribute Summary

Attributes inherited from Member

#raw_invite_token

Attributes included from Importable

#importing, #user_contributions

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Member

#accept_invite!, #accept_request, #access_field, access_for_user_ids, coerce_to_no_access, #create_notification_setting, #created_by_name, #decline_invite!, #destroy_notification_setting, filter_by_2fa, filter_by_user_type, find_by_invite_token, #generate_invite_token, #generate_invite_token!, #highest_group_member, #hook_prerequisites_met?, #invite?, #invite_to_unknown_user?, left_join_users, #notifiable?, #notification_setting, null_member_role_id_sql, #pending?, pluck_user_ids, #prevent_role_assignement?, #real_source_type, #request?, #resend_invite, search, search_invite_email, seat_assignable?, seat_assignable_highest_access_level, seat_assignable_highest_access_levels, #send_invitation_reminder, shared_members, sort_by_attribute, #update_two_factor_requirement, valid_email?

Methods included from Gitlab::Utils::Override

#extended, extensions, #included, #method_added, #override, #prepended, #queue_verification, verify!

Methods included from Ci::PipelineScheduleOwnershipValidator

#notify_and_disable_all_pipeline_schedules_for_user

Methods included from Presentable

#present

Methods included from Gitlab::Access

all_keys, all_values, global_protection_levels, #human_access, human_access, #human_access_labeled, human_access_with_none, #human_access_with_none, level_encompasses?, option_descriptions, options, options_with_none, options_with_owner, #owner?, project_creation_level_name, project_creation_options, project_creation_string_options, project_creation_string_values, project_creation_values, protection_options, protection_values, #role_description, role_description, subgroup_creation_options, subgroup_creation_string_options, subgroup_creation_string_values, subgroup_creation_values, sym_options, sym_options_with_admin, sym_options_with_owner

Methods included from Expirable

#expired?, #expires?, #expires_soon?

Methods included from AfterCommitQueue

#run_after_commit, #run_after_commit_or_now

Methods inherited from ApplicationRecord

===, cached_column_list, #create_or_load_association, current_transaction, declarative_enum, default_select_columns, delete_all_returning, #deleted_from_database?, id_in, id_not_in, iid_in, nullable_column?, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order

Methods included from Organizations::Sharding

#sharding_organization

Methods included from ResetOnColumnErrors

#reset_on_union_error, #reset_on_unknown_attribute_error

Methods included from Gitlab::SensitiveSerializableHash

#serializable_hash

Class Method Details

.access_level_rolesObject



49
50
51
# File 'app/models/members/project_member.rb', line 49

def access_level_roles
  Gitlab::Access.options
end

.permissible_access_level_roles(current_user, project) ⇒ Object

For those who get to see a modal with a role dropdown, here are the options presented



43
44
45
46
47
# File 'app/models/members/project_member.rb', line 43

def permissible_access_level_roles(current_user, project)
  return {} if current_user.nil?

  project.roles_user_can_assign(current_user)
end

.truncate_team(project) ⇒ Object



38
39
40
# File 'app/models/members/project_member.rb', line 38

def truncate_team(project)
  truncate_teams [project.id]
end

.truncate_teams(project_ids) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
# File 'app/models/members/project_member.rb', line 26

def truncate_teams(project_ids)
  ProjectMember.transaction do
    members = ProjectMember.where(source_id: project_ids)

    members.each(&:destroy)
  end

  true
rescue StandardError
  false
end

Instance Method Details

#holder_of_the_personal_namespace?Boolean

Returns:

  • (Boolean)


58
59
60
# File 'app/models/members/project_member.rb', line 58

def holder_of_the_personal_namespace?
  project.personal_namespace_holder?(user)
end

#projectObject



54
55
56
# File 'app/models/members/project_member.rb', line 54

def project
  source
end