2018-08-18 07:19:57 -04:00
# frozen_string_literal: true
2013-01-07 13:48:57 -05:00
module GroupsHelper
2018-10-17 13:44:43 -04:00
def group_overview_nav_link_paths
%w[
groups #show
2019-03-14 08:55:46 -04:00
groups #details
2018-10-17 13:44:43 -04:00
groups #activity
groups #subgroups
]
end
2020-04-08 17:09:50 -04:00
def group_settings_nav_link_paths
2020-04-08 14:09:16 -04:00
%w[
groups #projects
groups #edit
badges #index
2020-04-21 11:21:10 -04:00
repository #show
2020-04-08 14:09:16 -04:00
ci_cd #show
integrations #index
integrations #edit
ldap_group_links #index
hooks #index
audit_events #index
pipeline_quota #index
]
2018-02-06 07:17:23 -05:00
end
2019-10-17 08:07:33 -04:00
def group_packages_nav_link_paths
%w[
2020-07-21 08:09:30 -04:00
groups / packages #index
2019-10-17 08:07:33 -04:00
groups / container_registries #index
]
end
def group_container_registry_nav?
2019-10-17 14:08:05 -04:00
Gitlab . config . registry . enabled &&
2020-03-31 14:07:42 -04:00
can? ( current_user , :read_container_image , @group )
2019-10-17 08:07:33 -04:00
end
2017-12-11 09:21:06 -05:00
def group_sidebar_links
@group_sidebar_links || = get_group_sidebar_links
end
def group_sidebar_link? ( link )
group_sidebar_links . include? ( link )
end
2016-03-01 10:22:29 -05:00
def can_change_group_visibility_level? ( group )
can? ( current_user , :change_visibility_level , group )
end
2020-04-24 05:09:44 -04:00
def can_update_default_branch_protection? ( group )
can? ( current_user , :update_default_branch_protection , group )
end
2017-09-05 15:43:48 -04:00
def can_change_share_with_group_lock? ( group )
can? ( current_user , :change_share_with_group_lock , group )
end
2019-08-17 01:56:48 -04:00
def can_disable_group_emails? ( group )
2019-10-03 17:07:29 -04:00
can? ( current_user , :set_emails_disabled , group ) && ! group . parent & . emails_disabled?
2019-08-17 01:56:48 -04:00
end
2018-02-23 07:10:57 -05:00
def group_issues_count ( state : )
IssuesFinder
. new ( current_user , group_id : @group . id , state : state , non_archived : true , include_subgroups : true )
. execute
. count
end
def group_merge_requests_count ( state : )
MergeRequestsFinder
. new ( current_user , group_id : @group . id , state : state , non_archived : true , include_subgroups : true )
. execute
. count
end
2017-10-02 07:35:01 -04:00
def group_icon_url ( group , options = { } )
2015-03-12 16:56:53 -04:00
if group . is_a? ( String )
2016-10-31 07:00:53 -04:00
group = Group . find_by_full_path ( group )
2015-03-12 16:56:53 -04:00
end
2017-10-10 04:59:07 -04:00
group . try ( :avatar_url ) || ActionController :: Base . helpers . image_path ( 'no_group_avatar.png' )
2015-03-12 16:56:53 -04:00
end
2015-09-07 07:18:11 -04:00
2015-09-17 06:16:24 -04:00
def group_title ( group , name = nil , url = nil )
2017-02-28 21:59:55 -05:00
@has_group_title = true
2018-08-18 07:19:57 -04:00
full_title = [ ]
2016-12-08 11:28:49 -05:00
2017-08-16 05:35:59 -04:00
group . ancestors . reverse . each_with_index do | parent , index |
2017-09-06 07:19:03 -04:00
if index > 0
2017-09-12 04:54:01 -04:00
add_to_breadcrumb_dropdown ( group_title_link ( parent , hidable : false , show_avatar : true , for_dropdown : true ) , location : :before )
2017-08-16 08:13:34 -04:00
else
2018-08-18 07:19:57 -04:00
full_title << breadcrumb_list_item ( group_title_link ( parent , hidable : false ) )
2017-08-16 08:13:34 -04:00
end
2020-11-11 19:09:44 -05:00
push_to_schema_breadcrumb ( simple_sanitize ( parent . name ) , group_path ( parent ) )
2017-08-16 08:13:34 -04:00
end
2018-08-18 07:19:57 -04:00
full_title << render ( " layouts/nav/breadcrumbs/collapsed_dropdown " , location : :before , title : _ ( " Show parent subgroups " ) )
2016-12-08 11:28:49 -05:00
2018-08-18 07:19:57 -04:00
full_title << breadcrumb_list_item ( group_title_link ( group ) )
2020-11-11 19:09:44 -05:00
push_to_schema_breadcrumb ( simple_sanitize ( group . name ) , group_path ( group ) )
if name
full_title << ' · ' . html_safe + link_to ( simple_sanitize ( name ) , url , class : 'group-path breadcrumb-item-text js-breadcrumb-item-text' )
push_to_schema_breadcrumb ( simple_sanitize ( name ) , url )
end
2015-09-17 06:16:24 -04:00
2018-08-18 07:19:57 -04:00
full_title . join . html_safe
2015-09-07 07:18:11 -04:00
end
2016-09-01 19:49:48 -04:00
2016-09-06 12:48:00 -04:00
def projects_lfs_status ( group )
lfs_status =
if group . lfs_enabled?
group . projects . select ( & :lfs_enabled? ) . size
else
group . projects . reject ( & :lfs_enabled? ) . size
end
2016-09-05 16:40:49 -04:00
2016-09-05 14:14:49 -04:00
size = group . projects . size
2016-09-06 12:48:00 -04:00
if lfs_status == size
'for all projects'
2016-09-05 14:14:49 -04:00
else
2016-09-06 12:48:00 -04:00
" for #{ lfs_status } out of #{ pluralize ( size , 'project' ) } "
2016-09-05 14:14:49 -04:00
end
end
def group_lfs_status ( group )
2016-09-05 16:40:49 -04:00
status = group . lfs_enabled? ? 'enabled' : 'disabled'
content_tag ( :span , class : " lfs- #{ status } " ) do
2016-09-06 12:48:00 -04:00
" #{ status . humanize } #{ projects_lfs_status ( group ) } "
2016-09-05 14:14:49 -04:00
end
2016-09-01 19:49:48 -04:00
end
2016-11-05 13:28:29 -04:00
2017-07-04 11:18:51 -04:00
def remove_group_message ( group )
2020-08-12 17:09:54 -04:00
_ ( " You are going to remove %{group_name}, this will also delete all of its subgroups and projects. Removed groups CANNOT be restored! Are you ABSOLUTELY sure? " ) %
2017-07-04 11:18:51 -04:00
{ group_name : group . name }
end
2017-09-05 20:02:11 -04:00
def share_with_group_lock_help_text ( group )
return default_help unless group . parent & . share_with_group_lock?
if group . share_with_group_lock?
if can? ( current_user , :change_share_with_group_lock , group . parent )
ancestor_locked_but_you_can_override ( group )
else
ancestor_locked_so_ask_the_owner ( group )
end
else
ancestor_locked_and_has_been_overridden ( group )
end
2017-09-01 01:58:05 -04:00
end
2018-02-05 19:10:58 -05:00
def parent_group_options ( current_group )
2019-04-02 02:49:11 -04:00
exclude_groups = current_group . self_and_descendants . pluck_primary_key
exclude_groups << current_group . parent_id if current_group . parent_id
groups = GroupsFinder . new ( current_user , min_access_level : Gitlab :: Access :: OWNER , exclude_group_ids : exclude_groups ) . execute . sort_by ( & :human_name ) . map do | group |
2018-02-05 19:10:58 -05:00
{ id : group . id , text : group . human_name }
end
groups . to_json
end
2020-07-21 08:09:30 -04:00
def group_packages_nav?
group_packages_list_nav? ||
group_container_registry_nav?
end
2020-11-13 16:09:31 -05:00
def group_dependency_proxy_nav?
@group . dependency_proxy_feature_available?
end
2020-07-21 08:09:30 -04:00
def group_packages_list_nav?
@group . packages_feature_enabled?
end
2020-09-03 23:08:22 -04:00
def show_invite_banner? ( group )
Feature . enabled? ( :invite_your_teammates_banner_a , group ) &&
can? ( current_user , :admin_group , group ) &&
! just_created? &&
! multiple_members? ( group )
end
2020-10-28 11:08:49 -04:00
def show_thanks_for_purchase_banner?
params . key? ( :purchased_quantity ) && params [ :purchased_quantity ] . to_i > 0
end
2020-11-23 10:09:37 -05:00
def project_list_sort_by
@group_projects_sort || @sort || params [ :sort ] || sort_value_recently_created
end
2017-06-30 12:52:11 -04:00
private
2020-09-03 23:08:22 -04:00
def just_created?
flash [ :notice ] =~ / successfully created /
end
def multiple_members? ( group )
group . member_count > 1
end
2017-12-11 09:21:06 -05:00
def get_group_sidebar_links
links = [ :overview , :group_members ]
2018-07-03 08:08:46 -04:00
resources = [ :activity , :issues , :boards , :labels , :milestones ,
:merge_requests ]
links += resources . select do | resource |
can? ( current_user , " read_group_ #{ resource } " . to_sym , @group )
2017-12-11 09:21:06 -05:00
end
2019-06-27 08:17:26 -04:00
if can? ( current_user , :read_cluster , @group )
2018-10-24 08:55:16 -04:00
links << :kubernetes
end
2017-12-11 09:21:06 -05:00
if can? ( current_user , :admin_group , @group )
links << :settings
end
2020-07-16 14:09:35 -04:00
if can? ( current_user , :read_wiki , @group )
links << :wiki
end
2017-12-11 09:21:06 -05:00
links
end
2017-09-12 04:54:01 -04:00
def group_title_link ( group , hidable : false , show_avatar : false , for_dropdown : false )
link_to ( group_path ( group ) , class : " group-path #{ 'breadcrumb-item-text' unless for_dropdown } js-breadcrumb-item-text #{ 'hidable' if hidable } " ) do
2018-08-18 07:19:57 -04:00
icon = group_icon ( group , class : " avatar-tile " , width : 15 , height : 15 ) if ( group . try ( :avatar_url ) || show_avatar ) && ! Rails . env . test?
[ icon , simple_sanitize ( group . name ) ] . join . html_safe
2017-06-30 12:52:11 -04:00
end
end
2017-09-01 01:58:05 -04:00
2017-09-06 02:49:57 -04:00
def ancestor_group ( group )
2017-09-05 20:02:11 -04:00
ancestor = oldest_consecutively_locked_ancestor ( group )
2017-09-06 02:49:57 -04:00
if can? ( current_user , :read_group , ancestor )
link_to ancestor . name , group_path ( ancestor )
else
ancestor . name
end
2017-09-05 20:02:11 -04:00
end
2017-09-06 14:31:45 -04:00
def remove_the_share_with_group_lock_from_ancestor ( group )
2017-09-06 01:11:49 -04:00
ancestor = oldest_consecutively_locked_ancestor ( group )
2017-09-06 14:31:45 -04:00
text = s_ ( " GroupSettings|remove the share with group lock from %{ancestor_group_name} " ) % { ancestor_group_name : ancestor . name }
2017-09-06 02:49:57 -04:00
if can? ( current_user , :admin_group , ancestor )
link_to text , edit_group_path ( ancestor )
else
text
end
2017-09-06 01:11:49 -04:00
end
2017-09-05 20:02:11 -04:00
def oldest_consecutively_locked_ancestor ( group )
group . ancestors . find do | group |
! group . has_parent? || ! group . parent . share_with_group_lock?
end
2017-09-05 17:53:32 -04:00
end
2017-09-01 01:58:05 -04:00
def default_help
2017-09-22 06:10:25 -04:00
s_ ( " GroupSettings|This setting will be applied to all subgroups unless overridden by a group owner. Groups that already have access to the project will continue to have access unless removed manually. " )
2017-09-01 01:58:05 -04:00
end
2017-09-05 20:02:11 -04:00
def ancestor_locked_but_you_can_override ( group )
2017-09-06 14:31:45 -04:00
s_ ( " GroupSettings|This setting is applied on %{ancestor_group}. You can override the setting or %{remove_ancestor_share_with_group_lock}. " ) . html_safe % { ancestor_group : ancestor_group ( group ) , remove_ancestor_share_with_group_lock : remove_the_share_with_group_lock_from_ancestor ( group ) }
2017-09-01 01:58:05 -04:00
end
2017-09-05 20:02:11 -04:00
def ancestor_locked_so_ask_the_owner ( group )
2017-09-06 14:31:45 -04:00
s_ ( " GroupSettings|This setting is applied on %{ancestor_group}. To share projects in this group with another group, ask the owner to override the setting or %{remove_ancestor_share_with_group_lock}. " ) . html_safe % { ancestor_group : ancestor_group ( group ) , remove_ancestor_share_with_group_lock : remove_the_share_with_group_lock_from_ancestor ( group ) }
2017-09-01 01:58:05 -04:00
end
2017-09-05 20:02:11 -04:00
def ancestor_locked_and_has_been_overridden ( group )
2017-09-06 05:05:50 -04:00
s_ ( " GroupSettings|This setting is applied on %{ancestor_group} and has been overridden on this subgroup. " ) . html_safe % { ancestor_group : ancestor_group ( group ) }
2017-09-01 01:58:05 -04:00
end
2013-01-07 13:48:57 -05:00
end
2019-09-13 09:26:31 -04:00
GroupsHelper . prepend_if_ee ( 'EE::GroupsHelper' )