Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
5a903149
Commit
5a903149
authored
Oct 11, 2017
by
Bob Van Landuyt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle archived projects in the `GroupDescendantsFinder`
parent
99c76e9f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
108 additions
and
26 deletions
+108
-26
app/finders/group_descendants_finder.rb
app/finders/group_descendants_finder.rb
+28
-9
app/models/concerns/loaded_in_group_list.rb
app/models/concerns/loaded_in_group_list.rb
+21
-11
spec/finders/group_descendants_finder_spec.rb
spec/finders/group_descendants_finder_spec.rb
+32
-0
spec/models/concerns/loaded_in_group_list_spec.rb
spec/models/concerns/loaded_in_group_list_spec.rb
+27
-6
No files found.
app/finders/group_descendants_finder.rb
View file @
5a903149
# GroupDescendantsFinder
#
# Used to find and filter all subgroups and projects of a passed parent group
# visible to a specified user.
#
# When passing a `filter` param, the search is performed over all nested levels
# of the `parent_group`. All ancestors for a search result are loaded
#
# Arguments:
# current_user: The user for which the children should be visible
# parent_group: The group to find children of
# params:
# Supports all params that the `ProjectsFinder` and `GroupProjectsFinder`
# support.
#
# filter: string - is aliased to `search` for consistency with the frontend
# archived: string - `only` or `true`.
# `non_archived` is passed to the `ProjectFinder`s if none
# was given.
class
GroupDescendantsFinder
attr_reader
:current_user
,
:parent_group
,
:params
def
initialize
(
current_user:
nil
,
parent_group
:,
params:
{})
@current_user
=
current_user
@parent_group
=
parent_group
@params
=
params
.
reverse_merge
(
non_archived:
true
)
@params
=
params
.
reverse_merge
(
non_archived:
params
[
:archived
].
blank?
)
end
def
execute
...
...
@@ -83,7 +102,7 @@ class GroupDescendantsFinder
projects_to_load_ancestors_of
=
projects
.
where
.
not
(
namespace:
parent_group
)
groups_to_load_ancestors_of
=
Group
.
where
(
id:
projects_to_load_ancestors_of
.
select
(
:namespace_id
))
ancestors_for_groups
(
groups_to_load_ancestors_of
)
.
with_selects_for_list
.
with_selects_for_list
(
params
[
:archived
])
end
def
subgroups
...
...
@@ -96,7 +115,7 @@ class GroupDescendantsFinder
else
direct_child_groups
end
groups
.
with_selects_for_list
.
order_by
(
sort
)
groups
.
with_selects_for_list
(
params
[
:archived
])
.
order_by
(
sort
)
end
def
direct_child_projects
...
...
@@ -104,15 +123,15 @@ class GroupDescendantsFinder
.
execute
end
def
projects_for_user
Project
.
public_or_visible_to_user
(
current_user
).
non_archived
end
# Finds all projects nested under `parent_group` or any of its descendant
# groups
def
projects_matching_filter
projects_for_user
.
search
(
params
[
:filter
])
.
where
(
namespace_id:
hierarchy_for_parent
.
base_and_descendants
.
select
(
:id
))
projects_nested_in_group
=
Project
.
where
(
namespace_id:
hierarchy_for_parent
.
base_and_descendants
.
select
(
:id
))
params_with_search
=
params
.
merge
(
search:
params
[
:filter
])
ProjectsFinder
.
new
(
params:
params_with_search
,
current_user:
current_user
,
project_ids_relation:
projects_nested_in_group
).
execute
end
def
projects
...
...
app/models/concerns/loaded_in_group_list.rb
View file @
5a903149
...
...
@@ -2,10 +2,9 @@ module LoadedInGroupList
extend
ActiveSupport
::
Concern
PROJECT_COUNT_SQL
=
<<~
PROJECTCOUNT
.
freeze
(
SELECT COUNT(*) AS preloaded_project_count
SELECT COUNT(*) AS preloaded_project_count
FROM projects
WHERE projects.namespace_id = namespaces.id
AND projects.archived IS NOT true)
PROJECTCOUNT
SUBGROUP_COUNT_SQL
=
<<~
SUBGROUPCOUNT
.
freeze
(SELECT COUNT(*) AS preloaded_subgroup_count
...
...
@@ -21,17 +20,28 @@ module LoadedInGroupList
MEMBERCOUNT
COUNT_SELECTS
=
[
'namespaces.*'
,
PROJECT_COUNT_SQL
,
SUBGROUP_COUNT_SQL
,
MEMBER_COUNT_SQL
].
freeze
module
ClassMethods
def
with_counts
select
(
COUNT_SELECTS
)
def
with_counts
(
archived
=
nil
)
selects
=
COUNT_SELECTS
.
dup
<<
project_count
(
archived
)
select
(
selects
)
end
def
with_selects_for_list
with_route
.
with_counts
def
with_selects_for_list
(
archived
=
nil
)
with_route
.
with_counts
(
archived
)
end
def
project_count
(
archived
)
project_count
=
if
archived
==
'only'
PROJECT_COUNT_SQL
+
'AND projects.archived IS true'
elsif
Gitlab
::
Utils
.
to_boolean
(
archived
)
PROJECT_COUNT_SQL
else
PROJECT_COUNT_SQL
+
'AND projects.archived IS NOT true'
end
"(
#{
project_count
}
)"
end
end
...
...
spec/finders/group_descendants_finder_spec.rb
View file @
5a903149
...
...
@@ -35,6 +35,28 @@ describe GroupDescendantsFinder do
expect
(
finder
.
execute
).
to
contain_exactly
(
project
)
end
context
'when archived is `true`'
do
let
(
:params
)
{
{
archived:
'true'
}
}
it
'includes archived projects'
do
archived_project
=
create
(
:project
,
namespace:
group
,
archived:
true
)
project
=
create
(
:project
,
namespace:
group
)
expect
(
finder
.
execute
).
to
contain_exactly
(
archived_project
,
project
)
end
end
context
'when archived is `only`'
do
let
(
:params
)
{
{
archived:
'only'
}
}
it
'includes only archived projects'
do
archived_project
=
create
(
:project
,
namespace:
group
,
archived:
true
)
_project
=
create
(
:project
,
namespace:
group
)
expect
(
finder
.
execute
).
to
contain_exactly
(
archived_project
)
end
end
it
'does not include archived projects'
do
_archived_project
=
create
(
:project
,
:archived
,
namespace:
group
)
...
...
@@ -84,6 +106,16 @@ describe GroupDescendantsFinder do
expect
(
finder
.
execute
).
to
contain_exactly
(
public_subgroup
)
end
context
'when archived is `true`'
do
let
(
:params
)
{
{
archived:
'true'
}
}
it
'includes archived projects in the count of subgroups'
do
create
(
:project
,
namespace:
subgroup
,
archived:
true
)
expect
(
finder
.
execute
.
first
.
preloaded_project_count
).
to
eq
(
1
)
end
end
context
'with a filter'
do
let
(
:params
)
{
{
filter:
'test'
}
}
...
...
spec/models/concerns/loaded_in_group_list_spec.rb
View file @
5a903149
...
...
@@ -4,24 +4,45 @@ describe LoadedInGroupList do
let
(
:parent
)
{
create
(
:group
)
}
subject
(
:found_group
)
{
Group
.
with_selects_for_list
.
find_by
(
id:
parent
.
id
)
}
before
do
describe
'.with_selects_for_list'
do
it
'includes the preloaded counts for groups'
do
create
(
:group
,
parent:
parent
)
create
(
:project
,
namespace:
parent
)
parent
.
add_developer
(
create
(
:user
))
end
describe
'.with_selects_for_list'
do
it
'includes the preloaded counts for groups'
do
found_group
=
Group
.
with_selects_for_list
.
find_by
(
id:
parent
.
id
)
expect
(
found_group
.
preloaded_project_count
).
to
eq
(
1
)
expect
(
found_group
.
preloaded_subgroup_count
).
to
eq
(
1
)
expect
(
found_group
.
preloaded_member_count
).
to
eq
(
1
)
end
context
'with archived projects'
do
it
'counts including archived projects when `true` is passed'
do
create
(
:project
,
namespace:
parent
,
archived:
true
)
create
(
:project
,
namespace:
parent
)
found_group
=
Group
.
with_selects_for_list
(
'true'
).
find_by
(
id:
parent
.
id
)
expect
(
found_group
.
preloaded_project_count
).
to
eq
(
2
)
end
it
'counts only archived projects when `only` is passed'
do
create_list
(
:project
,
2
,
namespace:
parent
,
archived:
true
)
create
(
:project
,
namespace:
parent
)
found_group
=
Group
.
with_selects_for_list
(
'only'
).
find_by
(
id:
parent
.
id
)
expect
(
found_group
.
preloaded_project_count
).
to
eq
(
2
)
end
end
end
describe
'#children_count'
do
it
'counts groups and projects'
do
create
(
:group
,
parent:
parent
)
create
(
:project
,
namespace:
parent
)
expect
(
found_group
.
children_count
).
to
eq
(
2
)
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment