2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
module GroupsHelper
2018-12-13 13:39:08 +05:30
def group_overview_nav_link_paths
%w[
groups #show
2019-07-07 11:18:12 +05:30
groups #details
2018-12-13 13:39:08 +05:30
groups #activity
groups #subgroups
analytics #show
]
end
2018-03-17 18:26:18 +05:30
def group_nav_link_paths
2018-05-09 12:01:36 +05:30
%w[ groups # projects groups # edit badges # index ci_cd # show ldap_group_links # index hooks # index audit_events # index pipeline_quota # index ]
2018-03-17 18:26:18 +05:30
end
2018-03-27 19:54:05 +05:30
def group_sidebar_links
@group_sidebar_links || = get_group_sidebar_links
end
def group_sidebar_link? ( link )
group_sidebar_links . include? ( link )
end
2016-06-02 11:05:42 +05:30
def can_change_group_visibility_level? ( group )
can? ( current_user , :change_visibility_level , group )
end
2018-03-17 18:26:18 +05:30
def can_change_share_with_group_lock? ( group )
can? ( current_user , :change_share_with_group_lock , group )
end
2019-10-12 21:52:04 +05:30
def can_disable_group_emails? ( group )
Feature . enabled? ( :emails_disabled , group , default_enabled : true ) &&
can? ( current_user , :set_emails_disabled , group ) && ! group . parent & . emails_disabled?
end
2018-03-17 18:26:18 +05:30
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
def group_icon_url ( group , options = { } )
2015-04-26 12:48:37 +05:30
if group . is_a? ( String )
2017-08-17 22:00:37 +05:30
group = Group . find_by_full_path ( group )
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
2017-09-10 17:25:29 +05:30
group . try ( :avatar_url ) || ActionController :: Base . helpers . image_path ( 'no_group_avatar.png' )
2015-09-25 12:07:36 +05:30
end
def group_title ( group , name = nil , url = nil )
2017-08-17 22:00:37 +05:30
@has_group_title = true
2018-12-05 23:21:45 +05:30
full_title = [ ]
2015-09-25 12:07:36 +05:30
2018-03-17 18:26:18 +05:30
group . ancestors . reverse . each_with_index do | parent , index |
if index > 0
add_to_breadcrumb_dropdown ( group_title_link ( parent , hidable : false , show_avatar : true , for_dropdown : true ) , location : :before )
else
2018-12-05 23:21:45 +05:30
full_title << breadcrumb_list_item ( group_title_link ( parent , hidable : false ) )
2018-03-17 18:26:18 +05:30
end
2017-08-17 22:00:37 +05:30
end
2018-12-05 23:21:45 +05:30
full_title << render ( " layouts/nav/breadcrumbs/collapsed_dropdown " , location : :before , title : _ ( " Show parent subgroups " ) )
2017-08-17 22:00:37 +05:30
2018-12-05 23:21:45 +05:30
full_title << breadcrumb_list_item ( group_title_link ( group ) )
full_title << ' · ' . html_safe + link_to ( simple_sanitize ( name ) , url , class : 'group-path breadcrumb-item-text js-breadcrumb-item-text' ) if name
2018-03-17 18:26:18 +05:30
2018-12-05 23:21:45 +05:30
full_title . join . html_safe
2014-09-02 18:07:02 +05:30
end
2016-09-29 09:46:39 +05:30
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
size = group . projects . size
if lfs_status == size
'for all projects'
else
" for #{ lfs_status } out of #{ pluralize ( size , 'project' ) } "
end
end
def group_lfs_status ( group )
status = group . lfs_enabled? ? 'enabled' : 'disabled'
content_tag ( :span , class : " lfs- #{ status } " ) do
" #{ status . humanize } #{ projects_lfs_status ( group ) } "
end
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
def remove_group_message ( group )
2019-09-04 21:01:54 +05:30
_ ( " You are going to remove %{group_name}, this will also remove all of its subgroups and projects. Removed groups CANNOT be restored! Are you ABSOLUTELY sure? " ) %
2017-09-10 17:25:29 +05:30
{ group_name : group . name }
end
2018-03-17 18:26:18 +05:30
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
end
def parent_group_options ( current_group )
2019-07-07 11:18:12 +05:30
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-03-17 18:26:18 +05:30
{ id : group . id , text : group . human_name }
end
groups . to_json
end
2017-09-10 17:25:29 +05:30
private
2018-03-27 19:54:05 +05:30
def get_group_sidebar_links
links = [ :overview , :group_members ]
2018-11-08 19:23:39 +05:30
resources = [ :activity , :issues , :boards , :labels , :milestones ,
:merge_requests ]
links += resources . select do | resource |
can? ( current_user , " read_group_ #{ resource } " . to_sym , @group )
2018-03-27 19:54:05 +05:30
end
2019-09-30 21:07:59 +05:30
if can? ( current_user , :read_cluster , @group )
2019-02-15 15:39:39 +05:30
links << :kubernetes
end
2018-03-27 19:54:05 +05:30
if can? ( current_user , :admin_group , @group )
links << :settings
end
links
end
2018-03-17 18:26:18 +05:30
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-12-05 23:21:45 +05:30
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-09-10 17:25:29 +05:30
end
end
2018-03-17 18:26:18 +05:30
def ancestor_group ( group )
ancestor = oldest_consecutively_locked_ancestor ( group )
if can? ( current_user , :read_group , ancestor )
link_to ancestor . name , group_path ( ancestor )
else
ancestor . name
end
end
def remove_the_share_with_group_lock_from_ancestor ( group )
ancestor = oldest_consecutively_locked_ancestor ( group )
text = s_ ( " GroupSettings|remove the share with group lock from %{ancestor_group_name} " ) % { ancestor_group_name : ancestor . name }
if can? ( current_user , :admin_group , ancestor )
link_to text , edit_group_path ( ancestor )
else
text
end
end
def oldest_consecutively_locked_ancestor ( group )
group . ancestors . find do | group |
! group . has_parent? || ! group . parent . share_with_group_lock?
end
end
def default_help
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. " )
end
def ancestor_locked_but_you_can_override ( group )
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 ) }
end
def ancestor_locked_so_ask_the_owner ( group )
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 ) }
end
def ancestor_locked_and_has_been_overridden ( group )
s_ ( " GroupSettings|This setting is applied on %{ancestor_group} and has been overridden on this subgroup. " ) . html_safe % { ancestor_group : ancestor_group ( group ) }
end
2014-09-02 18:07:02 +05:30
end